Files
satusehat-worker/internal/interfaces/satusehat/json_postman/11. Use Case - Kematian Maternal dan Perinatal.postman_collection.json
T
2026-04-14 01:21:54 +00:00

18610 lines
3.7 MiB
Plaintext
Executable File

{
"info": {
"_postman_id": "08add5db-135b-4b9b-9f20-31bc95cc3e02",
"name": "11. Use Case - Kematian Maternal dan Perinatal",
"description": "For **complete repository for all SATUSEHAT use-cases** please access our public workspaces : [Postman Workspaces](https://s.id/PostmanSATUSEHAT)\n\nFor **detailed SATUSEHAT use-cases import link** please see : [Postman Public Kemkes Link](https://link.kemkes.go.id/PostmanSATUSEHAT)\n\nAny information about SATUSEHAT FHIR Profile could be accessed through [Simplifier FHIR Profile](https://simplifier.net/guide/SATUSEHAT-FHIR-R4-Implementation-Guide/Home/FHIRProfiles?version=current)\n\n| **Folder History** | Editor | **Date** |\n| --- | --- | --- |\n| Versi Pertama - API sesuai dengan Playbook V1.3 | Raden Nurilma Hidayatullah <br> <br>Thomas Adhi Nugroho Chaidir <br> <br>Anisatul Afifah <br> <br>Supported by CHISU | 09 Sep 24 |",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "20686328",
"_collection_link": "https://www.postman.com/satusehat/satusehat-public/collection/539921q/11-use-case-kematian-maternal-dan-perinatal?action=share&source=collection_link&creator=20686328"
},
"item": [
{
"name": "O-Auth2",
"item": [
{
"name": "Generate Token",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
},
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.environment.set(\"token\", data.access_token);"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "client_id",
"value": "{{client_id}}",
"description": "Client ID SATUSEHAT yang diberikan kepada sesuai organisasi anda",
"type": "text"
},
{
"key": "client_secret",
"value": "{{client_secret}}",
"description": "Client Secret SATUSEHAT yang diberikan kepada organisasi anda",
"type": "text"
}
]
},
"url": {
"raw": "{{auth_url}}/accesstoken?grant_type=client_credentials",
"host": [
"{{auth_url}}"
],
"path": [
"accesstoken"
],
"query": [
{
"key": "grant_type",
"value": "client_credentials"
}
]
},
"description": "Mekanisme untuk meng-_generate_ **client token** untuk API O-Auth2 SATUSEHAT. Setiap client token hanya berlaku (valid) dalam kurun waktu 60 menit dan setiap kegagalan request generate token akan dikenakan penalti untuk menunggu selama 1 menit."
},
"response": []
},
{
"name": "Generate Token",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
},
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.environment.set(\"token\", data.access_token);"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "client_id",
"value": "{{client_id}}",
"description": "Client ID SATUSEHAT yang diberikan kepada sesuai organisasi anda",
"type": "text"
},
{
"key": "client_secret",
"value": "{{client_secret}}",
"description": "Client Secret SATUSEHAT yang diberikan kepada organisasi anda",
"type": "text"
}
]
},
"url": {
"raw": "{{auth_url}}/accesstoken?grant_type=client_credentials",
"host": [
"{{auth_url}}"
],
"path": [
"accesstoken"
],
"query": [
{
"key": "grant_type",
"value": "client_credentials"
}
]
},
"description": "Mekanisme untuk meng-_generate_ **client token** untuk API O-Auth2 SATUSEHAT. Setiap client token hanya berlaku (valid) dalam kurun waktu 60 menit dan setiap kegagalan request generate token akan dikenakan penalti untuk menunggu selama 1 menit."
},
"response": []
}
]
},
{
"name": "01. Pelaporan Kematian Ibu",
"item": [
{
"name": "00. Mencari Data Pasien dan Nakes",
"item": [
{
"name": "Patient",
"item": [
{
"name": "Patient - Search NIK",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"pm.collectionVariables.set(\"Patient_id\", data.id);\r",
"pm.collectionVariables.set(\"Patient_Name\", data.name[0].text);"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik|9104224509000003",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|9104224509000003"
}
]
}
},
"response": [
{
"name": "Patient - Search NIK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik|9104224509000003",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|9104224509000003"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P00805884304\",\n \"resource\": {\n \"active\": true,\n \"id\": \"P00805884304\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P00805884304\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/16b2810b-5376-40b8-a742-7d47acf6575f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/30a85c2a-e3e2-4ed0-8967-e84b42798727\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cff02c37-fc93-497c-b18f-cfa14d5f6ad6\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35faa912-6bd2-4216-93fd-f9571454649c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b98f674c-86d1-4179-95ac-251aa2973bf7\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/f67a5adc-b97a-4114-8ba0-fdc9fa2b7385\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/30cae342-d2a8-4fa7-8ae7-73ff5bed852e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8f889a29-489e-46f0-8c7e-24575dd7dfdc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d2a0f0c4-10ca-4dc8-bb21-edf18b786e8c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e8eee4b6-35e5-4b21-a625-3e5890019f40\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/528b416a-7837-4bb3-ab56-6e6fc55c5020\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/46e303d4-3e92-46a0-ba43-7c146d785eb9\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ac16b77a-4b9c-46e7-a64d-08720a94535c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/03128cab-a456-4a58-86f2-abd12c3ac96b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/fb4f1df7-09d5-45a1-9e72-9155861cec56\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d12ede74-6fe4-43fb-853c-d5bb784d8b38\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/70e15faa-61a5-46df-804f-dfe49dd7f939\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/610f5a79-8873-4591-84cb-12b1cff45a3f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/da11b72d-bfa4-4c9d-bca8-bf4651fee08a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8e1fab89-3d0a-47ad-a07c-baeb109fa4a3\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/739ee4c5-0a32-4229-9b7e-7680e2d79d8d\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/96401445-8070-48bb-939a-8c34ebbb2558\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5edacb4d-c612-4963-a07c-cf0f4697bfe8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ed0896f0-3357-492d-9571-5c522aa8829c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c9f5b362-5f43-42ad-86cb-0c5afdc32e07\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/9a431e01-bd82-40b0-a35c-0cccd5b18f89\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/399e0efe-cc9b-4b10-b54f-83eb7e11217d\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/743e9d9e-4ba6-4ad6-b7bb-fb48a4db92a8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/54dc1897-69c9-4a37-ab9d-7b6581b9d22e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/981cac3b-1bdd-43d3-86ef-418435a794c8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5e7f6d8e-1008-41d0-9306-8b6e877bcc7f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ab7763c9-ef93-4432-af3f-b61f9452dcbb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/facc6a19-53ff-4a1f-a0db-397761cc6796\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/3f3b705c-87fc-4e1f-b2b6-2fb24104a20e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a0c6ad92-3b61-40e9-be3d-4feb1702d9eb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c7c216db-229b-4ed7-ae12-5df9a5055187\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/feb319ee-ad49-4444-8e85-423810d56a74\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d38ec4d3-ecf9-42c0-80be-8194cad5823e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b8012d92-da09-43e3-9b5c-6ce8196b6b69\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/3f7222bf-3920-4554-9c0c-1b97eecbf375\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a367f24e-5984-4cfa-aa84-235dd6ccdb56\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/67decc96-3cd5-4773-be61-ebfcece5689e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/565c190d-1663-4cdf-a901-a285e9f96daf\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8608ca2b-7ff9-4291-90fc-91b8932323b4\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/29d36733-748a-48b6-b943-399d2e4b3b01\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/13c28f5e-9b93-4b94-8fb5-4d3ee10df7c8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a5df482d-b422-495d-82ff-81e0d77ab944\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b83ac473-8efa-42f4-9f5a-3382b05b23a7\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/123dec16-c505-4215-b51f-770eb6087b9a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ab36ed9-e132-4bf0-947c-bd12f3765ab5\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e8903ab6-b1e2-489c-80bc-bbf4a1e804b8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8a68e8c1-2a43-4310-ad78-d9554d11f650\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5703e279-6aed-4c7c-bb87-98d46592a420\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/43b9e879-dcfd-444e-a708-6c0b0c959d5a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/114b953e-358e-4681-98e3-277cea6743f6\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-02-06T07:26:10.395345+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTcwNzIwNDM3MDM5NTM0NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"patient 3\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - Bayi Search NIK Ibu",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik-ibu|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik-ibu|367400001111222"
}
]
}
},
"response": [
{
"name": "Patient - Bayi Search NIK Ibu",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik-ibu|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik-ibu|367400001111222"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102825\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102825\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102825\"\n }\n ],\n \"language\": \"id\",\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-10-17T06:26:21.585017+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY5NzUyMzk4MTU4NTAxNzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Sambo\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/ee3bff43-6b72-4a72-a41a-af4164e0eacf\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"2024-04-24-05-24\",\n \"id\": \"ee3bff43-6b72-4a72-a41a-af4164e0eacf\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"use\": \"official\",\n \"value\": \"A01111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"use\": \"official\",\n \"value\": \"367400001111111\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029103384\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-25T07:06:42.937195+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NDk5ODQwMjkzNzE5NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"John Smith\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102814\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102814\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102814\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T13:18:43.477704+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI4MTUyMzQ3NzcwNDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Roni\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102803\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102803\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102803\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T13:13:49.966892+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI4MTIyOTk2Njg5MjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Hulk\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102778\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102778\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102778\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T12:18:53.600353+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3NzkzMzYwMDM1MzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Stark\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102767\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102767\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102767\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:11:12.338686+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3Mzg3MjMzODY4NjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Toni\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102756\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102756\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102756\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:06:36.858381+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzU5Njg1ODM4MTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Budi\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102745\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102745\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102745\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:05:37.879975+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzUzNzg3OTk3NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Mardigu\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102734\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102734\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102734\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:00:54.720631+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzI1NDcyMDYzMTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dodi\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102723\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102723\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102723\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T10:59:48.626894+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzE4ODYyNjg5NDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Anang\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 10,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - Search Name, Birthdate, Gender",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"var Name = \"\";\r",
"var name = data.name;\r",
"name.forEach(name => {\r",
" if(name.use == \"official\"){Name = name.text}\r",
"});\r",
"pm.collectionVariables.set('Patient_id', data.id);\r",
"pm.collectionVariables.set('Patient_Name', 'Ny. Jane Smith');"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?name=patient 3&birthdate=1993-09-05&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 3"
},
{
"key": "birthdate",
"value": "1993-09-05"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"response": [
{
"name": "Patient - Search Name, Birthdate, Gender",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 1&birthdate=1980-12-03&gender=male",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 1"
},
{
"key": "birthdate",
"value": "1980-12-03"
},
{
"key": "gender",
"value": "male"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02478375538\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"MUNA\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"74\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"26\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1008\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"KEL.TOMBULA\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1980-12-03\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"male\",\n \"id\": \"P02478375538\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02478375538\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"9271060312000001\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7af11905-8d49-47dc-a72b-bca4948c01e7\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-31T06:40:40.038378+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NTUxNTI0MDAzODM3ODAwMA\"\n },\n \"multipleBirthBoolean\": false,\n \"name\": [\n {\n \"text\": \"patient 1\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - By ID",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "100000030015"
}
]
}
},
"response": [
{
"name": "Patient - By ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "100000030015"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"id\": \"100000030015\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"100000030015\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-16T22:21:10.608807+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NDI3NTY3MDYwODgwNzAwMA\"\n },\n \"resourceType\": \"Patient\"\n}"
}
]
},
{
"name": "Patient - Create by NIK",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Patient\",\n \"meta\": {\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ]\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"value\": \"3174031002890009\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"value\": \"A01111222\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"value\": \"367400001111111\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"use\": \"official\",\n \"text\": \"John Smith\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"08123456789\",\n \"use\": \"mobile\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"+622123456789\",\n \"use\": \"home\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1945-11-17\",\n \"deceasedBoolean\": false,\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"31\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3174\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"317402\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174021003\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"002\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"002\"\n }\n ]\n }\n ]\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\",\n \"code\": \"M\",\n \"display\": \"Married\"\n }\n ],\n \"text\": \"Married\"\n },\n \"multipleBirthInteger\": 0,\n \"contact\": [\n {\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"C\"\n }\n ]\n }\n ],\n \"name\": {\n \"use\": \"official\",\n \"text\": \"Jane Smith\"\n },\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"0690383372\",\n \"use\": \"mobile\"\n }\n ]\n }\n ],\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"system\": \"urn:ietf:bcp:47\",\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
]
}
},
"response": [
{
"name": "NIK Not Exist",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Patient\",\n \"meta\": {\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ]\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"value\": \"3174031002890009\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"value\": \"A01111222\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"value\": \"367400001111111\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"use\": \"official\",\n \"text\": \"John Smith\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"08123456789\",\n \"use\": \"mobile\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"+622123456789\",\n \"use\": \"home\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1945-11-17\",\n \"deceasedBoolean\": false,\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"31\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3174\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"317402\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174021003\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"002\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"002\"\n }\n ]\n }\n ]\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\",\n \"code\": \"M\",\n \"display\": \"Married\"\n }\n ],\n \"text\": \"Married\"\n },\n \"multipleBirthInteger\": 0,\n \"contact\": [\n {\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"C\"\n }\n ]\n }\n ],\n \"name\": {\n \"use\": \"official\",\n \"text\": \"Jane Smith\"\n },\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"0690383372\",\n \"use\": \"mobile\"\n }\n ]\n }\n ],\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"system\": \"urn:ietf:bcp:47\",\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"success\": false,\n \"message\": \"Citizen Not Exists\"\n}"
}
]
},
{
"name": "Patient - By ID",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "100000030015"
}
]
}
},
"response": [
{
"name": "Patient - By ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "100000030015"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"id\": \"100000030015\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"100000030015\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-16T22:21:10.608807+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NDI3NTY3MDYwODgwNzAwMA\"\n },\n \"resourceType\": \"Patient\"\n}"
}
]
},
{
"name": "Patient - Create by NIK",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Patient\",\n \"meta\": {\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ]\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"value\": \"3174031002890009\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"value\": \"A01111222\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"value\": \"367400001111111\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"use\": \"official\",\n \"text\": \"John Smith\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"08123456789\",\n \"use\": \"mobile\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"+622123456789\",\n \"use\": \"home\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1945-11-17\",\n \"deceasedBoolean\": false,\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"31\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3174\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"317402\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174021003\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"002\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"002\"\n }\n ]\n }\n ]\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\",\n \"code\": \"M\",\n \"display\": \"Married\"\n }\n ],\n \"text\": \"Married\"\n },\n \"multipleBirthInteger\": 0,\n \"contact\": [\n {\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"C\"\n }\n ]\n }\n ],\n \"name\": {\n \"use\": \"official\",\n \"text\": \"Jane Smith\"\n },\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"0690383372\",\n \"use\": \"mobile\"\n }\n ]\n }\n ],\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"system\": \"urn:ietf:bcp:47\",\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
]
}
},
"response": [
{
"name": "NIK Not Exist",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Patient\",\n \"meta\": {\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ]\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"value\": \"3174031002890009\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"value\": \"A01111222\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"value\": \"367400001111111\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"use\": \"official\",\n \"text\": \"John Smith\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"08123456789\",\n \"use\": \"mobile\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"+622123456789\",\n \"use\": \"home\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1945-11-17\",\n \"deceasedBoolean\": false,\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"31\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3174\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"317402\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174021003\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"002\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"002\"\n }\n ]\n }\n ]\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\",\n \"code\": \"M\",\n \"display\": \"Married\"\n }\n ],\n \"text\": \"Married\"\n },\n \"multipleBirthInteger\": 0,\n \"contact\": [\n {\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"C\"\n }\n ]\n }\n ],\n \"name\": {\n \"use\": \"official\",\n \"text\": \"Jane Smith\"\n },\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"0690383372\",\n \"use\": \"mobile\"\n }\n ]\n }\n ],\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"system\": \"urn:ietf:bcp:47\",\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"success\": false,\n \"message\": \"Citizen Not Exists\"\n}"
}
]
},
{
"name": "Patient - Search NIK",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"pm.collectionVariables.set(\"Patient_id\", data.id);\r",
"pm.collectionVariables.set(\"Patient_Name\", data.name[0].text);"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik|9104224509000003",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|9104224509000003"
}
]
}
},
"response": [
{
"name": "Patient - Search NIK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik|9104224509000003",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|9104224509000003"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P00805884304\",\n \"resource\": {\n \"active\": true,\n \"id\": \"P00805884304\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P00805884304\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/16b2810b-5376-40b8-a742-7d47acf6575f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/30a85c2a-e3e2-4ed0-8967-e84b42798727\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cff02c37-fc93-497c-b18f-cfa14d5f6ad6\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35faa912-6bd2-4216-93fd-f9571454649c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b98f674c-86d1-4179-95ac-251aa2973bf7\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/f67a5adc-b97a-4114-8ba0-fdc9fa2b7385\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/30cae342-d2a8-4fa7-8ae7-73ff5bed852e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8f889a29-489e-46f0-8c7e-24575dd7dfdc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d2a0f0c4-10ca-4dc8-bb21-edf18b786e8c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e8eee4b6-35e5-4b21-a625-3e5890019f40\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/528b416a-7837-4bb3-ab56-6e6fc55c5020\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/46e303d4-3e92-46a0-ba43-7c146d785eb9\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ac16b77a-4b9c-46e7-a64d-08720a94535c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/03128cab-a456-4a58-86f2-abd12c3ac96b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/fb4f1df7-09d5-45a1-9e72-9155861cec56\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d12ede74-6fe4-43fb-853c-d5bb784d8b38\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/70e15faa-61a5-46df-804f-dfe49dd7f939\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/610f5a79-8873-4591-84cb-12b1cff45a3f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/da11b72d-bfa4-4c9d-bca8-bf4651fee08a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8e1fab89-3d0a-47ad-a07c-baeb109fa4a3\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/739ee4c5-0a32-4229-9b7e-7680e2d79d8d\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/96401445-8070-48bb-939a-8c34ebbb2558\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5edacb4d-c612-4963-a07c-cf0f4697bfe8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ed0896f0-3357-492d-9571-5c522aa8829c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c9f5b362-5f43-42ad-86cb-0c5afdc32e07\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/9a431e01-bd82-40b0-a35c-0cccd5b18f89\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/399e0efe-cc9b-4b10-b54f-83eb7e11217d\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/743e9d9e-4ba6-4ad6-b7bb-fb48a4db92a8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/54dc1897-69c9-4a37-ab9d-7b6581b9d22e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/981cac3b-1bdd-43d3-86ef-418435a794c8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5e7f6d8e-1008-41d0-9306-8b6e877bcc7f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ab7763c9-ef93-4432-af3f-b61f9452dcbb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/facc6a19-53ff-4a1f-a0db-397761cc6796\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/3f3b705c-87fc-4e1f-b2b6-2fb24104a20e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a0c6ad92-3b61-40e9-be3d-4feb1702d9eb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c7c216db-229b-4ed7-ae12-5df9a5055187\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/feb319ee-ad49-4444-8e85-423810d56a74\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d38ec4d3-ecf9-42c0-80be-8194cad5823e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b8012d92-da09-43e3-9b5c-6ce8196b6b69\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/3f7222bf-3920-4554-9c0c-1b97eecbf375\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a367f24e-5984-4cfa-aa84-235dd6ccdb56\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/67decc96-3cd5-4773-be61-ebfcece5689e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/565c190d-1663-4cdf-a901-a285e9f96daf\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8608ca2b-7ff9-4291-90fc-91b8932323b4\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/29d36733-748a-48b6-b943-399d2e4b3b01\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/13c28f5e-9b93-4b94-8fb5-4d3ee10df7c8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a5df482d-b422-495d-82ff-81e0d77ab944\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b83ac473-8efa-42f4-9f5a-3382b05b23a7\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/123dec16-c505-4215-b51f-770eb6087b9a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ab36ed9-e132-4bf0-947c-bd12f3765ab5\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e8903ab6-b1e2-489c-80bc-bbf4a1e804b8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8a68e8c1-2a43-4310-ad78-d9554d11f650\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5703e279-6aed-4c7c-bb87-98d46592a420\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/43b9e879-dcfd-444e-a708-6c0b0c959d5a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/114b953e-358e-4681-98e3-277cea6743f6\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-02-06T07:26:10.395345+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTcwNzIwNDM3MDM5NTM0NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"patient 3\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - Search Name, Birthdate, Gender",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"var Name = \"\";\r",
"var name = data.name;\r",
"name.forEach(name => {\r",
" if(name.use == \"official\"){Name = name.text}\r",
"});\r",
"pm.collectionVariables.set('Patient_id', data.id);\r",
"pm.collectionVariables.set('Patient_Name', 'Ny. Jane Smith');"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?name=patient 3&birthdate=1993-09-05&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 3"
},
{
"key": "birthdate",
"value": "1993-09-05"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"response": [
{
"name": "Patient - Search Name, Birthdate, Gender",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 1&birthdate=1980-12-03&gender=male",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 1"
},
{
"key": "birthdate",
"value": "1980-12-03"
},
{
"key": "gender",
"value": "male"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02478375538\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"MUNA\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"74\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"26\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1008\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"KEL.TOMBULA\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1980-12-03\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"male\",\n \"id\": \"P02478375538\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02478375538\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"9271060312000001\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7af11905-8d49-47dc-a72b-bca4948c01e7\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-31T06:40:40.038378+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NTUxNTI0MDAzODM3ODAwMA\"\n },\n \"multipleBirthBoolean\": false,\n \"name\": [\n {\n \"text\": \"patient 1\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - Bayi Search NIK Ibu",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik-ibu|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik-ibu|367400001111222"
}
]
}
},
"response": [
{
"name": "Patient - Bayi Search NIK Ibu",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik-ibu|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik-ibu|367400001111222"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102825\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102825\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102825\"\n }\n ],\n \"language\": \"id\",\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-10-17T06:26:21.585017+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY5NzUyMzk4MTU4NTAxNzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Sambo\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/ee3bff43-6b72-4a72-a41a-af4164e0eacf\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"2024-04-24-05-24\",\n \"id\": \"ee3bff43-6b72-4a72-a41a-af4164e0eacf\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"use\": \"official\",\n \"value\": \"A01111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"use\": \"official\",\n \"value\": \"367400001111111\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029103384\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-25T07:06:42.937195+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NDk5ODQwMjkzNzE5NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"John Smith\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102814\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102814\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102814\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T13:18:43.477704+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI4MTUyMzQ3NzcwNDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Roni\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102803\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102803\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102803\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T13:13:49.966892+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI4MTIyOTk2Njg5MjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Hulk\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102778\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102778\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102778\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T12:18:53.600353+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3NzkzMzYwMDM1MzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Stark\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102767\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102767\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102767\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:11:12.338686+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3Mzg3MjMzODY4NjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Toni\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102756\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102756\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102756\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:06:36.858381+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzU5Njg1ODM4MTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Budi\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102745\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102745\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102745\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:05:37.879975+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzUzNzg3OTk3NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Mardigu\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102734\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102734\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102734\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:00:54.720631+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzI1NDcyMDYzMTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dodi\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102723\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102723\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102723\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T10:59:48.626894+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzE4ODYyNjg5NDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Anang\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 10,\n \"type\": \"searchset\"\n}"
}
]
}
]
},
{
"name": "Practitioner",
"item": [
{
"name": "Practitioner - Search NIK",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner?identifier=https://fhir.kemkes.go.id/id/nik|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|367400001111222"
}
]
}
},
"response": [
{
"name": "Practitioner - Search NIK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner?identifier=https://fhir.kemkes.go.id/id/nik|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|367400001111222"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000010\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000010\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000010\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:04:31.188115+00:00\",\n \"versionid\": \"MTY2OTE3MjY3MTE4ODExNTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy Third Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000009\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000009\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000009\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:04:02.773442+00:00\",\n \"versionid\": \"MTY2OTE3MjY0Mjc3MzQ0MjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothies Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000008\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000008\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000008\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:03:35.594418+00:00\",\n \"versionid\": \"MTY2OTE3MjYxNTU5NDQxODAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000007\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000007\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000007\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:00:56.337787+00:00\",\n \"versionid\": \"MTY2OTE3MjQ1NjMzNzc4NzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000006\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000006\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000006\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:00:19.536151+00:00\",\n \"versionid\": \"MTY2OTE3MjQxOTUzNjE1MTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Rus, MD.\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000005\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000005\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000005\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:54.410712+00:00\",\n \"versionid\": \"MTY2OTE3MjM5NDQxMDcxMjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Paul Therapist, PT\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000004\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000004\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000004\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:32.514793+00:00\",\n \"versionid\": \"MTY2OTE3MjM3MjUxNDc5MzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Pamela Educator, RN\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000003\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000003\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000003\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:10.522324+00:00\",\n \"versionid\": \"MTY2OTE3MjM1MDUyMjMyNDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Ray Sp.Rad.\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000001\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionid\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 9,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Practitioner - Search Name, Gender, Birthdate",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner?name=Voigt&gender=male&birthdate=1945",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "name",
"value": "Voigt"
},
{
"key": "gender",
"value": "male"
},
{
"key": "birthdate",
"value": "1945"
}
]
}
},
"response": [
{
"name": "Practitioner - Search Name, Gender, Birthdate",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner?name=Voigt&gender=male&birthdate=1945",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "name",
"value": "Voigt"
},
{
"key": "gender",
"value": "male"
},
{
"key": "birthdate",
"value": "1945"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000002\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"2000-12-12\",\n \"gender\": \"male\",\n \"id\": \"N10000002\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000002\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111223\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:44.125648+00:00\",\n \"versionid\": \"MTY2OTE3MjMyNDEyNTY0ODAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Regfristrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"2015\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000001\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionid\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 2,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Practitioner - By ID - N10000001",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Practitioner_id\", data.id)\r",
"\r",
"var fullName = \"\";\r",
"\r",
"// Check if 'name' field exists and is an array\r",
"if (Array.isArray(data.name)) {\r",
" // Find the 'official' name\r",
" let officialName = data.name.find(name => name.use === \"official\");\r",
"\r",
" // Check if an official name was found\r",
" if (officialName) {\r",
" // Concatenate prefix, text, and suffix\r",
"\r",
" // Add prefix if it exists\r",
" if (Array.isArray(officialName.prefix)) {\r",
" fullName += officialName.prefix.join(\" \") + \" \";\r",
" }\r",
"\r",
" // Add text (main part of the name)\r",
" fullName += officialName.text;\r",
"\r",
" // Add suffix if it exists\r",
" if (Array.isArray(officialName.suffix)) {\r",
" fullName += \", \" + officialName.suffix.join(\" \");\r",
" }\r",
" }\r",
"}\r",
"\r",
"pm.collectionVariables.set(\"Practitioner_Name\", 'dr. Bronsig')"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000001"
}
]
}
},
"response": [
{
"name": "Practitioner - By ID - N10000001",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000005"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000005\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000005\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-08-20T16:27:02.097059+00:00\",\n \"versionid\": \"MTY2MTAxMjgyMjA5NzA1OTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Paul Therapist, PT\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n}"
}
]
},
{
"name": "Practitioner - By ID - N10000001",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Practitioner_id\", data.id)\r",
"\r",
"var fullName = \"\";\r",
"\r",
"// Check if 'name' field exists and is an array\r",
"if (Array.isArray(data.name)) {\r",
" // Find the 'official' name\r",
" let officialName = data.name.find(name => name.use === \"official\");\r",
"\r",
" // Check if an official name was found\r",
" if (officialName) {\r",
" // Concatenate prefix, text, and suffix\r",
"\r",
" // Add prefix if it exists\r",
" if (Array.isArray(officialName.prefix)) {\r",
" fullName += officialName.prefix.join(\" \") + \" \";\r",
" }\r",
"\r",
" // Add text (main part of the name)\r",
" fullName += officialName.text;\r",
"\r",
" // Add suffix if it exists\r",
" if (Array.isArray(officialName.suffix)) {\r",
" fullName += \", \" + officialName.suffix.join(\" \");\r",
" }\r",
" }\r",
"}\r",
"\r",
"pm.collectionVariables.set(\"Practitioner_Name\", 'dr. Bronsig')"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000001"
}
]
}
},
"response": [
{
"name": "Practitioner - By ID - N10000001",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000005"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000005\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000005\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-08-20T16:27:02.097059+00:00\",\n \"versionid\": \"MTY2MTAxMjgyMjA5NzA1OTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Paul Therapist, PT\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n}"
}
]
},
{
"name": "Practitioner - Search NIK",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner?identifier=https://fhir.kemkes.go.id/id/nik|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|367400001111222"
}
]
}
},
"response": [
{
"name": "Practitioner - Search NIK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner?identifier=https://fhir.kemkes.go.id/id/nik|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|367400001111222"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000010\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000010\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000010\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:04:31.188115+00:00\",\n \"versionid\": \"MTY2OTE3MjY3MTE4ODExNTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy Third Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000009\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000009\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000009\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:04:02.773442+00:00\",\n \"versionid\": \"MTY2OTE3MjY0Mjc3MzQ0MjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothies Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000008\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000008\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000008\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:03:35.594418+00:00\",\n \"versionid\": \"MTY2OTE3MjYxNTU5NDQxODAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000007\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000007\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000007\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:00:56.337787+00:00\",\n \"versionid\": \"MTY2OTE3MjQ1NjMzNzc4NzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000006\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000006\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000006\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:00:19.536151+00:00\",\n \"versionid\": \"MTY2OTE3MjQxOTUzNjE1MTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Rus, MD.\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000005\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000005\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000005\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:54.410712+00:00\",\n \"versionid\": \"MTY2OTE3MjM5NDQxMDcxMjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Paul Therapist, PT\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000004\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000004\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000004\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:32.514793+00:00\",\n \"versionid\": \"MTY2OTE3MjM3MjUxNDc5MzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Pamela Educator, RN\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000003\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000003\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000003\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:10.522324+00:00\",\n \"versionid\": \"MTY2OTE3MjM1MDUyMjMyNDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Ray Sp.Rad.\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000001\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionid\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 9,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Practitioner - Search Name, Gender, Birthdate",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner?name=Voigt&gender=male&birthdate=1945",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "name",
"value": "Voigt"
},
{
"key": "gender",
"value": "male"
},
{
"key": "birthdate",
"value": "1945"
}
]
}
},
"response": [
{
"name": "Practitioner - Search Name, Gender, Birthdate",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner?name=Voigt&gender=male&birthdate=1945",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "name",
"value": "Voigt"
},
{
"key": "gender",
"value": "male"
},
{
"key": "birthdate",
"value": "1945"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000002\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"2000-12-12\",\n \"gender\": \"male\",\n \"id\": \"N10000002\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000002\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111223\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:44.125648+00:00\",\n \"versionid\": \"MTY2OTE3MjMyNDEyNTY0ODAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Regfristrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"2015\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000001\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionid\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 2,\n \"type\": \"searchset\"\n}"
}
]
}
]
}
]
},
{
"name": "01. Membuat Struktur Organisasi dan Lokasi",
"item": [
{
"name": "Organization - Create Divisi Perawatan",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Suborg_uuid\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Divisi Perawatan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"b0a114dd-5ecb-4e37-aa9e-294bcdf119c3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:43:21.018490+00:00\",\n \"versionId\": \"MTcyNTg2MDYwMTAxODQ5MDAwMA\"\n },\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"partOf\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000002\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"team\",\n \"display\": \"Organizational team\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "Organization - Create Poli (Org)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Konsultasi ANC\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_uuid}}\",\n \"display\": \"Divisi Kesehatan Ibu dan Anak\"\n }\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Poli (Org)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Konsultasi ANC\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_uuid}}\",\n \"display\": \"Divisi Kesehatan Ibu dan Anak\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"bc25c28f-6f05-4e09-bc59-aaf324a1e79c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:46:07.044254+00:00\",\n \"versionId\": \"MTcyNTg2MDc2NzA0NDI1NDAwMA\"\n },\n \"name\": \"Konsultasi ANC\",\n \"partOf\": {\n \"display\": \"Divisi Kesehatan Ibu dan Anak\",\n \"reference\": \"Organization/b0a114dd-5ecb-4e37-aa9e-294bcdf119c3\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"team\",\n \"display\": \"Organizational team\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "Location - Create Poli (Ruang)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_Poli}}\"\n }\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Create Poli (Ruang)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_Poli}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"id\": \"98f7d812-c035-4988-bdb4-4036db87ec14\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000002\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/bc25c28f-6f05-4e09-bc59-aaf324a1e79c\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:48:43.091610+00:00\",\n \"versionId\": \"MTcyNTg2MDkyMzA5MTYxMDAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"physicalType\": {\n \"coding\": [\n {\n \"code\": \"ro\",\n \"display\": \"Room\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\"\n }\n ]\n },\n \"position\": {\n \"altitude\": 0,\n \"latitude\": 106.83239885393944,\n \"longitude\": -6.23115426275766\n },\n \"resourceType\": \"Location\",\n \"status\": \"active\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ]\n}"
}
]
},
{
"name": "Location - Create Poli (Ruang)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_Poli}}\"\n }\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Create Poli (Ruang)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_Poli}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"id\": \"98f7d812-c035-4988-bdb4-4036db87ec14\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000002\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/bc25c28f-6f05-4e09-bc59-aaf324a1e79c\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:48:43.091610+00:00\",\n \"versionId\": \"MTcyNTg2MDkyMzA5MTYxMDAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"physicalType\": {\n \"coding\": [\n {\n \"code\": \"ro\",\n \"display\": \"Room\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\"\n }\n ]\n },\n \"position\": {\n \"altitude\": 0,\n \"latitude\": 106.83239885393944,\n \"longitude\": -6.23115426275766\n },\n \"resourceType\": \"Location\",\n \"status\": \"active\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ]\n}"
}
]
},
{
"name": "Organization - Create Divisi Perawatan",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Suborg_uuid\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Divisi Perawatan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"b0a114dd-5ecb-4e37-aa9e-294bcdf119c3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:43:21.018490+00:00\",\n \"versionId\": \"MTcyNTg2MDYwMTAxODQ5MDAwMA\"\n },\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"partOf\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000002\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"team\",\n \"display\": \"Organizational team\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "Organization - Create Poli (Org)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Konsultasi ANC\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_uuid}}\",\n \"display\": \"Divisi Kesehatan Ibu dan Anak\"\n }\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Poli (Org)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Konsultasi ANC\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_uuid}}\",\n \"display\": \"Divisi Kesehatan Ibu dan Anak\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"bc25c28f-6f05-4e09-bc59-aaf324a1e79c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:46:07.044254+00:00\",\n \"versionId\": \"MTcyNTg2MDc2NzA0NDI1NDAwMA\"\n },\n \"name\": \"Konsultasi ANC\",\n \"partOf\": {\n \"display\": \"Divisi Kesehatan Ibu dan Anak\",\n \"reference\": \"Organization/b0a114dd-5ecb-4e37-aa9e-294bcdf119c3\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"team\",\n \"display\": \"Organizational team\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\"\n }\n ]\n }\n ]\n}"
}
]
}
]
},
{
"name": "02. Pendaftaran Kunjungan Pasien",
"item": [
{
"name": "Pendaftaran Kunjungan Baru",
"item": [
{
"name": "Encounter - Kunjungan Baru",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Encounter_id\", data.id);;"
],
"type": "text/javascript",
"packages": {}
}
},
{
"listen": "prerequest",
"script": {
"exec": [
"//defining yyymmdd as currentDate's YYYYMMDD in string format\r",
"var now = new Date();\r",
"var year = now.getFullYear();\r",
"var month = String(now.getMonth() + 1).padStart(2, '0');\r",
"var day = String(now.getDate()).padStart(2, '0');\r",
"var yyyymmdd = `${year}${month}${day}`;\r",
"\r",
"//Generating 5 digits of stringified random integer to make Registration_ID number (for test use cases)\r",
"var randomInt = Math.floor(Math.random() * 100000);\r",
"var randomIntPadded = String(randomInt).padStart(5, '0');\r",
"var Registration_ID = yyyymmdd + randomIntPadded;\r",
"\r",
"//Setting CollectionVariable Registration_ID to be used\r",
"pm.collectionVariables.set(\"Registration_ID\", Registration_ID)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
]
}
},
"response": [
{
"name": "Encounter - Kunjungan Baru",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"2024082474938\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:11:54.849971+00:00\",\n \"versionId\": \"MTcyNDQ0MDMxNDg0OTk3MTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Encounter - Kunjungan Baru",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Encounter_id\", data.id);;"
],
"type": "text/javascript",
"packages": {}
}
},
{
"listen": "prerequest",
"script": {
"exec": [
"//defining yyymmdd as currentDate's YYYYMMDD in string format\r",
"var now = new Date();\r",
"var year = now.getFullYear();\r",
"var month = String(now.getMonth() + 1).padStart(2, '0');\r",
"var day = String(now.getDate()).padStart(2, '0');\r",
"var yyyymmdd = `${year}${month}${day}`;\r",
"\r",
"//Generating 5 digits of stringified random integer to make Registration_ID number (for test use cases)\r",
"var randomInt = Math.floor(Math.random() * 100000);\r",
"var randomIntPadded = String(randomInt).padStart(5, '0');\r",
"var Registration_ID = yyyymmdd + randomIntPadded;\r",
"\r",
"//Setting CollectionVariable Registration_ID to be used\r",
"pm.collectionVariables.set(\"Registration_ID\", Registration_ID)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
]
}
},
"response": [
{
"name": "Encounter - Kunjungan Baru",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"2024082474938\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:11:54.849971+00:00\",\n \"versionId\": \"MTcyNDQ0MDMxNDg0OTk3MTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
}
]
},
{
"name": "Masuk Ruang",
"item": [
{
"name": "Encounter - Masuk Ruang",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Encounter_Registration_ID}}\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\",\n \"end\": \"2023-06-22T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"response": [
{
"name": "Encounter - Masuk Ruang",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Encounter_Registration_ID}}\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\",\n \"end\": \"2023-06-22T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"AMB\",\n \"display\": \"ambulatory\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"12345\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:13:17.174579+00:00\",\n \"versionId\": \"MTcyNDQ0MDM5NzE3NDU3OTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"in-progress\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-06-22T01:00:00+00:00\",\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"status\": \"in-progress\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Encounter - Masuk Ruang",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Encounter_Registration_ID}}\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\",\n \"end\": \"2023-06-22T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"response": [
{
"name": "Encounter - Masuk Ruang",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Encounter_Registration_ID}}\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\",\n \"end\": \"2023-06-22T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"AMB\",\n \"display\": \"ambulatory\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"12345\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:13:17.174579+00:00\",\n \"versionId\": \"MTcyNDQ0MDM5NzE3NDU3OTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"in-progress\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-06-22T01:00:00+00:00\",\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"status\": \"in-progress\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
}
]
},
{
"name": "Pencarian Kunjungan Sebelumnya",
"item": [
{
"name": "Encounter by Kode Kunjungan Internal RS",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Encounter?identifier=http://sys-ids.kemkes.go.id/encounter/10000004|O12345",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/encounter/10000004|O12345"
}
]
}
},
"response": [
{
"name": "Encounter by Kode Kunjungan Internal RS",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Encounter?identifier=http://sys-ids.kemkes.go.id/encounter/10000004|O12345",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/encounter/10000004|O12345"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/5cf1ddd2-9901-43d7-8f46-2d85dc3bdc00\",\n \"resource\": {\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"5cf1ddd2-9901-43d7-8f46-2d85dc3bdc00\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"O12345\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/creator\",\n \"value\": \"10000004\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-11T03:29:37.048722+00:00\",\n \"versionId\": \"MTcyMzM0Njk3NzA0ODcyMjAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Patient - Mother (Teresa Lee)\",\n \"reference\": \"Patient/P02280547535\"\n }\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F10000004%7CO12345\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F10000004%7CO12345\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F10000004%7CO12345\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Encounter by Kode Kunjungan Internal RS",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Encounter?identifier=http://sys-ids.kemkes.go.id/encounter/10000004|O12345",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/encounter/10000004|O12345"
}
]
}
},
"response": [
{
"name": "Encounter by Kode Kunjungan Internal RS",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Encounter?identifier=http://sys-ids.kemkes.go.id/encounter/10000004|O12345",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/encounter/10000004|O12345"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/5cf1ddd2-9901-43d7-8f46-2d85dc3bdc00\",\n \"resource\": {\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"5cf1ddd2-9901-43d7-8f46-2d85dc3bdc00\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"O12345\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/creator\",\n \"value\": \"10000004\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-11T03:29:37.048722+00:00\",\n \"versionId\": \"MTcyMzM0Njk3NzA0ODcyMjAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Patient - Mother (Teresa Lee)\",\n \"reference\": \"Patient/P02280547535\"\n }\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F10000004%7CO12345\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F10000004%7CO12345\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F10000004%7CO12345\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
}
]
}
]
},
{
"name": "03. Alamat Lokasi",
"item": [
{
"name": "Alamat Tinggal",
"item": [
{
"name": "Patient - Menambah Alamat Tinggal",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"add\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Patient_Ibu_ID}}"
}
]
}
},
"response": [
{
"name": "Patient - Menambah Alamat Tinggal",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"add\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/P02280547535",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
"P02280547535"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"12\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"period\": {\n \"end\": \"2010-06-22T15:30:08+00:00\",\n \"start\": \"2000-01-01T15:30:08+00:00\"\n },\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"20231029 Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"20231028 Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"18\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"period\": {\n \"end\": \"2023-09-22T15:30:08+00:00\",\n \"start\": \"2010-06-22T15:30:08+00:00\"\n },\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n }\n ],\n \"birthDate\": \"1987-09-12\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"contact\": [\n {\n \"name\": {\n \"text\": \"Jane Smith\",\n \"use\": \"official\"\n },\n \"relationship\": [\n {\n \"coding\": [\n {\n \"code\": \"C\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\"\n }\n ]\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"0690383372\"\n }\n ]\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P02280547535\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02280547535\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"9104025209000006\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"use\": \"official\",\n \"value\": \"A01111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"use\": \"official\",\n \"value\": \"367400001111111\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b1820190-b086-43e6-9ee9-df7ccb9867ba\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e2bdc3ea-dfce-45c9-a336-1ab40b24a1e4\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c41950ac-e0a2-4021-a345-9908f40e5ed8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/102fc703-e554-43b7-968d-bebbbb1bc2ef\"\n },\n \"type\": \"refer\"\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"code\": \"M\",\n \"display\": \"Married\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\"\n }\n ],\n \"text\": \"Married\"\n },\n \"meta\": {\n \"lastUpdated\": \"2023-10-29T13:02:42.513057+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionId\": \"MTY5ODU4NDU2MjUxMzA1NzAwMA\"\n },\n \"multipleBirthInteger\": 0,\n \"name\": [\n {\n \"text\": \"patient 6\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n}"
}
]
},
{
"name": "Patient - Update Alamat Tinggal",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"replace\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"34\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"3404\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"340406\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"3404062004\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Patient_Ibu_ID}}"
}
]
}
},
"response": [
{
"name": "Patient - Update Alamat Tinggal",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"replace\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url_satset}}/Patient/P02029412006",
"host": [
"{{base_url_satset}}"
],
"path": [
"Patient",
"P02029412006"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"1101\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1101\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"110101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1101012001\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"12\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"SAMPOERNA STRATEGIC\"\n ],\n \"postalCode\": \"55292\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n }\n ],\n \"birthDate\": \"2024-03-10\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bogor\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P02029412006\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"92040148040001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"9271060312000002\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029412006\"\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"code\": \"S\",\n \"display\": \"Never Married\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\"\n }\n ]\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-13T08:03:49.500209+00:00\",\n \"versionId\": \"MTcxMDMxNzAyOTUwMDIwOTAwMA\"\n },\n \"multipleBirthInteger\": 0,\n \"name\": [\n {\n \"text\": \"Y2u***\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08132928237348\"\n }\n ]\n}"
}
]
},
{
"name": "Patient - Update Alamat Tinggal",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"replace\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"34\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"3404\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"340406\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"3404062004\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Patient_Ibu_ID}}"
}
]
}
},
"response": [
{
"name": "Patient - Update Alamat Tinggal",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"replace\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url_satset}}/Patient/P02029412006",
"host": [
"{{base_url_satset}}"
],
"path": [
"Patient",
"P02029412006"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"1101\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1101\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"110101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1101012001\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"12\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"SAMPOERNA STRATEGIC\"\n ],\n \"postalCode\": \"55292\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n }\n ],\n \"birthDate\": \"2024-03-10\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bogor\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P02029412006\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"92040148040001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"9271060312000002\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029412006\"\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"code\": \"S\",\n \"display\": \"Never Married\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\"\n }\n ]\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-13T08:03:49.500209+00:00\",\n \"versionId\": \"MTcxMDMxNzAyOTUwMDIwOTAwMA\"\n },\n \"multipleBirthInteger\": 0,\n \"name\": [\n {\n \"text\": \"Y2u***\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08132928237348\"\n }\n ]\n}"
}
]
},
{
"name": "Patient - Menambah Alamat Tinggal",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"add\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Patient_Ibu_ID}}"
}
]
}
},
"response": [
{
"name": "Patient - Menambah Alamat Tinggal",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"add\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/P02280547535",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
"P02280547535"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"12\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"period\": {\n \"end\": \"2010-06-22T15:30:08+00:00\",\n \"start\": \"2000-01-01T15:30:08+00:00\"\n },\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"20231029 Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"20231028 Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"18\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"period\": {\n \"end\": \"2023-09-22T15:30:08+00:00\",\n \"start\": \"2010-06-22T15:30:08+00:00\"\n },\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n }\n ],\n \"birthDate\": \"1987-09-12\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"contact\": [\n {\n \"name\": {\n \"text\": \"Jane Smith\",\n \"use\": \"official\"\n },\n \"relationship\": [\n {\n \"coding\": [\n {\n \"code\": \"C\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\"\n }\n ]\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"0690383372\"\n }\n ]\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P02280547535\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02280547535\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"9104025209000006\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"use\": \"official\",\n \"value\": \"A01111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"use\": \"official\",\n \"value\": \"367400001111111\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b1820190-b086-43e6-9ee9-df7ccb9867ba\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e2bdc3ea-dfce-45c9-a336-1ab40b24a1e4\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c41950ac-e0a2-4021-a345-9908f40e5ed8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/102fc703-e554-43b7-968d-bebbbb1bc2ef\"\n },\n \"type\": \"refer\"\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"code\": \"M\",\n \"display\": \"Married\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\"\n }\n ],\n \"text\": \"Married\"\n },\n \"meta\": {\n \"lastUpdated\": \"2023-10-29T13:02:42.513057+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionId\": \"MTY5ODU4NDU2MjUxMzA1NzAwMA\"\n },\n \"multipleBirthInteger\": 0,\n \"name\": [\n {\n \"text\": \"patient 6\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n}"
}
]
}
]
}
]
},
{
"name": "04. Riwayat Kematian Ibu",
"item": [
{
"name": "Umur saat Meninggal",
"item": [
{
"name": "Observation - Umur saat Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"39016-1\",\n \"display\" : \"Age at death\"\n }\n ]\n },\n \"subject\" : {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:30:00+00:00\",\n \"issued\": \"2023-06-22T07:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\" : {\n \"value\" : 35,\n \"unit\" : \"years\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"a\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Umur saat Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39016-1\",\n \"display\": \"Age at death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:30:00+00:00\",\n \"issued\": \"2023-06-22T07:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"39016-1\",\n \"display\": \"Age at death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T07:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"13c60fb3-ae20-481e-ad4f-d9cb32cc94ed\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:29:15.438856+00:00\",\n \"versionId\": \"MTcyNDQ0MTM1NTQzODg1NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueQuantity\": {\n \"code\": \"a\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"years\",\n \"value\": 35\n }\n}"
}
]
},
{
"name": "Observation - Umur saat Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"39016-1\",\n \"display\" : \"Age at death\"\n }\n ]\n },\n \"subject\" : {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:30:00+00:00\",\n \"issued\": \"2023-06-22T07:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\" : {\n \"value\" : 35,\n \"unit\" : \"years\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"a\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Umur saat Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39016-1\",\n \"display\": \"Age at death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:30:00+00:00\",\n \"issued\": \"2023-06-22T07:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"39016-1\",\n \"display\": \"Age at death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T07:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"13c60fb3-ae20-481e-ad4f-d9cb32cc94ed\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:29:15.438856+00:00\",\n \"versionId\": \"MTcyNDQ0MTM1NTQzODg1NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueQuantity\": {\n \"code\": \"a\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"years\",\n \"value\": 35\n }\n}"
}
]
}
]
},
{
"name": "Tanggal Meninggal",
"item": [
{
"name": "Observation - Tanggal Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:10:00+00:00\",\n \"issued\": \"2023-06-22T14:10:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T14:10:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tanggal Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:10:00+00:00\",\n \"issued\": \"2023-06-22T14:10:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T14:10:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:10:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"ea344312-b259-407b-9022-1f4d6273d12e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:29:39.054776+00:00\",\n \"versionId\": \"MTcyNDQ0MTM3OTA1NDc3NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueDateTime\": \"2023-06-22T14:10:00+00:00\"\n}"
}
]
},
{
"name": "Observation - Tanggal Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:10:00+00:00\",\n \"issued\": \"2023-06-22T14:10:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T14:10:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tanggal Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:10:00+00:00\",\n \"issued\": \"2023-06-22T14:10:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T14:10:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:10:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"ea344312-b259-407b-9022-1f4d6273d12e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:29:39.054776+00:00\",\n \"versionId\": \"MTcyNDQ0MTM3OTA1NDc3NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueDateTime\": \"2023-06-22T14:10:00+00:00\"\n}"
}
]
}
]
},
{
"name": "Masa Terjadi Kematian Ibu",
"item": [
{
"name": "Observation - Masa Terjadi Kematian Ibu",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\" : \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\" : \"OC000026\",\n \"display\" : \"Masa terjadi Kematian Ibu\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:32:00+00:00\",\n \"issued\": \"2023-06-22T07:32:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" : \"http://snomed.info/sct\",\n \"code\" : \"1156679005\",\n \"display\" : \"Maternal antenatal period\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Masa Terjadi Kematian Ibu",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000026\",\n \"display\": \"Masa terjadi Kematian Ibu\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:32:00+00:00\",\n \"issued\": \"2023-06-22T07:32:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1156679005\",\n \"display\": \"Maternal antenatal period\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000026\",\n \"display\": \"Masa terjadi Kematian Ibu\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T07:32:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"b9c0c3fa-0a4e-4981-a39f-b880317dacfc\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:32:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:30:09.387230+00:00\",\n \"versionId\": \"MTcyNDQ0MTQwOTM4NzIzMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"1156679005\",\n \"display\": \"Maternal antenatal period\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Masa Terjadi Kematian Ibu",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\" : \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\" : \"OC000026\",\n \"display\" : \"Masa terjadi Kematian Ibu\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:32:00+00:00\",\n \"issued\": \"2023-06-22T07:32:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" : \"http://snomed.info/sct\",\n \"code\" : \"1156679005\",\n \"display\" : \"Maternal antenatal period\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Masa Terjadi Kematian Ibu",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000026\",\n \"display\": \"Masa terjadi Kematian Ibu\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:32:00+00:00\",\n \"issued\": \"2023-06-22T07:32:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1156679005\",\n \"display\": \"Maternal antenatal period\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000026\",\n \"display\": \"Masa terjadi Kematian Ibu\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T07:32:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"b9c0c3fa-0a4e-4981-a39f-b880317dacfc\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:32:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:30:09.387230+00:00\",\n \"versionId\": \"MTcyNDQ0MTQwOTM4NzIzMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"1156679005\",\n \"display\": \"Maternal antenatal period\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Dugaan Sebab Kematian",
"item": [
{
"name": "Observation - Dugaan Sebab Kematian - ICD Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n\t\t\t\t\"system\" : \"http://loinc.org\",\n\t\t\t\t\"code\" : \"79378-6\",\n\t\t\t\t\"display\" : \"Cause of death\"\n\t\t\t}\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dugaan Sebab Kematian - ICD Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"3d878ec2-7b71-4eaf-95ed-c39b12673bcf\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:30:36.042161+00:00\",\n \"versionId\": \"MTcyNDQ0MTQzNjA0MjE2MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Observation - Dugaan Sebab Kematian - ICD 3 or 4 digit & Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n\t\t\t\t\"system\" : \"http://loinc.org\",\n\t\t\t\t\"code\" : \"79378-6\",\n\t\t\t\t\"display\" : \"Cause of death\"\n\t\t\t}\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"V01\",\n \"display\": \"Pedestrian injured in collision with pedal cycle\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dugaan Sebab Kematian - ICD 3 or 4 digit & Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"V01\",\n \"display\": \"Pedestrian injured in collision with pedal cycle\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"V01\",\n \"display\": \"Pedestrian injured in collision with pedal cycle\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"49487437-90a5-43f5-9f13-d09d5e929739\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:38:49.402620+00:00\",\n \"versionId\": \"MTcyNTg2MDMyOTQwMjYyMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Observation - Dugaan Sebab Kematian - ICD Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n\t\t\t\t\"system\" : \"http://loinc.org\",\n\t\t\t\t\"code\" : \"79378-6\",\n\t\t\t\t\"display\" : \"Cause of death\"\n\t\t\t}\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dugaan Sebab Kematian - ICD Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"3d878ec2-7b71-4eaf-95ed-c39b12673bcf\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:30:36.042161+00:00\",\n \"versionId\": \"MTcyNDQ0MTQzNjA0MjE2MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Observation - Dugaan Sebab Kematian - ICD 3 or 4 digit & Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n\t\t\t\t\"system\" : \"http://loinc.org\",\n\t\t\t\t\"code\" : \"79378-6\",\n\t\t\t\t\"display\" : \"Cause of death\"\n\t\t\t}\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"V01\",\n \"display\": \"Pedestrian injured in collision with pedal cycle\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dugaan Sebab Kematian - ICD 3 or 4 digit & Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"V01\",\n \"display\": \"Pedestrian injured in collision with pedal cycle\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"V01\",\n \"display\": \"Pedestrian injured in collision with pedal cycle\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"49487437-90a5-43f5-9f13-d09d5e929739\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:38:49.402620+00:00\",\n \"versionId\": \"MTcyNTg2MDMyOTQwMjYyMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
}
]
},
{
"name": "Jenis Tempat Meninggal",
"item": [
{
"name": "Observation - Jenis Tempat Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\" : \"final\",\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\" : \"OC000028\",\n \"display\" : \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:34:00+00:00\",\n \"issued\": \"2023-06-22T07:34:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" :\"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\" : \"OT000006\",\n \"display\" : \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\" : \"RS Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Tempat Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:34:00+00:00\",\n \"issued\": \"2023-06-22T07:34:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T07:34:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"f2f812ec-7faa-437a-8c5e-409021f42232\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:34:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:31:16.188304+00:00\",\n \"versionId\": \"MTcyNDQ0MTQ3NjE4ODMwNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n}"
}
]
},
{
"name": "Observation - Jenis Tempat Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\" : \"final\",\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\" : \"OC000028\",\n \"display\" : \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:34:00+00:00\",\n \"issued\": \"2023-06-22T07:34:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" :\"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\" : \"OT000006\",\n \"display\" : \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\" : \"RS Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Tempat Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:34:00+00:00\",\n \"issued\": \"2023-06-22T07:34:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T07:34:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"f2f812ec-7faa-437a-8c5e-409021f42232\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:34:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:31:16.188304+00:00\",\n \"versionId\": \"MTcyNDQ0MTQ3NjE4ODMwNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "05. Riwayat Kehamilan Ibu",
"item": [
{
"name": "Gravida",
"item": [
{
"name": "Observation - Gravida",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:35:00+00:00\",\n \"issued\": \"2023-06-22T07:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueInteger\": 2\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gravida",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:35:00+00:00\",\n \"issued\": \"2023-06-22T07:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueInteger\": 2\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T07:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"0a0eb0c3-5b5f-47c4-b68b-6ae8436ed4e6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:35:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:32:49.126093+00:00\",\n \"versionId\": \"MTcyNDQ0MTU2OTEyNjA5MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueInteger\": 2\n}"
}
]
},
{
"name": "Observation - Gravida",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:35:00+00:00\",\n \"issued\": \"2023-06-22T07:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueInteger\": 2\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gravida",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:35:00+00:00\",\n \"issued\": \"2023-06-22T07:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueInteger\": 2\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T07:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"0a0eb0c3-5b5f-47c4-b68b-6ae8436ed4e6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:35:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:32:49.126093+00:00\",\n \"versionId\": \"MTcyNDQ0MTU2OTEyNjA5MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueInteger\": 2\n}"
}
]
}
]
},
{
"name": "Partus",
"item": [
{
"name": "Observation - Partus",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:36:00+00:00\",\n \"issued\": \"2023-06-22T07:36:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueInteger\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Partus",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:36:00+00:00\",\n \"issued\": \"2023-06-22T07:36:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueInteger\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T07:36:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"a70374cb-f624-4814-98aa-65316c81c272\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-09-05T05:04:27.361245+00:00\",\n \"versionId\": \"MTcyNTUxMjY2NzM2MTI0NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueInteger\": 1\n}"
}
]
},
{
"name": "Observation - Partus",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:36:00+00:00\",\n \"issued\": \"2023-06-22T07:36:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueInteger\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Partus",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:36:00+00:00\",\n \"issued\": \"2023-06-22T07:36:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueInteger\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T07:36:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"a70374cb-f624-4814-98aa-65316c81c272\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-09-05T05:04:27.361245+00:00\",\n \"versionId\": \"MTcyNTUxMjY2NzM2MTI0NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueInteger\": 1\n}"
}
]
}
]
},
{
"name": "Abortus",
"item": [
{
"name": "Observation - Abortus",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:37:00+00:00\",\n \"issued\": \"2023-06-22T07:37:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueInteger\": 0\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Abortus",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:37:00+00:00\",\n \"issued\": \"2023-06-22T07:37:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueInteger\": 0\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T07:37:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"1d5fb4fb-cad7-4857-af7d-1d5119e047e7\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:37:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-09-05T05:04:57.160338+00:00\",\n \"versionId\": \"MTcyNTUxMjY5NzE2MDMzODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueInteger\": 0\n}"
}
]
},
{
"name": "Observation - Abortus",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:37:00+00:00\",\n \"issued\": \"2023-06-22T07:37:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueInteger\": 0\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Abortus",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:37:00+00:00\",\n \"issued\": \"2023-06-22T07:37:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueInteger\": 0\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T07:37:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"1d5fb4fb-cad7-4857-af7d-1d5119e047e7\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:37:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-09-05T05:04:57.160338+00:00\",\n \"versionId\": \"MTcyNTUxMjY5NzE2MDMzODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueInteger\": 0\n}"
}
]
}
]
},
{
"name": "Usia Kehamilan (UK)",
"item": [
{
"name": "Observation - Usia Kehamilan (UK)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:38:00+00:00\",\n \"issued\": \"2023-06-22T07:38:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\" : {\n \"value\" : 32,\n \"unit\" : \"week\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"wk\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Usia Kehamilan (UK)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:38:00+00:00\",\n \"issued\": \"2023-06-22T07:38:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T07:38:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"1606e1b7-7fd0-455c-abe5-8dfc321f3f73\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:38:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:34:24.050025+00:00\",\n \"versionId\": \"MTcyNDQ0MTY2NDA1MDAyNTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000004\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueQuantity\": {\n \"code\": \"wk\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"week\",\n \"value\": 32\n }\n}"
}
]
},
{
"name": "Observation - Usia Kehamilan (UK)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:38:00+00:00\",\n \"issued\": \"2023-06-22T07:38:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\" : {\n \"value\" : 32,\n \"unit\" : \"week\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"wk\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Usia Kehamilan (UK)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:38:00+00:00\",\n \"issued\": \"2023-06-22T07:38:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T07:38:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"1606e1b7-7fd0-455c-abe5-8dfc321f3f73\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T07:38:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:34:24.050025+00:00\",\n \"versionId\": \"MTcyNDQ0MTY2NDA1MDAyNTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000004\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueQuantity\": {\n \"code\": \"wk\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"week\",\n \"value\": 32\n }\n}"
}
]
}
]
}
]
},
{
"name": "06. Diagnosis",
"item": [
{
"name": "Condition - Diagnosis",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\" : [\n {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\" : \"encounter-diagnosis\",\n \"display\" : \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T07:39:00+00:00\",\n \"recordedDate\": \"2023-06-22T07:39:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Diagnosis",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T07:39:00+00:00\",\n \"recordedDate\": \"2023-06-22T07:39:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\"\n }\n ]\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"b957aaf4-f8ea-486e-87f8-1bbd75593649\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:35:15.450075+00:00\",\n \"versionId\": \"MTcyNDQ0MTcxNTQ1MDA3NTAwMA\"\n },\n \"onsetDateTime\": \"2023-06-22T07:39:00+00:00\",\n \"recordedDate\": \"2023-06-22T07:39:00+00:00\",\n \"recorder\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Condition - Diagnosis",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\" : [\n {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\" : \"encounter-diagnosis\",\n \"display\" : \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T07:39:00+00:00\",\n \"recordedDate\": \"2023-06-22T07:39:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Diagnosis",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T07:39:00+00:00\",\n \"recordedDate\": \"2023-06-22T07:39:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\"\n }\n ]\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"b957aaf4-f8ea-486e-87f8-1bbd75593649\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:35:15.450075+00:00\",\n \"versionId\": \"MTcyNDQ0MTcxNTQ1MDA3NTAwMA\"\n },\n \"onsetDateTime\": \"2023-06-22T07:39:00+00:00\",\n \"recordedDate\": \"2023-06-22T07:39:00+00:00\",\n \"recorder\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
}
]
},
{
"name": "07. Laporan Notifikasi Kematian",
"item": [
{
"name": "Composition - Laporan Notifikasi Kematian",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720001\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000001\",\n \"display\": \"Formulir Informasi Kematian Maternal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Maternal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"Dr. John Doe\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"Death Investigation\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Usia ketika meninggal (tahun)\",\n \"reference\": \"Observation/52917cc9-15f7-4373-932b-3b0915a517b7\"\n },\n {\n \"display\": \"Tanggal Meninggal\",\n \"reference\": \"Observation/d3986419-1df5-49e7-a8f7-49f3f429c084\"\n },\n {\n \"display\": \"Masa Terjadi Kematian Ibu\",\n \"reference\": \"Observation/e09c9a1b-de7f-467b-877a-1dfb937b36e6\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/8e8d75ea-d07d-4936-be66-bbdf84f62602\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/6ce43fac-05b6-4435-9ff6-2af2cdbac608\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/55299c3f-1c6e-4011-b77a-eefb52027a62\"\n },\n {\n \"display\": \"Paritas\",\n \"reference\": \"Observation/ed0bbc43-c36e-4a17-b012-9be07217a452\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/12a838bb-a2fa-4ad6-b81e-cce6295a1973\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/62c7bc1d-cbab-4cf1-b223-192e3d6bf5a5\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"response": [
{
"name": "Composition - Laporan Notifikasi Kematian",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720001\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000001\",\n \"display\": \"Formulir Informasi Kematian Maternal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Maternal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"Dr. John Doe\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"Death Investigation\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Usia ketika meninggal (tahun)\",\n \"reference\": \"Observation/52917cc9-15f7-4373-932b-3b0915a517b7\"\n },\n {\n \"display\": \"Tanggal Meninggal\",\n \"reference\": \"Observation/d3986419-1df5-49e7-a8f7-49f3f429c084\"\n },\n {\n \"display\": \"Masa Terjadi Kematian Ibu\",\n \"reference\": \"Observation/e09c9a1b-de7f-467b-877a-1dfb937b36e6\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/8e8d75ea-d07d-4936-be66-bbdf84f62602\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/6ce43fac-05b6-4435-9ff6-2af2cdbac608\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/55299c3f-1c6e-4011-b77a-eefb52027a62\"\n },\n {\n \"display\": \"Paritas\",\n \"reference\": \"Observation/ed0bbc43-c36e-4a17-b012-9be07217a452\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/12a838bb-a2fa-4ad6-b81e-cce6295a1973\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/62c7bc1d-cbab-4cf1-b223-192e3d6bf5a5\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000004\"\n }\n }\n ],\n \"author\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"contained\": [\n {\n \"address\": {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n },\n \"id\": \"987654321\",\n \"managingOrganization\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000004\"\n },\n \"name\": \"Puskesmas SATUSEHAT\",\n \"resourceType\": \"Location\",\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n }\n ]\n }\n ],\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"code\": \"445667001\",\n \"display\": \"Interim report\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"detail\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"period\": {\n \"end\": \"2023-06-21T14:29:59+00:00\",\n \"start\": \"2023-06-20T14:30:00+00:00\"\n }\n }\n ],\n \"id\": \"e5c2bbb0-f43f-4244-97d0-b3d279e1d7ca\",\n \"identifier\": null,\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:38:24.925527+00:00\",\n \"versionId\": \"MTcyNDQ0MTkwNDkyNTUyNzAwMA\"\n },\n \"resourceType\": \"Composition\",\n \"section\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"64297-5\",\n \"display\": \"Death Investigation\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Usia ketika meninggal (tahun)\",\n \"reference\": \"Observation/52917cc9-15f7-4373-932b-3b0915a517b7\"\n },\n {\n \"display\": \"Tanggal Meninggal\",\n \"reference\": \"Observation/d3986419-1df5-49e7-a8f7-49f3f429c084\"\n },\n {\n \"display\": \"Masa Terjadi Kematian Ibu\",\n \"reference\": \"Observation/e09c9a1b-de7f-467b-877a-1dfb937b36e6\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/8e8d75ea-d07d-4936-be66-bbdf84f62602\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/6ce43fac-05b6-4435-9ff6-2af2cdbac608\"\n }\n ],\n \"title\": \"Riwayat Kematian Ibu\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/55299c3f-1c6e-4011-b77a-eefb52027a62\"\n },\n {\n \"display\": \"Paritas\",\n \"reference\": \"Observation/ed0bbc43-c36e-4a17-b012-9be07217a452\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/12a838bb-a2fa-4ad6-b81e-cce6295a1973\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/62c7bc1d-cbab-4cf1-b223-192e3d6bf5a5\"\n }\n ],\n \"title\": \"Riwayat Kehamilan\"\n }\n ],\n \"status\": \"preliminary\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Notifikasi Kematian Maternal\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"COM000001\",\n \"display\": \"Formulir Informasi Kematian Maternal\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Composition - Laporan Notifikasi Kematian",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720001\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000001\",\n \"display\": \"Formulir Informasi Kematian Maternal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Maternal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"Dr. John Doe\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"Death Investigation\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Usia ketika meninggal (tahun)\",\n \"reference\": \"Observation/52917cc9-15f7-4373-932b-3b0915a517b7\"\n },\n {\n \"display\": \"Tanggal Meninggal\",\n \"reference\": \"Observation/d3986419-1df5-49e7-a8f7-49f3f429c084\"\n },\n {\n \"display\": \"Masa Terjadi Kematian Ibu\",\n \"reference\": \"Observation/e09c9a1b-de7f-467b-877a-1dfb937b36e6\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/8e8d75ea-d07d-4936-be66-bbdf84f62602\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/6ce43fac-05b6-4435-9ff6-2af2cdbac608\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/55299c3f-1c6e-4011-b77a-eefb52027a62\"\n },\n {\n \"display\": \"Paritas\",\n \"reference\": \"Observation/ed0bbc43-c36e-4a17-b012-9be07217a452\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/12a838bb-a2fa-4ad6-b81e-cce6295a1973\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/62c7bc1d-cbab-4cf1-b223-192e3d6bf5a5\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"response": [
{
"name": "Composition - Laporan Notifikasi Kematian",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720001\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000001\",\n \"display\": \"Formulir Informasi Kematian Maternal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Maternal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"Dr. John Doe\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"Death Investigation\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Usia ketika meninggal (tahun)\",\n \"reference\": \"Observation/52917cc9-15f7-4373-932b-3b0915a517b7\"\n },\n {\n \"display\": \"Tanggal Meninggal\",\n \"reference\": \"Observation/d3986419-1df5-49e7-a8f7-49f3f429c084\"\n },\n {\n \"display\": \"Masa Terjadi Kematian Ibu\",\n \"reference\": \"Observation/e09c9a1b-de7f-467b-877a-1dfb937b36e6\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/8e8d75ea-d07d-4936-be66-bbdf84f62602\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/6ce43fac-05b6-4435-9ff6-2af2cdbac608\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/55299c3f-1c6e-4011-b77a-eefb52027a62\"\n },\n {\n \"display\": \"Paritas\",\n \"reference\": \"Observation/ed0bbc43-c36e-4a17-b012-9be07217a452\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/12a838bb-a2fa-4ad6-b81e-cce6295a1973\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/62c7bc1d-cbab-4cf1-b223-192e3d6bf5a5\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000004\"\n }\n }\n ],\n \"author\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"contained\": [\n {\n \"address\": {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n },\n \"id\": \"987654321\",\n \"managingOrganization\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000004\"\n },\n \"name\": \"Puskesmas SATUSEHAT\",\n \"resourceType\": \"Location\",\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n }\n ]\n }\n ],\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"code\": \"445667001\",\n \"display\": \"Interim report\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"detail\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"period\": {\n \"end\": \"2023-06-21T14:29:59+00:00\",\n \"start\": \"2023-06-20T14:30:00+00:00\"\n }\n }\n ],\n \"id\": \"e5c2bbb0-f43f-4244-97d0-b3d279e1d7ca\",\n \"identifier\": null,\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:38:24.925527+00:00\",\n \"versionId\": \"MTcyNDQ0MTkwNDkyNTUyNzAwMA\"\n },\n \"resourceType\": \"Composition\",\n \"section\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"64297-5\",\n \"display\": \"Death Investigation\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Usia ketika meninggal (tahun)\",\n \"reference\": \"Observation/52917cc9-15f7-4373-932b-3b0915a517b7\"\n },\n {\n \"display\": \"Tanggal Meninggal\",\n \"reference\": \"Observation/d3986419-1df5-49e7-a8f7-49f3f429c084\"\n },\n {\n \"display\": \"Masa Terjadi Kematian Ibu\",\n \"reference\": \"Observation/e09c9a1b-de7f-467b-877a-1dfb937b36e6\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/8e8d75ea-d07d-4936-be66-bbdf84f62602\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/6ce43fac-05b6-4435-9ff6-2af2cdbac608\"\n }\n ],\n \"title\": \"Riwayat Kematian Ibu\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/55299c3f-1c6e-4011-b77a-eefb52027a62\"\n },\n {\n \"display\": \"Paritas\",\n \"reference\": \"Observation/ed0bbc43-c36e-4a17-b012-9be07217a452\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/12a838bb-a2fa-4ad6-b81e-cce6295a1973\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/62c7bc1d-cbab-4cf1-b223-192e3d6bf5a5\"\n }\n ],\n \"title\": \"Riwayat Kehamilan\"\n }\n ],\n \"status\": \"preliminary\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Notifikasi Kematian Maternal\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"COM000001\",\n \"display\": \"Formulir Informasi Kematian Maternal\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "08. Update Pulang",
"item": [
{
"name": "Encounter - Finished",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"response": [
{
"name": "Encounter - Finished",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"diagnosis\": [\n {\n \"condition\": {\n \"display\": \"Examination for administrative purposes, unspecified\",\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\"\n },\n \"rank\": 1,\n \"use\": {\n \"coding\": [\n {\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\"\n }\n ]\n }\n }\n ],\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"O24689\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:50:17.075813+00:00\",\n \"versionId\": \"MTcyNDQ0MjYxNzA3NTgxMzAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"finished\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-06-22T07:15:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:15:00+00:00\"\n },\n \"status\": \"in-progress\"\n },\n {\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T14:10:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Encounter - Finished",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"response": [
{
"name": "Encounter - Finished",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"diagnosis\": [\n {\n \"condition\": {\n \"display\": \"Examination for administrative purposes, unspecified\",\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\"\n },\n \"rank\": 1,\n \"use\": {\n \"coding\": [\n {\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\"\n }\n ]\n }\n }\n ],\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"O24689\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:50:17.075813+00:00\",\n \"versionId\": \"MTcyNDQ0MjYxNzA3NTgxMzAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"finished\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-06-22T07:15:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:15:00+00:00\"\n },\n \"status\": \"in-progress\"\n },\n {\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T14:10:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
}
]
},
{
"name": "Bundle - Pelaporan Kematian Ibu",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:58959850-7cfb-4100-bbfa-67dd64efd1a6\",\n \"resource\": {\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720001\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000001\",\n \"display\": \"Formulir Informasi Kematian Maternal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Maternal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"Dr. John Doe\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"Death Investigation\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Usia ketika meninggal (tahun)\",\n \"reference\": \"urn:uuid:52917cc9-15f7-4373-932b-3b0915a517b7\"\n },\n {\n \"display\": \"Tanggal Meninggal\",\n \"reference\": \"urn:uuid:d3986419-1df5-49e7-a8f7-49f3f429c084\"\n },\n {\n \"display\": \"Masa Terjadi Kematian Ibu\",\n \"reference\": \"urn:uuid:e09c9a1b-de7f-467b-877a-1dfb937b36e6\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"urn:uuid:93dc613b-22ad-491c-8017-ead734a62769\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"urn:uuid:6ce43fac-05b6-4435-9ff6-2af2cdbac608\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"urn:uuid:55299c3f-1c6e-4011-b77a-eefb52027a62\"\n },\n {\n \"display\": \"Paritas\",\n \"reference\": \"urn:uuid:ed0bbc43-c36e-4a17-b012-9be07217a452\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"urn:uuid:12a838bb-a2fa-4ad6-b81e-cce6295a1973\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"urn:uuid:62c7bc1d-cbab-4cf1-b223-192e3d6bf5a5\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Composition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:52917cc9-15f7-4373-932b-3b0915a517b7\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39016-1\",\n \"display\": \"Age at death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:30:00+00:00\",\n \"issued\": \"2023-06-22T07:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d3986419-1df5-49e7-a8f7-49f3f429c084\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:10:00+00:00\",\n \"issued\": \"2023-06-22T14:10:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T14:10:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:e09c9a1b-de7f-467b-877a-1dfb937b36e6\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000026\",\n \"display\": \"Masa terjadi Kematian Ibu\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:32:00+00:00\",\n \"issued\": \"2023-06-22T07:32:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1156679005\",\n \"display\": \"Maternal antenatal period\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:93dc613b-22ad-491c-8017-ead734a62769\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"V01\",\n \"display\": \"Pedestrian injured in collision with pedal cycle\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6ce43fac-05b6-4435-9ff6-2af2cdbac608\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:34:00+00:00\",\n \"issued\": \"2023-06-22T07:34:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:55299c3f-1c6e-4011-b77a-eefb52027a62\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:35:00+00:00\",\n \"issued\": \"2023-06-22T07:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 2\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ed0bbc43-c36e-4a17-b012-9be07217a452\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:36:00+00:00\",\n \"issued\": \"2023-06-22T07:36:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:12a838bb-a2fa-4ad6-b81e-cce6295a1973\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:37:00+00:00\",\n \"issued\": \"2023-06-22T07:37:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:62c7bc1d-cbab-4cf1-b223-192e3d6bf5a5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:38:00+00:00\",\n \"issued\": \"2023-06-22T07:38:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 7,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:607721d9-a8be-4c86-bfca-6cd574f72c59\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02\",\n \"display\": \"Encounter for administrative examination\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T07:39:00+00:00\",\n \"recordedDate\": \"2023-06-22T07:39:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:{{Encounter_Ibu_uuid}}\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"{{Location_Poli_Name}}\",\n \"reference\": \"Location/{{Location_Poli_id}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"status\": \"in-progress\"\n },\n {\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"urn:uuid:607721d9-a8be-4c86-bfca-6cd574f72c59\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"response": [
{
"name": "Bundle - Pelaporan Kematian Ibu",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:58959850-7cfb-4100-bbfa-67dd64efd1a6\",\n \"resource\": {\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720001\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000001\",\n \"display\": \"Formulir Informasi Kematian Maternal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Maternal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"Dr. John Doe\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"Death Investigation\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Usia ketika meninggal (tahun)\",\n \"reference\": \"urn:uuid:52917cc9-15f7-4373-932b-3b0915a517b7\"\n },\n {\n \"display\": \"Tanggal Meninggal\",\n \"reference\": \"urn:uuid:d3986419-1df5-49e7-a8f7-49f3f429c084\"\n },\n {\n \"display\": \"Masa Terjadi Kematian Ibu\",\n \"reference\": \"urn:uuid:e09c9a1b-de7f-467b-877a-1dfb937b36e6\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"urn:uuid:93dc613b-22ad-491c-8017-ead734a62769\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"urn:uuid:6ce43fac-05b6-4435-9ff6-2af2cdbac608\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"urn:uuid:55299c3f-1c6e-4011-b77a-eefb52027a62\"\n },\n {\n \"display\": \"Paritas\",\n \"reference\": \"urn:uuid:ed0bbc43-c36e-4a17-b012-9be07217a452\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"urn:uuid:12a838bb-a2fa-4ad6-b81e-cce6295a1973\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"urn:uuid:62c7bc1d-cbab-4cf1-b223-192e3d6bf5a5\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Composition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:52917cc9-15f7-4373-932b-3b0915a517b7\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39016-1\",\n \"display\": \"Age at death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:30:00+00:00\",\n \"issued\": \"2023-06-22T07:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d3986419-1df5-49e7-a8f7-49f3f429c084\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:10:00+00:00\",\n \"issued\": \"2023-06-22T14:10:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T14:10:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:e09c9a1b-de7f-467b-877a-1dfb937b36e6\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000026\",\n \"display\": \"Masa terjadi Kematian Ibu\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:32:00+00:00\",\n \"issued\": \"2023-06-22T07:32:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1156679005\",\n \"display\": \"Maternal antenatal period\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:93dc613b-22ad-491c-8017-ead734a62769\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"V01\",\n \"display\": \"Pedestrian injured in collision with pedal cycle\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6ce43fac-05b6-4435-9ff6-2af2cdbac608\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:34:00+00:00\",\n \"issued\": \"2023-06-22T07:34:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:55299c3f-1c6e-4011-b77a-eefb52027a62\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:35:00+00:00\",\n \"issued\": \"2023-06-22T07:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 2\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ed0bbc43-c36e-4a17-b012-9be07217a452\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:36:00+00:00\",\n \"issued\": \"2023-06-22T07:36:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:12a838bb-a2fa-4ad6-b81e-cce6295a1973\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:37:00+00:00\",\n \"issued\": \"2023-06-22T07:37:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:62c7bc1d-cbab-4cf1-b223-192e3d6bf5a5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:38:00+00:00\",\n \"issued\": \"2023-06-22T07:38:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 7,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:607721d9-a8be-4c86-bfca-6cd574f72c59\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02\",\n \"display\": \"Encounter for administrative examination\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T07:39:00+00:00\",\n \"recordedDate\": \"2023-06-22T07:39:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:{{Encounter_Ibu_uuid}}\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"{{Location_Poli_Name}}\",\n \"reference\": \"Location/{{Location_Poli_id}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"status\": \"in-progress\"\n },\n {\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"urn:uuid:607721d9-a8be-4c86-bfca-6cd574f72c59\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Composition/33c3b71b-89a5-4469-ba4d-8131b719f8a8/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Composition\",\n \"resourceID\": \"33c3b71b-89a5-4469-ba4d-8131b719f8a8\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/cd8132ea-77cd-4cb8-ab81-f2644b1feb92/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"cd8132ea-77cd-4cb8-ab81-f2644b1feb92\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/c9524a8f-d28e-4960-9500-325bcbf376f5/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"c9524a8f-d28e-4960-9500-325bcbf376f5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/7e126566-e516-444a-94bb-faa71bdbd927/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"7e126566-e516-444a-94bb-faa71bdbd927\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/14d69bb0-c80e-450b-b90a-59afe78e4a55/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"14d69bb0-c80e-450b-b90a-59afe78e4a55\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/477260f2-8e2e-4704-bf62-d6708230deb8/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"477260f2-8e2e-4704-bf62-d6708230deb8\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/5ab935b4-7d09-4423-84f6-4341c7127a93/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"5ab935b4-7d09-4423-84f6-4341c7127a93\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/b1e3ce15-5b2a-4b19-b813-b8b4ae3e2cb9/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"b1e3ce15-5b2a-4b19-b813-b8b4ae3e2cb9\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/4191df43-eedb-4e03-95bb-2f4ce0c25836/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"4191df43-eedb-4e03-95bb-2f4ce0c25836\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/e637d281-9e4e-40d4-a344-ecac9e49d3c5/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"e637d281-9e4e-40d4-a344-ecac9e49d3c5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/ecb16202-2d78-4f97-9b1e-8d55207ce122/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"ecb16202-2d78-4f97-9b1e-8d55207ce122\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/ceda16e5-29c5-48eb-ba0e-9f002768cdfe/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Encounter\",\n \"resourceID\": \"ceda16e5-29c5-48eb-ba0e-9f002768cdfe\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction-response\",\n \"total\": 12,\n}"
}
]
},
{
"name": "Bundle - Pelaporan Kematian Ibu",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:58959850-7cfb-4100-bbfa-67dd64efd1a6\",\n \"resource\": {\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720001\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000001\",\n \"display\": \"Formulir Informasi Kematian Maternal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Maternal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"Dr. John Doe\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"Death Investigation\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Usia ketika meninggal (tahun)\",\n \"reference\": \"urn:uuid:52917cc9-15f7-4373-932b-3b0915a517b7\"\n },\n {\n \"display\": \"Tanggal Meninggal\",\n \"reference\": \"urn:uuid:d3986419-1df5-49e7-a8f7-49f3f429c084\"\n },\n {\n \"display\": \"Masa Terjadi Kematian Ibu\",\n \"reference\": \"urn:uuid:e09c9a1b-de7f-467b-877a-1dfb937b36e6\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"urn:uuid:93dc613b-22ad-491c-8017-ead734a62769\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"urn:uuid:6ce43fac-05b6-4435-9ff6-2af2cdbac608\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"urn:uuid:55299c3f-1c6e-4011-b77a-eefb52027a62\"\n },\n {\n \"display\": \"Paritas\",\n \"reference\": \"urn:uuid:ed0bbc43-c36e-4a17-b012-9be07217a452\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"urn:uuid:12a838bb-a2fa-4ad6-b81e-cce6295a1973\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"urn:uuid:62c7bc1d-cbab-4cf1-b223-192e3d6bf5a5\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Composition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:52917cc9-15f7-4373-932b-3b0915a517b7\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39016-1\",\n \"display\": \"Age at death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:30:00+00:00\",\n \"issued\": \"2023-06-22T07:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d3986419-1df5-49e7-a8f7-49f3f429c084\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:10:00+00:00\",\n \"issued\": \"2023-06-22T14:10:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T14:10:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:e09c9a1b-de7f-467b-877a-1dfb937b36e6\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000026\",\n \"display\": \"Masa terjadi Kematian Ibu\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:32:00+00:00\",\n \"issued\": \"2023-06-22T07:32:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1156679005\",\n \"display\": \"Maternal antenatal period\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:93dc613b-22ad-491c-8017-ead734a62769\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"V01\",\n \"display\": \"Pedestrian injured in collision with pedal cycle\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6ce43fac-05b6-4435-9ff6-2af2cdbac608\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:34:00+00:00\",\n \"issued\": \"2023-06-22T07:34:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:55299c3f-1c6e-4011-b77a-eefb52027a62\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:35:00+00:00\",\n \"issued\": \"2023-06-22T07:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 2\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ed0bbc43-c36e-4a17-b012-9be07217a452\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:36:00+00:00\",\n \"issued\": \"2023-06-22T07:36:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:12a838bb-a2fa-4ad6-b81e-cce6295a1973\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:37:00+00:00\",\n \"issued\": \"2023-06-22T07:37:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:62c7bc1d-cbab-4cf1-b223-192e3d6bf5a5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:38:00+00:00\",\n \"issued\": \"2023-06-22T07:38:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 7,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:607721d9-a8be-4c86-bfca-6cd574f72c59\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02\",\n \"display\": \"Encounter for administrative examination\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T07:39:00+00:00\",\n \"recordedDate\": \"2023-06-22T07:39:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:{{Encounter_Ibu_uuid}}\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"{{Location_Poli_Name}}\",\n \"reference\": \"Location/{{Location_Poli_id}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"status\": \"in-progress\"\n },\n {\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"urn:uuid:607721d9-a8be-4c86-bfca-6cd574f72c59\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"response": [
{
"name": "Bundle - Pelaporan Kematian Ibu",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:58959850-7cfb-4100-bbfa-67dd64efd1a6\",\n \"resource\": {\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720001\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000001\",\n \"display\": \"Formulir Informasi Kematian Maternal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Maternal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"Dr. John Doe\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"Death Investigation\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Usia ketika meninggal (tahun)\",\n \"reference\": \"urn:uuid:52917cc9-15f7-4373-932b-3b0915a517b7\"\n },\n {\n \"display\": \"Tanggal Meninggal\",\n \"reference\": \"urn:uuid:d3986419-1df5-49e7-a8f7-49f3f429c084\"\n },\n {\n \"display\": \"Masa Terjadi Kematian Ibu\",\n \"reference\": \"urn:uuid:e09c9a1b-de7f-467b-877a-1dfb937b36e6\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"urn:uuid:93dc613b-22ad-491c-8017-ead734a62769\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"urn:uuid:6ce43fac-05b6-4435-9ff6-2af2cdbac608\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"urn:uuid:55299c3f-1c6e-4011-b77a-eefb52027a62\"\n },\n {\n \"display\": \"Paritas\",\n \"reference\": \"urn:uuid:ed0bbc43-c36e-4a17-b012-9be07217a452\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"urn:uuid:12a838bb-a2fa-4ad6-b81e-cce6295a1973\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"urn:uuid:62c7bc1d-cbab-4cf1-b223-192e3d6bf5a5\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Composition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:52917cc9-15f7-4373-932b-3b0915a517b7\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39016-1\",\n \"display\": \"Age at death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:30:00+00:00\",\n \"issued\": \"2023-06-22T07:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d3986419-1df5-49e7-a8f7-49f3f429c084\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:10:00+00:00\",\n \"issued\": \"2023-06-22T14:10:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T14:10:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:e09c9a1b-de7f-467b-877a-1dfb937b36e6\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000026\",\n \"display\": \"Masa terjadi Kematian Ibu\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:32:00+00:00\",\n \"issued\": \"2023-06-22T07:32:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1156679005\",\n \"display\": \"Maternal antenatal period\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:93dc613b-22ad-491c-8017-ead734a62769\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:33:00+00:00\",\n \"issued\": \"2023-06-22T07:33:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"GROUP-9\",\n \"display\": \"Coincidental causes\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-mm\",\n \"code\": \"V01\",\n \"display\": \"Pedestrian injured in collision with pedal cycle\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6ce43fac-05b6-4435-9ff6-2af2cdbac608\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:34:00+00:00\",\n \"issued\": \"2023-06-22T07:34:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:55299c3f-1c6e-4011-b77a-eefb52027a62\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:35:00+00:00\",\n \"issued\": \"2023-06-22T07:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 2\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ed0bbc43-c36e-4a17-b012-9be07217a452\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:36:00+00:00\",\n \"issued\": \"2023-06-22T07:36:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:12a838bb-a2fa-4ad6-b81e-cce6295a1973\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:37:00+00:00\",\n \"issued\": \"2023-06-22T07:37:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:62c7bc1d-cbab-4cf1-b223-192e3d6bf5a5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T07:38:00+00:00\",\n \"issued\": \"2023-06-22T07:38:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 7,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:607721d9-a8be-4c86-bfca-6cd574f72c59\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02\",\n \"display\": \"Encounter for administrative examination\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T07:39:00+00:00\",\n \"recordedDate\": \"2023-06-22T07:39:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:{{Encounter_Ibu_uuid}}\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"{{Location_Poli_Name}}\",\n \"reference\": \"Location/{{Location_Poli_id}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"status\": \"in-progress\"\n },\n {\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"urn:uuid:607721d9-a8be-4c86-bfca-6cd574f72c59\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Composition/33c3b71b-89a5-4469-ba4d-8131b719f8a8/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Composition\",\n \"resourceID\": \"33c3b71b-89a5-4469-ba4d-8131b719f8a8\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/cd8132ea-77cd-4cb8-ab81-f2644b1feb92/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"cd8132ea-77cd-4cb8-ab81-f2644b1feb92\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/c9524a8f-d28e-4960-9500-325bcbf376f5/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"c9524a8f-d28e-4960-9500-325bcbf376f5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/7e126566-e516-444a-94bb-faa71bdbd927/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"7e126566-e516-444a-94bb-faa71bdbd927\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/14d69bb0-c80e-450b-b90a-59afe78e4a55/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"14d69bb0-c80e-450b-b90a-59afe78e4a55\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/477260f2-8e2e-4704-bf62-d6708230deb8/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"477260f2-8e2e-4704-bf62-d6708230deb8\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/5ab935b4-7d09-4423-84f6-4341c7127a93/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"5ab935b4-7d09-4423-84f6-4341c7127a93\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/b1e3ce15-5b2a-4b19-b813-b8b4ae3e2cb9/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"b1e3ce15-5b2a-4b19-b813-b8b4ae3e2cb9\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/4191df43-eedb-4e03-95bb-2f4ce0c25836/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"4191df43-eedb-4e03-95bb-2f4ce0c25836\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/e637d281-9e4e-40d4-a344-ecac9e49d3c5/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"e637d281-9e4e-40d4-a344-ecac9e49d3c5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/ecb16202-2d78-4f97-9b1e-8d55207ce122/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"ecb16202-2d78-4f97-9b1e-8d55207ce122\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ0MzIzNzY1NTI1NDAwMA\\\"\",\n \"lastModified\": \"2024-08-23T20:00:37.655254+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/ceda16e5-29c5-48eb-ba0e-9f002768cdfe/_history/MTcyNDQ0MzIzNzY1NTI1NDAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Encounter\",\n \"resourceID\": \"ceda16e5-29c5-48eb-ba0e-9f002768cdfe\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction-response\",\n \"total\": 12,\n}"
}
]
}
]
},
{
"name": "02. Pelaporan Kematian Bayi",
"item": [
{
"name": "2a. Form Lahir Mati",
"item": [
{
"name": "00. Mencari Data Pasien dan Nakes",
"item": [
{
"name": "Patient",
"item": [
{
"name": "Patient - Search NIK",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"pm.collectionVariables.set(\"Patient_id\", data.id);\r",
"pm.collectionVariables.set(\"Patient_Name\", data.name[0].text);"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik|9104224509000003",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|9104224509000003"
}
]
}
},
"response": [
{
"name": "Patient - Search NIK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik|9104224509000003",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|9104224509000003"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P00805884304\",\n \"resource\": {\n \"active\": true,\n \"id\": \"P00805884304\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P00805884304\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/16b2810b-5376-40b8-a742-7d47acf6575f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/30a85c2a-e3e2-4ed0-8967-e84b42798727\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cff02c37-fc93-497c-b18f-cfa14d5f6ad6\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35faa912-6bd2-4216-93fd-f9571454649c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b98f674c-86d1-4179-95ac-251aa2973bf7\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/f67a5adc-b97a-4114-8ba0-fdc9fa2b7385\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/30cae342-d2a8-4fa7-8ae7-73ff5bed852e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8f889a29-489e-46f0-8c7e-24575dd7dfdc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d2a0f0c4-10ca-4dc8-bb21-edf18b786e8c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e8eee4b6-35e5-4b21-a625-3e5890019f40\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/528b416a-7837-4bb3-ab56-6e6fc55c5020\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/46e303d4-3e92-46a0-ba43-7c146d785eb9\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ac16b77a-4b9c-46e7-a64d-08720a94535c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/03128cab-a456-4a58-86f2-abd12c3ac96b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/fb4f1df7-09d5-45a1-9e72-9155861cec56\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d12ede74-6fe4-43fb-853c-d5bb784d8b38\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/70e15faa-61a5-46df-804f-dfe49dd7f939\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/610f5a79-8873-4591-84cb-12b1cff45a3f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/da11b72d-bfa4-4c9d-bca8-bf4651fee08a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8e1fab89-3d0a-47ad-a07c-baeb109fa4a3\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/739ee4c5-0a32-4229-9b7e-7680e2d79d8d\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/96401445-8070-48bb-939a-8c34ebbb2558\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5edacb4d-c612-4963-a07c-cf0f4697bfe8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ed0896f0-3357-492d-9571-5c522aa8829c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c9f5b362-5f43-42ad-86cb-0c5afdc32e07\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/9a431e01-bd82-40b0-a35c-0cccd5b18f89\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/399e0efe-cc9b-4b10-b54f-83eb7e11217d\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/743e9d9e-4ba6-4ad6-b7bb-fb48a4db92a8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/54dc1897-69c9-4a37-ab9d-7b6581b9d22e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/981cac3b-1bdd-43d3-86ef-418435a794c8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5e7f6d8e-1008-41d0-9306-8b6e877bcc7f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ab7763c9-ef93-4432-af3f-b61f9452dcbb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/facc6a19-53ff-4a1f-a0db-397761cc6796\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/3f3b705c-87fc-4e1f-b2b6-2fb24104a20e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a0c6ad92-3b61-40e9-be3d-4feb1702d9eb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c7c216db-229b-4ed7-ae12-5df9a5055187\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/feb319ee-ad49-4444-8e85-423810d56a74\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d38ec4d3-ecf9-42c0-80be-8194cad5823e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b8012d92-da09-43e3-9b5c-6ce8196b6b69\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/3f7222bf-3920-4554-9c0c-1b97eecbf375\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a367f24e-5984-4cfa-aa84-235dd6ccdb56\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/67decc96-3cd5-4773-be61-ebfcece5689e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/565c190d-1663-4cdf-a901-a285e9f96daf\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8608ca2b-7ff9-4291-90fc-91b8932323b4\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/29d36733-748a-48b6-b943-399d2e4b3b01\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/13c28f5e-9b93-4b94-8fb5-4d3ee10df7c8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a5df482d-b422-495d-82ff-81e0d77ab944\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b83ac473-8efa-42f4-9f5a-3382b05b23a7\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/123dec16-c505-4215-b51f-770eb6087b9a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ab36ed9-e132-4bf0-947c-bd12f3765ab5\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e8903ab6-b1e2-489c-80bc-bbf4a1e804b8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8a68e8c1-2a43-4310-ad78-d9554d11f650\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5703e279-6aed-4c7c-bb87-98d46592a420\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/43b9e879-dcfd-444e-a708-6c0b0c959d5a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/114b953e-358e-4681-98e3-277cea6743f6\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-02-06T07:26:10.395345+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTcwNzIwNDM3MDM5NTM0NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"patient 3\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - Bayi Search NIK Ibu",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik-ibu|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik-ibu|367400001111222"
}
]
}
},
"response": [
{
"name": "Patient - Bayi Search NIK Ibu",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik-ibu|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik-ibu|367400001111222"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102825\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102825\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102825\"\n }\n ],\n \"language\": \"id\",\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-10-17T06:26:21.585017+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY5NzUyMzk4MTU4NTAxNzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Sambo\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/ee3bff43-6b72-4a72-a41a-af4164e0eacf\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"2024-04-24-05-24\",\n \"id\": \"ee3bff43-6b72-4a72-a41a-af4164e0eacf\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"use\": \"official\",\n \"value\": \"A01111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"use\": \"official\",\n \"value\": \"367400001111111\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029103384\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-25T07:06:42.937195+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NDk5ODQwMjkzNzE5NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"John Smith\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102814\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102814\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102814\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T13:18:43.477704+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI4MTUyMzQ3NzcwNDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Roni\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102803\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102803\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102803\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T13:13:49.966892+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI4MTIyOTk2Njg5MjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Hulk\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102778\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102778\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102778\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T12:18:53.600353+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3NzkzMzYwMDM1MzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Stark\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102767\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102767\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102767\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:11:12.338686+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3Mzg3MjMzODY4NjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Toni\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102756\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102756\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102756\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:06:36.858381+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzU5Njg1ODM4MTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Budi\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102745\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102745\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102745\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:05:37.879975+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzUzNzg3OTk3NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Mardigu\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102734\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102734\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102734\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:00:54.720631+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzI1NDcyMDYzMTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dodi\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102723\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102723\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102723\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T10:59:48.626894+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzE4ODYyNjg5NDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Anang\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 10,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - Search Name, Birthdate, Gender",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"var Name = \"\";\r",
"var name = data.name;\r",
"name.forEach(name => {\r",
" if(name.use == \"official\"){Name = name.text}\r",
"});\r",
"pm.collectionVariables.set('Patient_id', data.id);\r",
"pm.collectionVariables.set('Patient_Name', 'Ny. Jane Smith');"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?name=patient 3&birthdate=1993-09-05&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 3"
},
{
"key": "birthdate",
"value": "1993-09-05"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"response": [
{
"name": "Patient - Search Name, Birthdate, Gender",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 1&birthdate=1980-12-03&gender=male",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 1"
},
{
"key": "birthdate",
"value": "1980-12-03"
},
{
"key": "gender",
"value": "male"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02478375538\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"MUNA\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"74\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"26\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1008\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"KEL.TOMBULA\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1980-12-03\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"male\",\n \"id\": \"P02478375538\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02478375538\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"9271060312000001\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7af11905-8d49-47dc-a72b-bca4948c01e7\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-31T06:40:40.038378+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NTUxNTI0MDAzODM3ODAwMA\"\n },\n \"multipleBirthBoolean\": false,\n \"name\": [\n {\n \"text\": \"patient 1\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - By ID",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "100000030015"
}
]
}
},
"response": [
{
"name": "Patient - By ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "100000030015"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"id\": \"100000030015\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"100000030015\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-16T22:21:10.608807+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NDI3NTY3MDYwODgwNzAwMA\"\n },\n \"resourceType\": \"Patient\"\n}"
}
]
},
{
"name": "Patient - Create by NIK",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Patient\",\n \"meta\": {\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ]\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"value\": \"3174031002890009\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"value\": \"A01111222\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"value\": \"367400001111111\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"use\": \"official\",\n \"text\": \"John Smith\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"08123456789\",\n \"use\": \"mobile\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"+622123456789\",\n \"use\": \"home\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1945-11-17\",\n \"deceasedBoolean\": false,\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"31\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3174\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"317402\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174021003\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"002\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"002\"\n }\n ]\n }\n ]\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\",\n \"code\": \"M\",\n \"display\": \"Married\"\n }\n ],\n \"text\": \"Married\"\n },\n \"multipleBirthInteger\": 0,\n \"contact\": [\n {\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"C\"\n }\n ]\n }\n ],\n \"name\": {\n \"use\": \"official\",\n \"text\": \"Jane Smith\"\n },\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"0690383372\",\n \"use\": \"mobile\"\n }\n ]\n }\n ],\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"system\": \"urn:ietf:bcp:47\",\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
]
}
},
"response": [
{
"name": "NIK Not Exist",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Patient\",\n \"meta\": {\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ]\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"value\": \"3174031002890009\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"value\": \"A01111222\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"value\": \"367400001111111\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"use\": \"official\",\n \"text\": \"John Smith\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"08123456789\",\n \"use\": \"mobile\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"+622123456789\",\n \"use\": \"home\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1945-11-17\",\n \"deceasedBoolean\": false,\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"31\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3174\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"317402\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174021003\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"002\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"002\"\n }\n ]\n }\n ]\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\",\n \"code\": \"M\",\n \"display\": \"Married\"\n }\n ],\n \"text\": \"Married\"\n },\n \"multipleBirthInteger\": 0,\n \"contact\": [\n {\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"C\"\n }\n ]\n }\n ],\n \"name\": {\n \"use\": \"official\",\n \"text\": \"Jane Smith\"\n },\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"0690383372\",\n \"use\": \"mobile\"\n }\n ]\n }\n ],\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"system\": \"urn:ietf:bcp:47\",\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"success\": false,\n \"message\": \"Citizen Not Exists\"\n}"
}
]
},
{
"name": "Patient - Search NIK",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"pm.collectionVariables.set(\"Patient_id\", data.id);\r",
"pm.collectionVariables.set(\"Patient_Name\", data.name[0].text);"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik|9104224509000003",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|9104224509000003"
}
]
}
},
"response": [
{
"name": "Patient - Search NIK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik|9104224509000003",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|9104224509000003"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P00805884304\",\n \"resource\": {\n \"active\": true,\n \"id\": \"P00805884304\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P00805884304\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/16b2810b-5376-40b8-a742-7d47acf6575f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/30a85c2a-e3e2-4ed0-8967-e84b42798727\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cff02c37-fc93-497c-b18f-cfa14d5f6ad6\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35faa912-6bd2-4216-93fd-f9571454649c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b98f674c-86d1-4179-95ac-251aa2973bf7\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/f67a5adc-b97a-4114-8ba0-fdc9fa2b7385\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/30cae342-d2a8-4fa7-8ae7-73ff5bed852e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8f889a29-489e-46f0-8c7e-24575dd7dfdc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d2a0f0c4-10ca-4dc8-bb21-edf18b786e8c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e8eee4b6-35e5-4b21-a625-3e5890019f40\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/528b416a-7837-4bb3-ab56-6e6fc55c5020\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/46e303d4-3e92-46a0-ba43-7c146d785eb9\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ac16b77a-4b9c-46e7-a64d-08720a94535c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/03128cab-a456-4a58-86f2-abd12c3ac96b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/fb4f1df7-09d5-45a1-9e72-9155861cec56\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d12ede74-6fe4-43fb-853c-d5bb784d8b38\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/70e15faa-61a5-46df-804f-dfe49dd7f939\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/610f5a79-8873-4591-84cb-12b1cff45a3f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/da11b72d-bfa4-4c9d-bca8-bf4651fee08a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8e1fab89-3d0a-47ad-a07c-baeb109fa4a3\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/739ee4c5-0a32-4229-9b7e-7680e2d79d8d\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/96401445-8070-48bb-939a-8c34ebbb2558\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5edacb4d-c612-4963-a07c-cf0f4697bfe8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ed0896f0-3357-492d-9571-5c522aa8829c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c9f5b362-5f43-42ad-86cb-0c5afdc32e07\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/9a431e01-bd82-40b0-a35c-0cccd5b18f89\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/399e0efe-cc9b-4b10-b54f-83eb7e11217d\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/743e9d9e-4ba6-4ad6-b7bb-fb48a4db92a8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/54dc1897-69c9-4a37-ab9d-7b6581b9d22e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/981cac3b-1bdd-43d3-86ef-418435a794c8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5e7f6d8e-1008-41d0-9306-8b6e877bcc7f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ab7763c9-ef93-4432-af3f-b61f9452dcbb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/facc6a19-53ff-4a1f-a0db-397761cc6796\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/3f3b705c-87fc-4e1f-b2b6-2fb24104a20e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a0c6ad92-3b61-40e9-be3d-4feb1702d9eb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c7c216db-229b-4ed7-ae12-5df9a5055187\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/feb319ee-ad49-4444-8e85-423810d56a74\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d38ec4d3-ecf9-42c0-80be-8194cad5823e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b8012d92-da09-43e3-9b5c-6ce8196b6b69\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/3f7222bf-3920-4554-9c0c-1b97eecbf375\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a367f24e-5984-4cfa-aa84-235dd6ccdb56\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/67decc96-3cd5-4773-be61-ebfcece5689e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/565c190d-1663-4cdf-a901-a285e9f96daf\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8608ca2b-7ff9-4291-90fc-91b8932323b4\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/29d36733-748a-48b6-b943-399d2e4b3b01\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/13c28f5e-9b93-4b94-8fb5-4d3ee10df7c8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a5df482d-b422-495d-82ff-81e0d77ab944\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b83ac473-8efa-42f4-9f5a-3382b05b23a7\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/123dec16-c505-4215-b51f-770eb6087b9a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ab36ed9-e132-4bf0-947c-bd12f3765ab5\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e8903ab6-b1e2-489c-80bc-bbf4a1e804b8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8a68e8c1-2a43-4310-ad78-d9554d11f650\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5703e279-6aed-4c7c-bb87-98d46592a420\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/43b9e879-dcfd-444e-a708-6c0b0c959d5a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/114b953e-358e-4681-98e3-277cea6743f6\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-02-06T07:26:10.395345+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTcwNzIwNDM3MDM5NTM0NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"patient 3\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - By ID",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "100000030015"
}
]
}
},
"response": [
{
"name": "Patient - By ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "100000030015"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"id\": \"100000030015\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"100000030015\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-16T22:21:10.608807+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NDI3NTY3MDYwODgwNzAwMA\"\n },\n \"resourceType\": \"Patient\"\n}"
}
]
},
{
"name": "Patient - Search Name, Birthdate, Gender",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"var Name = \"\";\r",
"var name = data.name;\r",
"name.forEach(name => {\r",
" if(name.use == \"official\"){Name = name.text}\r",
"});\r",
"pm.collectionVariables.set('Patient_id', data.id);\r",
"pm.collectionVariables.set('Patient_Name', 'Ny. Jane Smith');"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?name=patient 3&birthdate=1993-09-05&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 3"
},
{
"key": "birthdate",
"value": "1993-09-05"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"response": [
{
"name": "Patient - Search Name, Birthdate, Gender",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 1&birthdate=1980-12-03&gender=male",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 1"
},
{
"key": "birthdate",
"value": "1980-12-03"
},
{
"key": "gender",
"value": "male"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02478375538\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"MUNA\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"74\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"26\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1008\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"KEL.TOMBULA\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1980-12-03\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"male\",\n \"id\": \"P02478375538\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02478375538\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"9271060312000001\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7af11905-8d49-47dc-a72b-bca4948c01e7\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-31T06:40:40.038378+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NTUxNTI0MDAzODM3ODAwMA\"\n },\n \"multipleBirthBoolean\": false,\n \"name\": [\n {\n \"text\": \"patient 1\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - Bayi Search NIK Ibu",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik-ibu|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik-ibu|367400001111222"
}
]
}
},
"response": [
{
"name": "Patient - Bayi Search NIK Ibu",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik-ibu|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik-ibu|367400001111222"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102825\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102825\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102825\"\n }\n ],\n \"language\": \"id\",\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-10-17T06:26:21.585017+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY5NzUyMzk4MTU4NTAxNzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Sambo\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/ee3bff43-6b72-4a72-a41a-af4164e0eacf\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"2024-04-24-05-24\",\n \"id\": \"ee3bff43-6b72-4a72-a41a-af4164e0eacf\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"use\": \"official\",\n \"value\": \"A01111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"use\": \"official\",\n \"value\": \"367400001111111\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029103384\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-25T07:06:42.937195+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NDk5ODQwMjkzNzE5NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"John Smith\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102814\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102814\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102814\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T13:18:43.477704+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI4MTUyMzQ3NzcwNDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Roni\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102803\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102803\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102803\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T13:13:49.966892+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI4MTIyOTk2Njg5MjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Hulk\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102778\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102778\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102778\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T12:18:53.600353+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3NzkzMzYwMDM1MzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Stark\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102767\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102767\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102767\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:11:12.338686+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3Mzg3MjMzODY4NjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Toni\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102756\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102756\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102756\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:06:36.858381+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzU5Njg1ODM4MTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Budi\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102745\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102745\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102745\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:05:37.879975+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzUzNzg3OTk3NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Mardigu\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102734\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102734\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102734\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:00:54.720631+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzI1NDcyMDYzMTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dodi\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102723\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102723\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102723\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T10:59:48.626894+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzE4ODYyNjg5NDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Anang\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 10,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - Create by NIK",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Patient\",\n \"meta\": {\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ]\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"value\": \"3174031002890009\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"value\": \"A01111222\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"value\": \"367400001111111\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"use\": \"official\",\n \"text\": \"John Smith\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"08123456789\",\n \"use\": \"mobile\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"+622123456789\",\n \"use\": \"home\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1945-11-17\",\n \"deceasedBoolean\": false,\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"31\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3174\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"317402\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174021003\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"002\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"002\"\n }\n ]\n }\n ]\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\",\n \"code\": \"M\",\n \"display\": \"Married\"\n }\n ],\n \"text\": \"Married\"\n },\n \"multipleBirthInteger\": 0,\n \"contact\": [\n {\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"C\"\n }\n ]\n }\n ],\n \"name\": {\n \"use\": \"official\",\n \"text\": \"Jane Smith\"\n },\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"0690383372\",\n \"use\": \"mobile\"\n }\n ]\n }\n ],\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"system\": \"urn:ietf:bcp:47\",\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
]
}
},
"response": [
{
"name": "NIK Not Exist",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Patient\",\n \"meta\": {\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ]\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"value\": \"3174031002890009\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"value\": \"A01111222\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"value\": \"367400001111111\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"use\": \"official\",\n \"text\": \"John Smith\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"08123456789\",\n \"use\": \"mobile\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"+622123456789\",\n \"use\": \"home\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1945-11-17\",\n \"deceasedBoolean\": false,\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"31\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3174\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"317402\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174021003\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"002\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"002\"\n }\n ]\n }\n ]\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\",\n \"code\": \"M\",\n \"display\": \"Married\"\n }\n ],\n \"text\": \"Married\"\n },\n \"multipleBirthInteger\": 0,\n \"contact\": [\n {\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"C\"\n }\n ]\n }\n ],\n \"name\": {\n \"use\": \"official\",\n \"text\": \"Jane Smith\"\n },\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"0690383372\",\n \"use\": \"mobile\"\n }\n ]\n }\n ],\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"system\": \"urn:ietf:bcp:47\",\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"success\": false,\n \"message\": \"Citizen Not Exists\"\n}"
}
]
}
]
},
{
"name": "Practitioner",
"item": [
{
"name": "Practitioner - Search NIK",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner?identifier=https://fhir.kemkes.go.id/id/nik|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|367400001111222"
}
]
}
},
"response": [
{
"name": "Practitioner - Search NIK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner?identifier=https://fhir.kemkes.go.id/id/nik|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|367400001111222"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000010\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000010\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000010\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:04:31.188115+00:00\",\n \"versionid\": \"MTY2OTE3MjY3MTE4ODExNTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy Third Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000009\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000009\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000009\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:04:02.773442+00:00\",\n \"versionid\": \"MTY2OTE3MjY0Mjc3MzQ0MjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothies Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000008\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000008\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000008\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:03:35.594418+00:00\",\n \"versionid\": \"MTY2OTE3MjYxNTU5NDQxODAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000007\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000007\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000007\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:00:56.337787+00:00\",\n \"versionid\": \"MTY2OTE3MjQ1NjMzNzc4NzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000006\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000006\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000006\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:00:19.536151+00:00\",\n \"versionid\": \"MTY2OTE3MjQxOTUzNjE1MTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Rus, MD.\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000005\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000005\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000005\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:54.410712+00:00\",\n \"versionid\": \"MTY2OTE3MjM5NDQxMDcxMjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Paul Therapist, PT\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000004\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000004\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000004\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:32.514793+00:00\",\n \"versionid\": \"MTY2OTE3MjM3MjUxNDc5MzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Pamela Educator, RN\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000003\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000003\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000003\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:10.522324+00:00\",\n \"versionid\": \"MTY2OTE3MjM1MDUyMjMyNDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Ray Sp.Rad.\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000001\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionid\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 9,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Practitioner - Search Name, Gender, Birthdate",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner?name=Voigt&gender=male&birthdate=1945",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "name",
"value": "Voigt"
},
{
"key": "gender",
"value": "male"
},
{
"key": "birthdate",
"value": "1945"
}
]
}
},
"response": [
{
"name": "Practitioner - Search Name, Gender, Birthdate",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner?name=Voigt&gender=male&birthdate=1945",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "name",
"value": "Voigt"
},
{
"key": "gender",
"value": "male"
},
{
"key": "birthdate",
"value": "1945"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000002\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"2000-12-12\",\n \"gender\": \"male\",\n \"id\": \"N10000002\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000002\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111223\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:44.125648+00:00\",\n \"versionid\": \"MTY2OTE3MjMyNDEyNTY0ODAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Regfristrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"2015\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000001\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionid\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 2,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Practitioner - By ID - N10000001",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Practitioner_id\", data.id)\r",
"\r",
"var fullName = \"\";\r",
"\r",
"// Check if 'name' field exists and is an array\r",
"if (Array.isArray(data.name)) {\r",
" // Find the 'official' name\r",
" let officialName = data.name.find(name => name.use === \"official\");\r",
"\r",
" // Check if an official name was found\r",
" if (officialName) {\r",
" // Concatenate prefix, text, and suffix\r",
"\r",
" // Add prefix if it exists\r",
" if (Array.isArray(officialName.prefix)) {\r",
" fullName += officialName.prefix.join(\" \") + \" \";\r",
" }\r",
"\r",
" // Add text (main part of the name)\r",
" fullName += officialName.text;\r",
"\r",
" // Add suffix if it exists\r",
" if (Array.isArray(officialName.suffix)) {\r",
" fullName += \", \" + officialName.suffix.join(\" \");\r",
" }\r",
" }\r",
"}\r",
"\r",
"pm.collectionVariables.set(\"Practitioner_Name\", 'dr. Bronsig')"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000001"
}
]
}
},
"response": [
{
"name": "Practitioner - By ID - N10000001",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000005"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000005\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000005\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-08-20T16:27:02.097059+00:00\",\n \"versionid\": \"MTY2MTAxMjgyMjA5NzA1OTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Paul Therapist, PT\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n}"
}
]
},
{
"name": "Practitioner - By ID - N10000001",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Practitioner_id\", data.id)\r",
"\r",
"var fullName = \"\";\r",
"\r",
"// Check if 'name' field exists and is an array\r",
"if (Array.isArray(data.name)) {\r",
" // Find the 'official' name\r",
" let officialName = data.name.find(name => name.use === \"official\");\r",
"\r",
" // Check if an official name was found\r",
" if (officialName) {\r",
" // Concatenate prefix, text, and suffix\r",
"\r",
" // Add prefix if it exists\r",
" if (Array.isArray(officialName.prefix)) {\r",
" fullName += officialName.prefix.join(\" \") + \" \";\r",
" }\r",
"\r",
" // Add text (main part of the name)\r",
" fullName += officialName.text;\r",
"\r",
" // Add suffix if it exists\r",
" if (Array.isArray(officialName.suffix)) {\r",
" fullName += \", \" + officialName.suffix.join(\" \");\r",
" }\r",
" }\r",
"}\r",
"\r",
"pm.collectionVariables.set(\"Practitioner_Name\", 'dr. Bronsig')"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000001"
}
]
}
},
"response": [
{
"name": "Practitioner - By ID - N10000001",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000005"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000005\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000005\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-08-20T16:27:02.097059+00:00\",\n \"versionid\": \"MTY2MTAxMjgyMjA5NzA1OTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Paul Therapist, PT\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n}"
}
]
},
{
"name": "Practitioner - Search Name, Gender, Birthdate",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner?name=Voigt&gender=male&birthdate=1945",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "name",
"value": "Voigt"
},
{
"key": "gender",
"value": "male"
},
{
"key": "birthdate",
"value": "1945"
}
]
}
},
"response": [
{
"name": "Practitioner - Search Name, Gender, Birthdate",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner?name=Voigt&gender=male&birthdate=1945",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "name",
"value": "Voigt"
},
{
"key": "gender",
"value": "male"
},
{
"key": "birthdate",
"value": "1945"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000002\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"2000-12-12\",\n \"gender\": \"male\",\n \"id\": \"N10000002\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000002\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111223\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:44.125648+00:00\",\n \"versionid\": \"MTY2OTE3MjMyNDEyNTY0ODAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Regfristrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"2015\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000001\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionid\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 2,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Practitioner - Search NIK",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner?identifier=https://fhir.kemkes.go.id/id/nik|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|367400001111222"
}
]
}
},
"response": [
{
"name": "Practitioner - Search NIK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner?identifier=https://fhir.kemkes.go.id/id/nik|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|367400001111222"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000010\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000010\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000010\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:04:31.188115+00:00\",\n \"versionid\": \"MTY2OTE3MjY3MTE4ODExNTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy Third Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000009\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000009\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000009\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:04:02.773442+00:00\",\n \"versionid\": \"MTY2OTE3MjY0Mjc3MzQ0MjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothies Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000008\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000008\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000008\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:03:35.594418+00:00\",\n \"versionid\": \"MTY2OTE3MjYxNTU5NDQxODAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000007\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000007\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000007\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:00:56.337787+00:00\",\n \"versionid\": \"MTY2OTE3MjQ1NjMzNzc4NzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000006\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000006\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000006\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:00:19.536151+00:00\",\n \"versionid\": \"MTY2OTE3MjQxOTUzNjE1MTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Rus, MD.\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000005\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000005\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000005\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:54.410712+00:00\",\n \"versionid\": \"MTY2OTE3MjM5NDQxMDcxMjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Paul Therapist, PT\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000004\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000004\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000004\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:32.514793+00:00\",\n \"versionid\": \"MTY2OTE3MjM3MjUxNDc5MzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Pamela Educator, RN\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000003\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000003\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000003\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:10.522324+00:00\",\n \"versionid\": \"MTY2OTE3MjM1MDUyMjMyNDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Ray Sp.Rad.\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000001\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionid\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 9,\n \"type\": \"searchset\"\n}"
}
]
}
]
}
]
},
{
"name": "01. Membuat Struktur Organisasi dan Lokasi",
"item": [
{
"name": "Organization - Create Divisi Perawatan",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Suborg_uuid\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Divisi Perawatan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"b0a114dd-5ecb-4e37-aa9e-294bcdf119c3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:43:21.018490+00:00\",\n \"versionId\": \"MTcyNTg2MDYwMTAxODQ5MDAwMA\"\n },\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"partOf\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000002\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"team\",\n \"display\": \"Organizational team\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "Organization - Create Poli (Org)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Konsultasi ANC\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_uuid}}\",\n \"display\": \"Divisi Kesehatan Ibu dan Anak\"\n }\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Poli (Org)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Konsultasi ANC\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_uuid}}\",\n \"display\": \"Divisi Kesehatan Ibu dan Anak\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"bc25c28f-6f05-4e09-bc59-aaf324a1e79c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:46:07.044254+00:00\",\n \"versionId\": \"MTcyNTg2MDc2NzA0NDI1NDAwMA\"\n },\n \"name\": \"Konsultasi ANC\",\n \"partOf\": {\n \"display\": \"Divisi Kesehatan Ibu dan Anak\",\n \"reference\": \"Organization/b0a114dd-5ecb-4e37-aa9e-294bcdf119c3\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"team\",\n \"display\": \"Organizational team\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "Location - Create Poli (Ruang)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_Poli}}\"\n }\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Create Poli (Ruang)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_Poli}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"id\": \"98f7d812-c035-4988-bdb4-4036db87ec14\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000002\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/bc25c28f-6f05-4e09-bc59-aaf324a1e79c\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:48:43.091610+00:00\",\n \"versionId\": \"MTcyNTg2MDkyMzA5MTYxMDAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"physicalType\": {\n \"coding\": [\n {\n \"code\": \"ro\",\n \"display\": \"Room\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\"\n }\n ]\n },\n \"position\": {\n \"altitude\": 0,\n \"latitude\": 106.83239885393944,\n \"longitude\": -6.23115426275766\n },\n \"resourceType\": \"Location\",\n \"status\": \"active\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ]\n}"
}
]
},
{
"name": "Location - Create Poli (Ruang)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_Poli}}\"\n }\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Create Poli (Ruang)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_Poli}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"id\": \"98f7d812-c035-4988-bdb4-4036db87ec14\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000002\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/bc25c28f-6f05-4e09-bc59-aaf324a1e79c\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:48:43.091610+00:00\",\n \"versionId\": \"MTcyNTg2MDkyMzA5MTYxMDAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"physicalType\": {\n \"coding\": [\n {\n \"code\": \"ro\",\n \"display\": \"Room\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\"\n }\n ]\n },\n \"position\": {\n \"altitude\": 0,\n \"latitude\": 106.83239885393944,\n \"longitude\": -6.23115426275766\n },\n \"resourceType\": \"Location\",\n \"status\": \"active\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ]\n}"
}
]
},
{
"name": "Organization - Create Divisi Perawatan",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Suborg_uuid\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Divisi Perawatan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"b0a114dd-5ecb-4e37-aa9e-294bcdf119c3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:43:21.018490+00:00\",\n \"versionId\": \"MTcyNTg2MDYwMTAxODQ5MDAwMA\"\n },\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"partOf\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000002\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"team\",\n \"display\": \"Organizational team\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "Organization - Create Poli (Org)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Konsultasi ANC\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_uuid}}\",\n \"display\": \"Divisi Kesehatan Ibu dan Anak\"\n }\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Poli (Org)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Konsultasi ANC\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_uuid}}\",\n \"display\": \"Divisi Kesehatan Ibu dan Anak\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"bc25c28f-6f05-4e09-bc59-aaf324a1e79c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:46:07.044254+00:00\",\n \"versionId\": \"MTcyNTg2MDc2NzA0NDI1NDAwMA\"\n },\n \"name\": \"Konsultasi ANC\",\n \"partOf\": {\n \"display\": \"Divisi Kesehatan Ibu dan Anak\",\n \"reference\": \"Organization/b0a114dd-5ecb-4e37-aa9e-294bcdf119c3\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"team\",\n \"display\": \"Organizational team\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\"\n }\n ]\n }\n ]\n}"
}
]
}
]
},
{
"name": "02. Pendaftaran Kunjungan Pasien",
"item": [
{
"name": "Pendaftaran Kunjungan Baru",
"item": [
{
"name": "Encounter - Kunjungan Baru",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Encounter_id\", data.id);;"
],
"type": "text/javascript",
"packages": {}
}
},
{
"listen": "prerequest",
"script": {
"exec": [
"//defining yyymmdd as currentDate's YYYYMMDD in string format\r",
"var now = new Date();\r",
"var year = now.getFullYear();\r",
"var month = String(now.getMonth() + 1).padStart(2, '0');\r",
"var day = String(now.getDate()).padStart(2, '0');\r",
"var yyyymmdd = `${year}${month}${day}`;\r",
"\r",
"//Generating 5 digits of stringified random integer to make Registration_ID number (for test use cases)\r",
"var randomInt = Math.floor(Math.random() * 100000);\r",
"var randomIntPadded = String(randomInt).padStart(5, '0');\r",
"var Registration_ID = yyyymmdd + randomIntPadded;\r",
"\r",
"//Setting CollectionVariable Registration_ID to be used\r",
"pm.collectionVariables.set(\"Registration_ID\", Registration_ID)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
]
}
},
"response": [
{
"name": "Encounter - Kunjungan Baru",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"2024082474938\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:11:54.849971+00:00\",\n \"versionId\": \"MTcyNDQ0MDMxNDg0OTk3MTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Encounter - Kunjungan Baru",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Encounter_id\", data.id);;"
],
"type": "text/javascript",
"packages": {}
}
},
{
"listen": "prerequest",
"script": {
"exec": [
"//defining yyymmdd as currentDate's YYYYMMDD in string format\r",
"var now = new Date();\r",
"var year = now.getFullYear();\r",
"var month = String(now.getMonth() + 1).padStart(2, '0');\r",
"var day = String(now.getDate()).padStart(2, '0');\r",
"var yyyymmdd = `${year}${month}${day}`;\r",
"\r",
"//Generating 5 digits of stringified random integer to make Registration_ID number (for test use cases)\r",
"var randomInt = Math.floor(Math.random() * 100000);\r",
"var randomIntPadded = String(randomInt).padStart(5, '0');\r",
"var Registration_ID = yyyymmdd + randomIntPadded;\r",
"\r",
"//Setting CollectionVariable Registration_ID to be used\r",
"pm.collectionVariables.set(\"Registration_ID\", Registration_ID)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
]
}
},
"response": [
{
"name": "Encounter - Kunjungan Baru",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"2024082474938\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:11:54.849971+00:00\",\n \"versionId\": \"MTcyNDQ0MDMxNDg0OTk3MTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
}
]
},
{
"name": "Masuk Ruang",
"item": [
{
"name": "Encounter - Masuk Ruang",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Encounter_Registration_ID}}\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\",\n \"end\": \"2023-06-22T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"response": [
{
"name": "Encounter - Masuk Ruang",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Encounter_Registration_ID}}\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\",\n \"end\": \"2023-06-22T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"AMB\",\n \"display\": \"ambulatory\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"12345\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:13:17.174579+00:00\",\n \"versionId\": \"MTcyNDQ0MDM5NzE3NDU3OTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"in-progress\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-06-22T01:00:00+00:00\",\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"status\": \"in-progress\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Encounter - Masuk Ruang",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Encounter_Registration_ID}}\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\",\n \"end\": \"2023-06-22T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"response": [
{
"name": "Encounter - Masuk Ruang",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Encounter_Registration_ID}}\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\",\n \"end\": \"2023-06-22T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"AMB\",\n \"display\": \"ambulatory\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"12345\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:13:17.174579+00:00\",\n \"versionId\": \"MTcyNDQ0MDM5NzE3NDU3OTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"in-progress\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-06-22T01:00:00+00:00\",\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"status\": \"in-progress\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
}
]
},
{
"name": "Pencarian Kunjungan Sebelumnya",
"item": [
{
"name": "Encounter by Kode Kunjungan Internal RS",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Encounter?identifier=http://sys-ids.kemkes.go.id/encounter/10000004|O12345",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/encounter/10000004|O12345"
}
]
}
},
"response": [
{
"name": "Encounter by Kode Kunjungan Internal RS",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Encounter?identifier=http://sys-ids.kemkes.go.id/encounter/10000004|O12345",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/encounter/10000004|O12345"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/5cf1ddd2-9901-43d7-8f46-2d85dc3bdc00\",\n \"resource\": {\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"5cf1ddd2-9901-43d7-8f46-2d85dc3bdc00\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"O12345\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/creator\",\n \"value\": \"10000004\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-11T03:29:37.048722+00:00\",\n \"versionId\": \"MTcyMzM0Njk3NzA0ODcyMjAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Patient - Mother (Teresa Lee)\",\n \"reference\": \"Patient/P02280547535\"\n }\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F10000004%7CO12345\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F10000004%7CO12345\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F10000004%7CO12345\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Encounter by Kode Kunjungan Internal RS",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Encounter?identifier=http://sys-ids.kemkes.go.id/encounter/10000004|O12345",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/encounter/10000004|O12345"
}
]
}
},
"response": [
{
"name": "Encounter by Kode Kunjungan Internal RS",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Encounter?identifier=http://sys-ids.kemkes.go.id/encounter/10000004|O12345",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/encounter/10000004|O12345"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/5cf1ddd2-9901-43d7-8f46-2d85dc3bdc00\",\n \"resource\": {\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"5cf1ddd2-9901-43d7-8f46-2d85dc3bdc00\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"O12345\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/creator\",\n \"value\": \"10000004\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-11T03:29:37.048722+00:00\",\n \"versionId\": \"MTcyMzM0Njk3NzA0ODcyMjAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Patient - Mother (Teresa Lee)\",\n \"reference\": \"Patient/P02280547535\"\n }\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F10000004%7CO12345\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F10000004%7CO12345\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F10000004%7CO12345\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
}
]
}
]
},
{
"name": "03. Alamat Lokasi",
"item": [
{
"name": "Alamat Tinggal",
"item": [
{
"name": "Patient - Menambah Alamat Tinggal",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"add\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Patient_Ibu_ID}}"
}
]
}
},
"response": [
{
"name": "Patient - Menambah Alamat Tinggal",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"add\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/P02280547535",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
"P02280547535"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"12\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"period\": {\n \"end\": \"2010-06-22T15:30:08+00:00\",\n \"start\": \"2000-01-01T15:30:08+00:00\"\n },\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"20231029 Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"20231028 Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"18\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"period\": {\n \"end\": \"2023-09-22T15:30:08+00:00\",\n \"start\": \"2010-06-22T15:30:08+00:00\"\n },\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n }\n ],\n \"birthDate\": \"1987-09-12\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"contact\": [\n {\n \"name\": {\n \"text\": \"Jane Smith\",\n \"use\": \"official\"\n },\n \"relationship\": [\n {\n \"coding\": [\n {\n \"code\": \"C\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\"\n }\n ]\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"0690383372\"\n }\n ]\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P02280547535\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02280547535\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"9104025209000006\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"use\": \"official\",\n \"value\": \"A01111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"use\": \"official\",\n \"value\": \"367400001111111\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b1820190-b086-43e6-9ee9-df7ccb9867ba\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e2bdc3ea-dfce-45c9-a336-1ab40b24a1e4\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c41950ac-e0a2-4021-a345-9908f40e5ed8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/102fc703-e554-43b7-968d-bebbbb1bc2ef\"\n },\n \"type\": \"refer\"\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"code\": \"M\",\n \"display\": \"Married\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\"\n }\n ],\n \"text\": \"Married\"\n },\n \"meta\": {\n \"lastUpdated\": \"2023-10-29T13:02:42.513057+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionId\": \"MTY5ODU4NDU2MjUxMzA1NzAwMA\"\n },\n \"multipleBirthInteger\": 0,\n \"name\": [\n {\n \"text\": \"patient 6\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n}"
}
]
},
{
"name": "Patient - Update Alamat Tinggal",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"replace\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Patient_Ibu_ID}}"
}
]
}
},
"response": [
{
"name": "Patient - Update Alamat Tinggal",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"replace\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url_satset}}/Patient/P02029412006",
"host": [
"{{base_url_satset}}"
],
"path": [
"Patient",
"P02029412006"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"1101\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1101\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"110101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1101012001\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"12\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"SAMPOERNA STRATEGIC\"\n ],\n \"postalCode\": \"55292\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n }\n ],\n \"birthDate\": \"2024-03-10\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bogor\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P02029412006\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"92040148040001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"9271060312000002\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029412006\"\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"code\": \"S\",\n \"display\": \"Never Married\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\"\n }\n ]\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-13T08:03:49.500209+00:00\",\n \"versionId\": \"MTcxMDMxNzAyOTUwMDIwOTAwMA\"\n },\n \"multipleBirthInteger\": 0,\n \"name\": [\n {\n \"text\": \"Y2u***\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08132928237348\"\n }\n ]\n}"
}
]
},
{
"name": "Patient - Menambah Alamat Tinggal",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"add\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Patient_Ibu_ID}}"
}
]
}
},
"response": [
{
"name": "Patient - Menambah Alamat Tinggal",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"add\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/P02280547535",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
"P02280547535"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"12\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"period\": {\n \"end\": \"2010-06-22T15:30:08+00:00\",\n \"start\": \"2000-01-01T15:30:08+00:00\"\n },\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"20231029 Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"20231028 Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"18\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"period\": {\n \"end\": \"2023-09-22T15:30:08+00:00\",\n \"start\": \"2010-06-22T15:30:08+00:00\"\n },\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n }\n ],\n \"birthDate\": \"1987-09-12\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"contact\": [\n {\n \"name\": {\n \"text\": \"Jane Smith\",\n \"use\": \"official\"\n },\n \"relationship\": [\n {\n \"coding\": [\n {\n \"code\": \"C\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\"\n }\n ]\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"0690383372\"\n }\n ]\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P02280547535\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02280547535\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"9104025209000006\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"use\": \"official\",\n \"value\": \"A01111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"use\": \"official\",\n \"value\": \"367400001111111\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b1820190-b086-43e6-9ee9-df7ccb9867ba\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e2bdc3ea-dfce-45c9-a336-1ab40b24a1e4\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c41950ac-e0a2-4021-a345-9908f40e5ed8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/102fc703-e554-43b7-968d-bebbbb1bc2ef\"\n },\n \"type\": \"refer\"\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"code\": \"M\",\n \"display\": \"Married\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\"\n }\n ],\n \"text\": \"Married\"\n },\n \"meta\": {\n \"lastUpdated\": \"2023-10-29T13:02:42.513057+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionId\": \"MTY5ODU4NDU2MjUxMzA1NzAwMA\"\n },\n \"multipleBirthInteger\": 0,\n \"name\": [\n {\n \"text\": \"patient 6\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n}"
}
]
},
{
"name": "Patient - Update Alamat Tinggal",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"replace\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Patient_Ibu_ID}}"
}
]
}
},
"response": [
{
"name": "Patient - Update Alamat Tinggal",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"replace\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url_satset}}/Patient/P02029412006",
"host": [
"{{base_url_satset}}"
],
"path": [
"Patient",
"P02029412006"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"1101\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1101\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"110101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1101012001\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"12\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"SAMPOERNA STRATEGIC\"\n ],\n \"postalCode\": \"55292\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n }\n ],\n \"birthDate\": \"2024-03-10\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bogor\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P02029412006\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"92040148040001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"9271060312000002\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029412006\"\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"code\": \"S\",\n \"display\": \"Never Married\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\"\n }\n ]\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-13T08:03:49.500209+00:00\",\n \"versionId\": \"MTcxMDMxNzAyOTUwMDIwOTAwMA\"\n },\n \"multipleBirthInteger\": 0,\n \"name\": [\n {\n \"text\": \"Y2u***\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08132928237348\"\n }\n ]\n}"
}
]
}
]
}
]
},
{
"name": "04. Riwayat Kematian Bayi",
"item": [
{
"name": "Jenis Kematian",
"item": [
{
"name": "Observation - Jenis Kematian",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237361005\",\n \"display\": \"Antepartum fetal death\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Kematian",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237361005\",\n \"display\": \"Antepartum fetal death\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"788078f2-36a1-47d5-be2a-c6ba4a603b96\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:36:01.147963+00:00\",\n \"versionId\": \"MTcyNDQzMDk2MTE0Nzk2MzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"237361005\",\n \"display\": \"Antepartum fetal death\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Jenis Kematian",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237361005\",\n \"display\": \"Antepartum fetal death\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Kematian",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237361005\",\n \"display\": \"Antepartum fetal death\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"788078f2-36a1-47d5-be2a-c6ba4a603b96\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:36:01.147963+00:00\",\n \"versionId\": \"MTcyNDQzMDk2MTE0Nzk2MzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"237361005\",\n \"display\": \"Antepartum fetal death\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Dugaan Sebab Kematian",
"item": [
{
"name": "Observation - Dugaan Sebab Kematian - ICD Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A\",\n \"display\": \"Antepartum death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dugaan Sebab Kematian - ICD Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A\",\n \"display\": \"Antepartum death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"A\",\n \"display\": \"Antepartum death\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"b2583eaf-c7ba-4794-a9b3-8ad1e46d0e62\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:36:30.558940+00:00\",\n \"versionId\": \"MTcyNDQzMDk5MDU1ODk0MDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Observation - Dugaan Sebab Kematian - ICD 3 or 4 digit & Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A\",\n \"display\": \"Antepartum death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dugaan Sebab Kematian - ICD 3 or 4 digit & Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A\",\n \"display\": \"Antepartum death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"A\",\n \"display\": \"Antepartum death\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"db4f6c0e-461d-4e6e-bf64-f0b2c1414712\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:37:15.319127+00:00\",\n \"versionId\": \"MTcyNDQzMTAzNTMxOTEyNzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Observation - Dugaan Sebab Kematian - ICD 3 or 4 digit & Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A\",\n \"display\": \"Antepartum death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dugaan Sebab Kematian - ICD 3 or 4 digit & Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A\",\n \"display\": \"Antepartum death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"A\",\n \"display\": \"Antepartum death\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"db4f6c0e-461d-4e6e-bf64-f0b2c1414712\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:37:15.319127+00:00\",\n \"versionId\": \"MTcyNDQzMTAzNTMxOTEyNzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Observation - Dugaan Sebab Kematian - ICD Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A\",\n \"display\": \"Antepartum death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dugaan Sebab Kematian - ICD Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A\",\n \"display\": \"Antepartum death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"A\",\n \"display\": \"Antepartum death\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"b2583eaf-c7ba-4794-a9b3-8ad1e46d0e62\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:36:30.558940+00:00\",\n \"versionId\": \"MTcyNDQzMDk5MDU1ODk0MDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
}
]
},
{
"name": "Tanggal dan Jam Meninggal",
"item": [
{
"name": "Observation - Tanggal dan Jam Diagnosis Keguguran Ditegakkan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tanggal dan Jam Diagnosis Keguguran Ditegakkan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"c6fae195-eee1-4954-bbac-a2abfb454c90\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:37:38.930692+00:00\",\n \"versionId\": \"MTcyNDQzMTA1ODkzMDY5MjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n}"
}
]
},
{
"name": "Observation - Tanggal dan Jam Diagnosis Keguguran Ditegakkan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tanggal dan Jam Diagnosis Keguguran Ditegakkan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"c6fae195-eee1-4954-bbac-a2abfb454c90\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:37:38.930692+00:00\",\n \"versionId\": \"MTcyNDQzMTA1ODkzMDY5MjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n}"
}
]
}
]
},
{
"name": "Jenis Tempat Meninggal",
"item": [
{
"name": "Observation - Jenis Tempat Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Tempat Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"7c717f9d-12ad-43b4-abb8-afe1634892fc\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:39:26.192942+00:00\",\n \"versionId\": \"MTcyNDQzMTE2NjE5Mjk0MjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n}"
}
]
},
{
"name": "Observation - Jenis Tempat Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Tempat Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"7c717f9d-12ad-43b4-abb8-afe1634892fc\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:39:26.192942+00:00\",\n \"versionId\": \"MTcyNDQzMTE2NjE5Mjk0MjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n}"
}
]
}
]
},
{
"name": "Ada Maserasi",
"item": [
{
"name": "Observation - Ada Maserasi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"198901003\",\n \"display\": \"Macerated fetus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000049\",\n \"display\": \"Maserasi Tingkat Dua\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Ada Maserasi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"198901003\",\n \"display\": \"Macerated fetus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000049\",\n \"display\": \"Maserasi Tingkat Dua\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"exam\",\n \"display\": \"Exam\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"198901003\",\n \"display\": \"Macerated fetus\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"800c5160-c680-4809-8681-e3916fcce34e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:40:14.814334+00:00\",\n \"versionId\": \"MTcyNDQzMTIxNDgxNDMzNDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000049\",\n \"display\": \"Maserasi Tingkat Dua\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Ada Maserasi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"198901003\",\n \"display\": \"Macerated fetus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000049\",\n \"display\": \"Maserasi Tingkat Dua\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Ada Maserasi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"198901003\",\n \"display\": \"Macerated fetus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000049\",\n \"display\": \"Maserasi Tingkat Dua\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"exam\",\n \"display\": \"Exam\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"198901003\",\n \"display\": \"Macerated fetus\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"800c5160-c680-4809-8681-e3916fcce34e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:40:14.814334+00:00\",\n \"versionId\": \"MTcyNDQzMTIxNDgxNDMzNDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000049\",\n \"display\": \"Maserasi Tingkat Dua\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Kondisi Ibu yang dapat mempengaruhi janin",
"item": [
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M5\",\n \"display\": \"No maternal condition identified\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M5\",\n \"display\": \"No maternal condition identified\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M\",\n \"display\": \"Maternal condition\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M5\",\n \"display\": \"No maternal condition identified\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"17c13364-587a-4a34-a5d6-944b8b271464\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:41:02.443031+00:00\",\n \"versionId\": \"MTcyNDQzMTI2MjQ0MzAzMTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD 3 or 4 digit & Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD 3 or 4 digit & Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M\",\n \"display\": \"Maternal condition\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"fc087817-45bf-4106-9acd-9e026dfb23e4\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:41:32.454375+00:00\",\n \"versionId\": \"MTcyNDQzMTI5MjQ1NDM3NTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M5\",\n \"display\": \"No maternal condition identified\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M5\",\n \"display\": \"No maternal condition identified\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M\",\n \"display\": \"Maternal condition\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M5\",\n \"display\": \"No maternal condition identified\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"17c13364-587a-4a34-a5d6-944b8b271464\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:41:02.443031+00:00\",\n \"versionId\": \"MTcyNDQzMTI2MjQ0MzAzMTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD 3 or 4 digit & Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD 3 or 4 digit & Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M\",\n \"display\": \"Maternal condition\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"fc087817-45bf-4106-9acd-9e026dfb23e4\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:41:32.454375+00:00\",\n \"versionId\": \"MTcyNDQzMTI5MjQ1NDM3NTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "05. Riwayat Persalinan",
"item": [
{
"name": "Janin yang meninggal (Untuk bayi kembar)",
"item": [
{
"name": "Observation - Janin yang meninggal (Untuk bayi kembar)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n\"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\" : \"OV000398\",\n \"display\" : \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Janin yang meninggal (Untuk bayi kembar)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"cea8f2bd-6872-46b2-8a75-c4df2b0cc2ff\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:41:58.889032+00:00\",\n \"versionId\": \"MTcyNDQzMTMxODg4OTAzMjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Janin yang meninggal (Untuk bayi kembar)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n\"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\" : \"OV000398\",\n \"display\" : \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Janin yang meninggal (Untuk bayi kembar)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"cea8f2bd-6872-46b2-8a75-c4df2b0cc2ff\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:41:58.889032+00:00\",\n \"versionId\": \"MTcyNDQzMTMxODg4OTAzMjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Kelainan Bawaan",
"item": [
{
"name": "Observation - Kelainan Bawaan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kelainan Bawaan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"9197357b-aca1-49d7-9340-323f20b295ad\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:42:25.174312+00:00\",\n \"versionId\": \"MTcyNDQzMTM0NTE3NDMxMjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Kelainan Bawaan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kelainan Bawaan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"9197357b-aca1-49d7-9340-323f20b295ad\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:42:25.174312+00:00\",\n \"versionId\": \"MTcyNDQzMTM0NTE3NDMxMjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Berat Lahir",
"item": [
{
"name": "Observation - Berat Lahir",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Berat Lahir",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"de3b4428-a9d1-4ae9-8232-a8b58b9f3800\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:42:55.626853+00:00\",\n \"versionId\": \"MTcyNDQzMTM3NTYyNjg1MzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueQuantity\": {\n \"code\": \"g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"gram\",\n \"value\": 3000\n }\n}"
}
]
},
{
"name": "Observation - Berat Lahir",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Berat Lahir",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n ],\n \"id\": \"de3b4428-a9d1-4ae9-8232-a8b58b9f3800\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T16:42:55.626853+00:00\",\n \"versionId\": \"MTcyNDQzMTM3NTYyNjg1MzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueQuantity\": {\n \"code\": \"g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"gram\",\n \"value\": 3000\n }\n}"
}
]
}
]
},
{
"name": "Cara Persalinan",
"item": [
{
"name": "Observation - Cara Persalinan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Cara Persalinan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"5ba7e7e2-1176-47a3-aff5-fe6f6181f371\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-29T15:30:39.246222+00:00\",\n \"versionId\": \"MTcyNDk0NTQzOTI0NjIyMjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Cara Persalinan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Cara Persalinan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"5ba7e7e2-1176-47a3-aff5-fe6f6181f371\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-29T15:30:39.246222+00:00\",\n \"versionId\": \"MTcyNDk0NTQzOTI0NjIyMjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
}
]
},
{
"name": "06. Riwayat Kehamilan Ibu",
"item": [
{
"name": "Gravida",
"item": [
{
"name": "Observation - Gravida",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gravida",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"1b2cd961-f588-4af8-a5aa-0dd4369a01a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:01:23.426976+00:00\",\n \"versionId\": \"MTcyNDQzMjQ4MzQyNjk3NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueInteger\": 4\n}"
}
]
},
{
"name": "Observation - Gravida",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gravida",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"1b2cd961-f588-4af8-a5aa-0dd4369a01a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:01:23.426976+00:00\",\n \"versionId\": \"MTcyNDQzMjQ4MzQyNjk3NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueInteger\": 4\n}"
}
]
}
]
},
{
"name": "Usia Kehamilan (UK)",
"item": [
{
"name": "Observation - Usia Kehamilan (UK)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Usia Kehamilan (UK)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"c1d6b623-bf21-4dfc-a464-eca18ebe19d1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:02:08.407347+00:00\",\n \"versionId\": \"MTcyNDQzMjUyODQwNzM0NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueQuantity\": {\n \"code\": \"wk\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"week\",\n \"value\": 32\n }\n}"
}
]
},
{
"name": "Observation - Usia Kehamilan (UK)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Usia Kehamilan (UK)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"c1d6b623-bf21-4dfc-a464-eca18ebe19d1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:02:08.407347+00:00\",\n \"versionId\": \"MTcyNDQzMjUyODQwNzM0NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueQuantity\": {\n \"code\": \"wk\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"week\",\n \"value\": 32\n }\n}"
}
]
}
]
},
{
"name": "Partus",
"item": [
{
"name": "Observation - Partus",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Partus",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"39e8e0b9-efe5-4247-85d6-3feb69fb1b50\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:02:29.838877+00:00\",\n \"versionId\": \"MTcyNDQzMjU0OTgzODg3NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueInteger\": 1\n}"
}
]
},
{
"name": "Observation - Partus",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Partus",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"39e8e0b9-efe5-4247-85d6-3feb69fb1b50\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:02:29.838877+00:00\",\n \"versionId\": \"MTcyNDQzMjU0OTgzODg3NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueInteger\": 1\n}"
}
]
}
]
},
{
"name": "Abortus",
"item": [
{
"name": "Observation - Abortus",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Abortus",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"6498dc4c-40a0-417d-878a-2c54b16bad30\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-29T15:40:56.227059+00:00\",\n \"versionId\": \"MTcyNDk0NjA1NjIyNzA1OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueInteger\": 0\n}"
}
]
},
{
"name": "Observation - Abortus",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Abortus",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"6498dc4c-40a0-417d-878a-2c54b16bad30\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-29T15:40:56.227059+00:00\",\n \"versionId\": \"MTcyNDk0NjA1NjIyNzA1OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueInteger\": 0\n}"
}
]
}
]
},
{
"name": "Jenis Kehamilan (Tunggal/Kembar)",
"item": [
{
"name": "Observation - Jenis Kehamilan (Tunggal/Kembar)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Kehamilan (Tunggal/Kembar)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"5eee7652-26ea-4398-b0f9-6b0c99693272\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:02:57.441889+00:00\",\n \"versionId\": \"MTcyNDQzMjU3NzQ0MTg4OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Jenis Kehamilan (Tunggal/Kembar)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Kehamilan (Tunggal/Kembar)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"5eee7652-26ea-4398-b0f9-6b0c99693272\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:02:57.441889+00:00\",\n \"versionId\": \"MTcyNDQzMjU3NzQ0MTg4OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Jumlah Anak Hidup",
"item": [
{
"name": "Observation - Jumlah Anak Hidup",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \n\t\"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jumlah Anak Hidup",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"19def21d-411f-4035-ba79-abbe4d4ea304\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:03:29.125848+00:00\",\n \"versionId\": \"MTcyNDQzMjYwOTEyNTg0ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueInteger\": 4\n}"
}
]
},
{
"name": "Observation - Jumlah Anak Hidup",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \n\t\"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jumlah Anak Hidup",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"19def21d-411f-4035-ba79-abbe4d4ea304\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:03:29.125848+00:00\",\n \"versionId\": \"MTcyNDQzMjYwOTEyNTg0ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueInteger\": 4\n}"
}
]
}
]
}
]
},
{
"name": "07. Data Dasar Ibu",
"item": [
{
"name": "Umur Ibu Ketika Anak Meninggal",
"item": [
{
"name": "Observation - Umur Ibu Ketika Anak Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"30525-0\",\n \"display\": \"Age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Umur Ibu Ketika Anak Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"30525-0\",\n \"display\": \"Age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"30525-0\",\n \"display\": \"Age\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"8ebac69b-d0ad-41f9-95da-7833651d4151\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111112\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:01:00.433701+00:00\",\n \"versionId\": \"MTcyNDQzMjQ2MDQzMzcwMTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueQuantity\": {\n \"code\": \"a\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"years\",\n \"value\": 40\n }\n}"
}
]
},
{
"name": "Observation - Umur Ibu Ketika Anak Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"30525-0\",\n \"display\": \"Age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Umur Ibu Ketika Anak Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"30525-0\",\n \"display\": \"Age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"30525-0\",\n \"display\": \"Age\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"8ebac69b-d0ad-41f9-95da-7833651d4151\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111112\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:01:00.433701+00:00\",\n \"versionId\": \"MTcyNDQzMjQ2MDQzMzcwMTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"valueQuantity\": {\n \"code\": \"a\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"years\",\n \"value\": 40\n }\n}"
}
]
}
]
},
{
"name": "Lama Tinggal",
"item": [
{
"name": "QuestionnaireResponse - Lama Tinggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"authored\": \"2023-06-22T14:30:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"response": [
{
"name": "QuestionnaireResponse - Lama Tinggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"authored\": \"2023-06-22T14:30:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"author\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"authored\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"60364cbb-ff25-411c-92e9-8182040cbda3\",\n \"identifier\": null,\n \"item\": [\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:00:39.584179+00:00\",\n \"versionId\": \"MTcyNDQzMjQzOTU4NDE3OTAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "QuestionnaireResponse - Lama Tinggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"authored\": \"2023-06-22T14:30:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"response": [
{
"name": "QuestionnaireResponse - Lama Tinggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"authored\": \"2023-06-22T14:30:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"author\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"authored\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"60364cbb-ff25-411c-92e9-8182040cbda3\",\n \"identifier\": null,\n \"item\": [\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:00:39.584179+00:00\",\n \"versionId\": \"MTcyNDQzMjQzOTU4NDE3OTAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "08. Laporan Notifikasi Kematian",
"item": [
{
"name": "Composition - Laporan Notifikasi Kematian",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720003\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000002\",\n \"display\": \"Tempat Meninggal Faskes\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000002\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Mati\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"Observation/c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/db4f6c0e-461d-4e6e-bf64-f0b2c1414712\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"Observation/1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/a45ce50a-7b00-4b49-985c-5e3b46f7b372\"\n },\n {\n \"display\": \"Ada Maserasi\",\n \"reference\": \"Observation/013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"Observation/fc087817-45bf-4106-9acd-9e026dfb23e4\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"Observation/b96204ac-80da-4ab4-b2dc-12344c112ea0\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"Observation/69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/ Kembar)\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"Observation/af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"QuestionnaireResponse/60364cbb-ff25-411c-92e9-8182040cbda3\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"response": [
{
"name": "Composition - Laporan Notifikasi Kematian",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720003\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000002\",\n \"display\": \"Tempat Meninggal Faskes\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000002\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Mati\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"Observation/c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/db4f6c0e-461d-4e6e-bf64-f0b2c1414712\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"Observation/1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/a45ce50a-7b00-4b49-985c-5e3b46f7b372\"\n },\n {\n \"display\": \"Ada Maserasi\",\n \"reference\": \"Observation/013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"Observation/fc087817-45bf-4106-9acd-9e026dfb23e4\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"Observation/b96204ac-80da-4ab4-b2dc-12344c112ea0\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"Observation/69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/ Kembar)\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"Observation/af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"QuestionnaireResponse/60364cbb-ff25-411c-92e9-8182040cbda3\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000004\"\n }\n }\n ],\n \"author\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"contained\": [\n {\n \"address\": {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n },\n \"id\": \"987654321\",\n \"managingOrganization\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000004\"\n },\n \"name\": \"Puskesmas SATUSEHAT\",\n \"resourceType\": \"Location\",\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"code\": \"LT000002\",\n \"display\": \"Tempat Meninggal Faskes\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n }\n ]\n }\n ],\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"code\": \"445667001\",\n \"display\": \"Interim report\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"detail\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"period\": {\n \"end\": \"2023-06-21T14:29:59+00:00\",\n \"start\": \"2023-06-20T14:30:00+00:00\"\n }\n }\n ],\n \"id\": \"29bd086b-9f48-4a5a-8dba-ba76331785e3\",\n \"identifier\": null,\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T01:42:45.998961+00:00\",\n \"versionId\": \"MTcyNTg0NjE2NTk5ODk2MTAwMA\"\n },\n \"resourceType\": \"Composition\",\n \"section\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"Observation/c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/db4f6c0e-461d-4e6e-bf64-f0b2c1414712\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"Observation/1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/a45ce50a-7b00-4b49-985c-5e3b46f7b372\"\n },\n {\n \"display\": \"Ada Maserasi\",\n \"reference\": \"Observation/013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"Observation/fc087817-45bf-4106-9acd-9e026dfb23e4\"\n }\n ],\n \"focus\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"title\": \"Riwayat Kematian Bayi\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"Observation/b96204ac-80da-4ab4-b2dc-12344c112ea0\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"Observation/69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ],\n \"focus\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"title\": \"Riwayat Persalinan\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ],\n \"focus\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Riwayat Persalinan\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/ Kembar)\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n }\n ],\n \"focus\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Riwayat Kehamilan\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"Observation/af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"QuestionnaireResponse/60364cbb-ff25-411c-92e9-8182040cbda3\"\n }\n ],\n \"focus\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Data Dasar Ibu\"\n }\n ],\n \"status\": \"preliminary\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"COM000002\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Mati\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Composition - Laporan Notifikasi Kematian",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720003\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000002\",\n \"display\": \"Tempat Meninggal Faskes\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000002\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Mati\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"Observation/c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/db4f6c0e-461d-4e6e-bf64-f0b2c1414712\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"Observation/1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/a45ce50a-7b00-4b49-985c-5e3b46f7b372\"\n },\n {\n \"display\": \"Ada Maserasi\",\n \"reference\": \"Observation/013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"Observation/fc087817-45bf-4106-9acd-9e026dfb23e4\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"Observation/b96204ac-80da-4ab4-b2dc-12344c112ea0\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"Observation/69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/ Kembar)\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"Observation/af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"QuestionnaireResponse/60364cbb-ff25-411c-92e9-8182040cbda3\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"response": [
{
"name": "Composition - Laporan Notifikasi Kematian",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720003\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000002\",\n \"display\": \"Tempat Meninggal Faskes\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000002\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Mati\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"Observation/c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/db4f6c0e-461d-4e6e-bf64-f0b2c1414712\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"Observation/1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/a45ce50a-7b00-4b49-985c-5e3b46f7b372\"\n },\n {\n \"display\": \"Ada Maserasi\",\n \"reference\": \"Observation/013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"Observation/fc087817-45bf-4106-9acd-9e026dfb23e4\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"Observation/b96204ac-80da-4ab4-b2dc-12344c112ea0\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"Observation/69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/ Kembar)\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"Observation/af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"QuestionnaireResponse/60364cbb-ff25-411c-92e9-8182040cbda3\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000004\"\n }\n }\n ],\n \"author\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"contained\": [\n {\n \"address\": {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n },\n \"id\": \"987654321\",\n \"managingOrganization\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000004\"\n },\n \"name\": \"Puskesmas SATUSEHAT\",\n \"resourceType\": \"Location\",\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"code\": \"LT000002\",\n \"display\": \"Tempat Meninggal Faskes\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n }\n ]\n }\n ],\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"code\": \"445667001\",\n \"display\": \"Interim report\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"detail\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"period\": {\n \"end\": \"2023-06-21T14:29:59+00:00\",\n \"start\": \"2023-06-20T14:30:00+00:00\"\n }\n }\n ],\n \"id\": \"29bd086b-9f48-4a5a-8dba-ba76331785e3\",\n \"identifier\": null,\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T01:42:45.998961+00:00\",\n \"versionId\": \"MTcyNTg0NjE2NTk5ODk2MTAwMA\"\n },\n \"resourceType\": \"Composition\",\n \"section\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"Observation/c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/db4f6c0e-461d-4e6e-bf64-f0b2c1414712\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"Observation/1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/a45ce50a-7b00-4b49-985c-5e3b46f7b372\"\n },\n {\n \"display\": \"Ada Maserasi\",\n \"reference\": \"Observation/013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"Observation/fc087817-45bf-4106-9acd-9e026dfb23e4\"\n }\n ],\n \"focus\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"title\": \"Riwayat Kematian Bayi\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"Observation/b96204ac-80da-4ab4-b2dc-12344c112ea0\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"Observation/69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ],\n \"focus\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"title\": \"Riwayat Persalinan\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ],\n \"focus\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Riwayat Persalinan\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/ Kembar)\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"Observation/ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n }\n ],\n \"focus\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Riwayat Kehamilan\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"Observation/af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"QuestionnaireResponse/60364cbb-ff25-411c-92e9-8182040cbda3\"\n }\n ],\n \"focus\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Data Dasar Ibu\"\n }\n ],\n \"status\": \"preliminary\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"COM000002\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Mati\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "09. Diagnosis",
"item": [
{
"name": "Condition - Diagnosis",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:12+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Diagnosis",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:12+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\"\n }\n ]\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"e8bc6a3b-7b51-4579-9cb2-14999d01a60f\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:08:16.389275+00:00\",\n \"versionId\": \"MTcyNDQzMjg5NjM4OTI3NTAwMA\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:12+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n}"
}
]
},
{
"name": "Condition - Diagnosis",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:12+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Diagnosis",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:12+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\"\n }\n ]\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"e8bc6a3b-7b51-4579-9cb2-14999d01a60f\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:08:16.389275+00:00\",\n \"versionId\": \"MTcyNDQzMjg5NjM4OTI3NTAwMA\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:12+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n}"
}
]
}
]
},
{
"name": "10. Update Pulang",
"item": [
{
"name": "Encounter - Finished",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"response": [
{
"name": "Encounter - Finished",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"diagnosis\": [\n {\n \"condition\": {\n \"display\": \"Examination for administrative purposes, unspecified\",\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\"\n },\n \"rank\": 1,\n \"use\": {\n \"coding\": [\n {\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\"\n }\n ]\n }\n }\n ],\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"O24689\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:50:17.075813+00:00\",\n \"versionId\": \"MTcyNDQ0MjYxNzA3NTgxMzAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"finished\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-06-22T07:15:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:15:00+00:00\"\n },\n \"status\": \"in-progress\"\n },\n {\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T14:10:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Encounter - Finished",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"response": [
{
"name": "Encounter - Finished",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"diagnosis\": [\n {\n \"condition\": {\n \"display\": \"Examination for administrative purposes, unspecified\",\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\"\n },\n \"rank\": 1,\n \"use\": {\n \"coding\": [\n {\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\"\n }\n ]\n }\n }\n ],\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"O24689\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:50:17.075813+00:00\",\n \"versionId\": \"MTcyNDQ0MjYxNzA3NTgxMzAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"finished\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-06-22T07:15:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:15:00+00:00\"\n },\n \"status\": \"in-progress\"\n },\n {\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T14:10:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
}
]
},
{
"name": "Bundle - Pelaporan Kematian Anak Lahir Mati",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:3fc32f06-f711-440a-abda-2ff2c1bf53ec\",\n \"resource\": {\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720003\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000002\",\n \"display\": \"Tempat Meninggal Faskes\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000002\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Mati\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"urn:uuid:a45ce50a-7b00-4b49-985c-5e3b46f7b372\"\n },\n {\n \"display\": \"Ada Maserasi\",\n \"reference\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"urn:uuid:05a7c9fc-7097-4c55-b2e8-081a64fd48d0\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"urn:uuid:b96204ac-80da-4ab4-b2dc-12344c112ea0\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"urn:uuid:493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"urn:uuid:493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/ Kembar)\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Composition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237361005\",\n \"display\": \"Antepartum fetal death\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:3a7d80eb-7b9a-4761-809b-e155205852d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A\",\n \"display\": \"Antepartum death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a45ce50a-7b00-4b49-985c-5e3b46f7b372\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"198901003\",\n \"display\": \"Macerated fetus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000049\",\n \"display\": \"Maserasi Tingkat Dua\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b96204ac-80da-4ab4-b2dc-12344c112ea0\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f3ba44b7-d274-49ee-9c55-fd40984e4a93\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8fbc2d6c-e2b2-497c-b249-9bfdddba2fe9\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:30ae2630-80ed-4046-a7be-17b069de4d2e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2d7d04a3-b6a9-4e08-bb5a-3193563e9c47\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6900d2b5-27f0-41ea-beab-a09459605607\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f97ae6b8-093b-4913-b5b9-b17251abd13d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2e16e050-3bde-4dd6-9d57-71ffbf735f91\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c5d8d30e-8ae9-40cd-a52f-bf517d128517\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"30525-0\",\n \"display\": \"Age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"authored\": \"2023-06-22T14:30:01+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:13+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24691\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"response": [
{
"name": "Bundle - Pelaporan Kematian Anak Lahir Mati",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:3fc32f06-f711-440a-abda-2ff2c1bf53ec\",\n \"resource\": {\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720003\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000002\",\n \"display\": \"Tempat Meninggal Faskes\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000002\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Mati\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"urn:uuid:a45ce50a-7b00-4b49-985c-5e3b46f7b372\"\n },\n {\n \"display\": \"Ada Maserasi\",\n \"reference\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"urn:uuid:05a7c9fc-7097-4c55-b2e8-081a64fd48d0\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"urn:uuid:b96204ac-80da-4ab4-b2dc-12344c112ea0\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"urn:uuid:493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"urn:uuid:493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/ Kembar)\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Composition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237361005\",\n \"display\": \"Antepartum fetal death\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:3a7d80eb-7b9a-4761-809b-e155205852d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A\",\n \"display\": \"Antepartum death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a45ce50a-7b00-4b49-985c-5e3b46f7b372\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"198901003\",\n \"display\": \"Macerated fetus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000049\",\n \"display\": \"Maserasi Tingkat Dua\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b96204ac-80da-4ab4-b2dc-12344c112ea0\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f3ba44b7-d274-49ee-9c55-fd40984e4a93\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8fbc2d6c-e2b2-497c-b249-9bfdddba2fe9\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:30ae2630-80ed-4046-a7be-17b069de4d2e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2d7d04a3-b6a9-4e08-bb5a-3193563e9c47\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6900d2b5-27f0-41ea-beab-a09459605607\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f97ae6b8-093b-4913-b5b9-b17251abd13d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2e16e050-3bde-4dd6-9d57-71ffbf735f91\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c5d8d30e-8ae9-40cd-a52f-bf517d128517\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"30525-0\",\n \"display\": \"Age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"authored\": \"2023-06-22T14:30:01+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:13+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24691\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Composition/016d3c62-d3c9-49ba-8703-6ab155212150/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Composition\",\n \"resourceID\": \"016d3c62-d3c9-49ba-8703-6ab155212150\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/5ed4820a-3fd7-44a9-9e84-a6c69cdb402d/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"5ed4820a-3fd7-44a9-9e84-a6c69cdb402d\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/909d07cc-7ca4-4ed1-907b-84f02c577727/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"909d07cc-7ca4-4ed1-907b-84f02c577727\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/44b1d907-b8d2-4a0b-9eff-28439ef8b5cb/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"44b1d907-b8d2-4a0b-9eff-28439ef8b5cb\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/c78bd6f9-ac9e-4f8f-9e34-ef673f21f3b0/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"c78bd6f9-ac9e-4f8f-9e34-ef673f21f3b0\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/6b61b2e6-ac16-4909-8d27-a6468b568307/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"6b61b2e6-ac16-4909-8d27-a6468b568307\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/cf4a3c9a-2482-48d0-8737-16e9d88dac81/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"cf4a3c9a-2482-48d0-8737-16e9d88dac81\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/04c9a76c-6b49-41a1-a54b-c9415322763c/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"04c9a76c-6b49-41a1-a54b-c9415322763c\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/766ee63c-d98d-4883-9666-431c03ec6b5b/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"766ee63c-d98d-4883-9666-431c03ec6b5b\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/c9dd3810-a878-48a9-bb08-444d318058b1/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"c9dd3810-a878-48a9-bb08-444d318058b1\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/fd34c3db-0435-404a-8652-d7c6a15c958a/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"fd34c3db-0435-404a-8652-d7c6a15c958a\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/71da92a7-5830-4d74-b6e7-6f2f789d6430/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"71da92a7-5830-4d74-b6e7-6f2f789d6430\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/8f3613eb-7d64-43e0-8566-3da557a458dc/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"8f3613eb-7d64-43e0-8566-3da557a458dc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/843afaad-eecc-4a69-8c4d-0bdd09036540/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"843afaad-eecc-4a69-8c4d-0bdd09036540\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/5742cc02-2b70-4aa2-83d3-fcb4208243c1/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"5742cc02-2b70-4aa2-83d3-fcb4208243c1\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/bd7781aa-ee87-4d87-9114-e715082828db/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"bd7781aa-ee87-4d87-9114-e715082828db\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/be8b70e7-8af1-48d2-80f1-86d559a83298/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"be8b70e7-8af1-48d2-80f1-86d559a83298\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/eac40a17-7fa3-458b-af67-b929aa2cf436/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"eac40a17-7fa3-458b-af67-b929aa2cf436\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/QuestionnaireResponse/5ba045fd-8fe9-486c-9de2-c490b6f992c6/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"resourceID\": \"5ba045fd-8fe9-486c-9de2-c490b6f992c6\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/e349ffe5-2447-46cc-80c7-b79f16ec129f/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"e349ffe5-2447-46cc-80c7-b79f16ec129f\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/15bb9cf4-a74e-48e5-a362-f6ab8a37b858/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Encounter\",\n \"resourceID\": \"15bb9cf4-a74e-48e5-a362-f6ab8a37b858\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction-response\",\n \"total\": 21,\n }"
}
]
},
{
"name": "Bundle - Pelaporan Kematian Anak Lahir Mati",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:3fc32f06-f711-440a-abda-2ff2c1bf53ec\",\n \"resource\": {\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720003\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000002\",\n \"display\": \"Tempat Meninggal Faskes\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000002\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Mati\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"urn:uuid:a45ce50a-7b00-4b49-985c-5e3b46f7b372\"\n },\n {\n \"display\": \"Ada Maserasi\",\n \"reference\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"urn:uuid:05a7c9fc-7097-4c55-b2e8-081a64fd48d0\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"urn:uuid:b96204ac-80da-4ab4-b2dc-12344c112ea0\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"urn:uuid:493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"urn:uuid:493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/ Kembar)\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Composition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237361005\",\n \"display\": \"Antepartum fetal death\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:3a7d80eb-7b9a-4761-809b-e155205852d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A\",\n \"display\": \"Antepartum death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a45ce50a-7b00-4b49-985c-5e3b46f7b372\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"198901003\",\n \"display\": \"Macerated fetus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000049\",\n \"display\": \"Maserasi Tingkat Dua\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b96204ac-80da-4ab4-b2dc-12344c112ea0\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f3ba44b7-d274-49ee-9c55-fd40984e4a93\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8fbc2d6c-e2b2-497c-b249-9bfdddba2fe9\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:30ae2630-80ed-4046-a7be-17b069de4d2e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2d7d04a3-b6a9-4e08-bb5a-3193563e9c47\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6900d2b5-27f0-41ea-beab-a09459605607\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f97ae6b8-093b-4913-b5b9-b17251abd13d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2e16e050-3bde-4dd6-9d57-71ffbf735f91\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c5d8d30e-8ae9-40cd-a52f-bf517d128517\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"30525-0\",\n \"display\": \"Age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"authored\": \"2023-06-22T14:30:01+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:13+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24691\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"response": [
{
"name": "Bundle - Pelaporan Kematian Anak Lahir Mati",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:3fc32f06-f711-440a-abda-2ff2c1bf53ec\",\n \"resource\": {\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720003\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000002\",\n \"display\": \"Tempat Meninggal Faskes\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000002\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Mati\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"date\": \"2023-06-22T14:30:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Meninggal Faskes\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"urn:uuid:a45ce50a-7b00-4b49-985c-5e3b46f7b372\"\n },\n {\n \"display\": \"Ada Maserasi\",\n \"reference\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"urn:uuid:05a7c9fc-7097-4c55-b2e8-081a64fd48d0\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"urn:uuid:b96204ac-80da-4ab4-b2dc-12344c112ea0\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"urn:uuid:493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"urn:uuid:493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/ Kembar)\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"urn:uuid:ceb122af-e464-463d-91ec-7f7fc84e3b63\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Composition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237361005\",\n \"display\": \"Antepartum fetal death\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:3a7d80eb-7b9a-4761-809b-e155205852d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A\",\n \"display\": \"Antepartum death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"A1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a45ce50a-7b00-4b49-985c-5e3b46f7b372\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"198901003\",\n \"display\": \"Macerated fetus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000049\",\n \"display\": \"Maserasi Tingkat Dua\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b96204ac-80da-4ab4-b2dc-12344c112ea0\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f3ba44b7-d274-49ee-9c55-fd40984e4a93\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8fbc2d6c-e2b2-497c-b249-9bfdddba2fe9\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:30ae2630-80ed-4046-a7be-17b069de4d2e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2d7d04a3-b6a9-4e08-bb5a-3193563e9c47\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6900d2b5-27f0-41ea-beab-a09459605607\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f97ae6b8-093b-4913-b5b9-b17251abd13d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2e16e050-3bde-4dd6-9d57-71ffbf735f91\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c5d8d30e-8ae9-40cd-a52f-bf517d128517\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"30525-0\",\n \"display\": \"Age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"authored\": \"2023-06-22T14:30:01+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:13+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:45e436ea-d6c7-4059-8cbe-e00fb2c665d8\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24691\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Composition/016d3c62-d3c9-49ba-8703-6ab155212150/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Composition\",\n \"resourceID\": \"016d3c62-d3c9-49ba-8703-6ab155212150\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/5ed4820a-3fd7-44a9-9e84-a6c69cdb402d/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"5ed4820a-3fd7-44a9-9e84-a6c69cdb402d\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/909d07cc-7ca4-4ed1-907b-84f02c577727/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"909d07cc-7ca4-4ed1-907b-84f02c577727\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/44b1d907-b8d2-4a0b-9eff-28439ef8b5cb/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"44b1d907-b8d2-4a0b-9eff-28439ef8b5cb\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/c78bd6f9-ac9e-4f8f-9e34-ef673f21f3b0/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"c78bd6f9-ac9e-4f8f-9e34-ef673f21f3b0\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/6b61b2e6-ac16-4909-8d27-a6468b568307/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"6b61b2e6-ac16-4909-8d27-a6468b568307\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/cf4a3c9a-2482-48d0-8737-16e9d88dac81/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"cf4a3c9a-2482-48d0-8737-16e9d88dac81\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/04c9a76c-6b49-41a1-a54b-c9415322763c/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"04c9a76c-6b49-41a1-a54b-c9415322763c\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/766ee63c-d98d-4883-9666-431c03ec6b5b/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"766ee63c-d98d-4883-9666-431c03ec6b5b\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/c9dd3810-a878-48a9-bb08-444d318058b1/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"c9dd3810-a878-48a9-bb08-444d318058b1\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/fd34c3db-0435-404a-8652-d7c6a15c958a/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"fd34c3db-0435-404a-8652-d7c6a15c958a\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/71da92a7-5830-4d74-b6e7-6f2f789d6430/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"71da92a7-5830-4d74-b6e7-6f2f789d6430\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/8f3613eb-7d64-43e0-8566-3da557a458dc/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"8f3613eb-7d64-43e0-8566-3da557a458dc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/843afaad-eecc-4a69-8c4d-0bdd09036540/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"843afaad-eecc-4a69-8c4d-0bdd09036540\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/5742cc02-2b70-4aa2-83d3-fcb4208243c1/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"5742cc02-2b70-4aa2-83d3-fcb4208243c1\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/bd7781aa-ee87-4d87-9114-e715082828db/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"bd7781aa-ee87-4d87-9114-e715082828db\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/be8b70e7-8af1-48d2-80f1-86d559a83298/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"be8b70e7-8af1-48d2-80f1-86d559a83298\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/eac40a17-7fa3-458b-af67-b929aa2cf436/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"eac40a17-7fa3-458b-af67-b929aa2cf436\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/QuestionnaireResponse/5ba045fd-8fe9-486c-9de2-c490b6f992c6/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"resourceID\": \"5ba045fd-8fe9-486c-9de2-c490b6f992c6\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/e349ffe5-2447-46cc-80c7-b79f16ec129f/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"e349ffe5-2447-46cc-80c7-b79f16ec129f\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQzOTY0NjkxNDM3MjAwMA\\\"\",\n \"lastModified\": \"2024-08-23T19:00:46.914372+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/15bb9cf4-a74e-48e5-a362-f6ab8a37b858/_history/MTcyNDQzOTY0NjkxNDM3MjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Encounter\",\n \"resourceID\": \"15bb9cf4-a74e-48e5-a362-f6ab8a37b858\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction-response\",\n \"total\": 21,\n }"
}
]
}
]
},
{
"name": "2b. Form Lahir Hidup",
"item": [
{
"name": "00. Mencari Data Pasien dan Nakes",
"item": [
{
"name": "Patient",
"item": [
{
"name": "Patient - Search NIK",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"pm.collectionVariables.set(\"Patient_id\", data.id);\r",
"pm.collectionVariables.set(\"Patient_Name\", data.name[0].text);"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik|9104224509000003",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|9104224509000003"
}
]
}
},
"response": [
{
"name": "Patient - Search NIK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik|9104224509000003",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|9104224509000003"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P00805884304\",\n \"resource\": {\n \"active\": true,\n \"id\": \"P00805884304\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P00805884304\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/16b2810b-5376-40b8-a742-7d47acf6575f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/30a85c2a-e3e2-4ed0-8967-e84b42798727\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cff02c37-fc93-497c-b18f-cfa14d5f6ad6\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35faa912-6bd2-4216-93fd-f9571454649c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b98f674c-86d1-4179-95ac-251aa2973bf7\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/f67a5adc-b97a-4114-8ba0-fdc9fa2b7385\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/30cae342-d2a8-4fa7-8ae7-73ff5bed852e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8f889a29-489e-46f0-8c7e-24575dd7dfdc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d2a0f0c4-10ca-4dc8-bb21-edf18b786e8c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e8eee4b6-35e5-4b21-a625-3e5890019f40\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/528b416a-7837-4bb3-ab56-6e6fc55c5020\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/46e303d4-3e92-46a0-ba43-7c146d785eb9\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ac16b77a-4b9c-46e7-a64d-08720a94535c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/03128cab-a456-4a58-86f2-abd12c3ac96b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/fb4f1df7-09d5-45a1-9e72-9155861cec56\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d12ede74-6fe4-43fb-853c-d5bb784d8b38\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/70e15faa-61a5-46df-804f-dfe49dd7f939\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/610f5a79-8873-4591-84cb-12b1cff45a3f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/da11b72d-bfa4-4c9d-bca8-bf4651fee08a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8e1fab89-3d0a-47ad-a07c-baeb109fa4a3\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/739ee4c5-0a32-4229-9b7e-7680e2d79d8d\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/96401445-8070-48bb-939a-8c34ebbb2558\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5edacb4d-c612-4963-a07c-cf0f4697bfe8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ed0896f0-3357-492d-9571-5c522aa8829c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c9f5b362-5f43-42ad-86cb-0c5afdc32e07\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/9a431e01-bd82-40b0-a35c-0cccd5b18f89\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/399e0efe-cc9b-4b10-b54f-83eb7e11217d\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/743e9d9e-4ba6-4ad6-b7bb-fb48a4db92a8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/54dc1897-69c9-4a37-ab9d-7b6581b9d22e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/981cac3b-1bdd-43d3-86ef-418435a794c8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5e7f6d8e-1008-41d0-9306-8b6e877bcc7f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ab7763c9-ef93-4432-af3f-b61f9452dcbb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/facc6a19-53ff-4a1f-a0db-397761cc6796\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/3f3b705c-87fc-4e1f-b2b6-2fb24104a20e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a0c6ad92-3b61-40e9-be3d-4feb1702d9eb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c7c216db-229b-4ed7-ae12-5df9a5055187\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/feb319ee-ad49-4444-8e85-423810d56a74\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d38ec4d3-ecf9-42c0-80be-8194cad5823e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b8012d92-da09-43e3-9b5c-6ce8196b6b69\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/3f7222bf-3920-4554-9c0c-1b97eecbf375\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a367f24e-5984-4cfa-aa84-235dd6ccdb56\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/67decc96-3cd5-4773-be61-ebfcece5689e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/565c190d-1663-4cdf-a901-a285e9f96daf\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8608ca2b-7ff9-4291-90fc-91b8932323b4\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/29d36733-748a-48b6-b943-399d2e4b3b01\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/13c28f5e-9b93-4b94-8fb5-4d3ee10df7c8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a5df482d-b422-495d-82ff-81e0d77ab944\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b83ac473-8efa-42f4-9f5a-3382b05b23a7\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/123dec16-c505-4215-b51f-770eb6087b9a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ab36ed9-e132-4bf0-947c-bd12f3765ab5\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e8903ab6-b1e2-489c-80bc-bbf4a1e804b8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8a68e8c1-2a43-4310-ad78-d9554d11f650\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5703e279-6aed-4c7c-bb87-98d46592a420\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/43b9e879-dcfd-444e-a708-6c0b0c959d5a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/114b953e-358e-4681-98e3-277cea6743f6\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-02-06T07:26:10.395345+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTcwNzIwNDM3MDM5NTM0NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"patient 3\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - Bayi Search NIK Ibu",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik-ibu|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik-ibu|367400001111222"
}
]
}
},
"response": [
{
"name": "Patient - Bayi Search NIK Ibu",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik-ibu|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik-ibu|367400001111222"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102825\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102825\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102825\"\n }\n ],\n \"language\": \"id\",\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-10-17T06:26:21.585017+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY5NzUyMzk4MTU4NTAxNzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Sambo\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/ee3bff43-6b72-4a72-a41a-af4164e0eacf\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"2024-04-24-05-24\",\n \"id\": \"ee3bff43-6b72-4a72-a41a-af4164e0eacf\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"use\": \"official\",\n \"value\": \"A01111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"use\": \"official\",\n \"value\": \"367400001111111\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029103384\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-25T07:06:42.937195+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NDk5ODQwMjkzNzE5NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"John Smith\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102814\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102814\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102814\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T13:18:43.477704+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI4MTUyMzQ3NzcwNDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Roni\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102803\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102803\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102803\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T13:13:49.966892+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI4MTIyOTk2Njg5MjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Hulk\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102778\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102778\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102778\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T12:18:53.600353+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3NzkzMzYwMDM1MzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Stark\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102767\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102767\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102767\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:11:12.338686+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3Mzg3MjMzODY4NjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Toni\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102756\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102756\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102756\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:06:36.858381+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzU5Njg1ODM4MTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Budi\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102745\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102745\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102745\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:05:37.879975+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzUzNzg3OTk3NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Mardigu\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102734\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102734\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102734\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:00:54.720631+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzI1NDcyMDYzMTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dodi\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102723\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102723\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102723\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T10:59:48.626894+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzE4ODYyNjg5NDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Anang\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 10,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - Search Name, Birthdate, Gender",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"var Name = \"\";\r",
"var name = data.name;\r",
"name.forEach(name => {\r",
" if(name.use == \"official\"){Name = name.text}\r",
"});\r",
"pm.collectionVariables.set('Patient_id', data.id);\r",
"pm.collectionVariables.set('Patient_Name', 'Ny. Jane Smith');"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?name=patient 3&birthdate=1993-09-05&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 3"
},
{
"key": "birthdate",
"value": "1993-09-05"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"response": [
{
"name": "Patient - Search Name, Birthdate, Gender",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 1&birthdate=1980-12-03&gender=male",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 1"
},
{
"key": "birthdate",
"value": "1980-12-03"
},
{
"key": "gender",
"value": "male"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02478375538\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"MUNA\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"74\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"26\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1008\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"KEL.TOMBULA\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1980-12-03\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"male\",\n \"id\": \"P02478375538\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02478375538\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"9271060312000001\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7af11905-8d49-47dc-a72b-bca4948c01e7\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-31T06:40:40.038378+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NTUxNTI0MDAzODM3ODAwMA\"\n },\n \"multipleBirthBoolean\": false,\n \"name\": [\n {\n \"text\": \"patient 1\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - By ID",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "100000030015"
}
]
}
},
"response": [
{
"name": "Patient - By ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "100000030015"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"id\": \"100000030015\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"100000030015\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-16T22:21:10.608807+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NDI3NTY3MDYwODgwNzAwMA\"\n },\n \"resourceType\": \"Patient\"\n}"
}
]
},
{
"name": "Patient - Create by NIK",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Patient\",\n \"meta\": {\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ]\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"value\": \"3174031002890009\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"value\": \"A01111222\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"value\": \"367400001111111\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"use\": \"official\",\n \"text\": \"John Smith\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"08123456789\",\n \"use\": \"mobile\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"+622123456789\",\n \"use\": \"home\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1945-11-17\",\n \"deceasedBoolean\": false,\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"31\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3174\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"317402\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174021003\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"002\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"002\"\n }\n ]\n }\n ]\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\",\n \"code\": \"M\",\n \"display\": \"Married\"\n }\n ],\n \"text\": \"Married\"\n },\n \"multipleBirthInteger\": 0,\n \"contact\": [\n {\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"C\"\n }\n ]\n }\n ],\n \"name\": {\n \"use\": \"official\",\n \"text\": \"Jane Smith\"\n },\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"0690383372\",\n \"use\": \"mobile\"\n }\n ]\n }\n ],\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"system\": \"urn:ietf:bcp:47\",\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
]
}
},
"response": [
{
"name": "NIK Not Exist",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Patient\",\n \"meta\": {\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ]\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"value\": \"3174031002890009\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"value\": \"A01111222\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"value\": \"367400001111111\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"use\": \"official\",\n \"text\": \"John Smith\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"08123456789\",\n \"use\": \"mobile\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"+622123456789\",\n \"use\": \"home\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1945-11-17\",\n \"deceasedBoolean\": false,\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"31\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3174\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"317402\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174021003\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"002\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"002\"\n }\n ]\n }\n ]\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\",\n \"code\": \"M\",\n \"display\": \"Married\"\n }\n ],\n \"text\": \"Married\"\n },\n \"multipleBirthInteger\": 0,\n \"contact\": [\n {\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"C\"\n }\n ]\n }\n ],\n \"name\": {\n \"use\": \"official\",\n \"text\": \"Jane Smith\"\n },\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"0690383372\",\n \"use\": \"mobile\"\n }\n ]\n }\n ],\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"system\": \"urn:ietf:bcp:47\",\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"success\": false,\n \"message\": \"Citizen Not Exists\"\n}"
}
]
},
{
"name": "Patient - Bayi Search NIK Ibu",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik-ibu|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik-ibu|367400001111222"
}
]
}
},
"response": [
{
"name": "Patient - Bayi Search NIK Ibu",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik-ibu|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik-ibu|367400001111222"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102825\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102825\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102825\"\n }\n ],\n \"language\": \"id\",\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-10-17T06:26:21.585017+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY5NzUyMzk4MTU4NTAxNzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Sambo\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/ee3bff43-6b72-4a72-a41a-af4164e0eacf\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"2024-04-24-05-24\",\n \"id\": \"ee3bff43-6b72-4a72-a41a-af4164e0eacf\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"use\": \"official\",\n \"value\": \"A01111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"use\": \"official\",\n \"value\": \"367400001111111\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029103384\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-25T07:06:42.937195+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NDk5ODQwMjkzNzE5NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"John Smith\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102814\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102814\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102814\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T13:18:43.477704+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI4MTUyMzQ3NzcwNDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Roni\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102803\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102803\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102803\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T13:13:49.966892+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI4MTIyOTk2Njg5MjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Hulk\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102778\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102778\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102778\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T12:18:53.600353+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3NzkzMzYwMDM1MzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Stark\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102767\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102767\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102767\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:11:12.338686+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3Mzg3MjMzODY4NjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Toni\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102756\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102756\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102756\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:06:36.858381+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzU5Njg1ODM4MTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Budi\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102745\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102745\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102745\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:05:37.879975+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzUzNzg3OTk3NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Mardigu\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102734\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102734\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102734\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T11:00:54.720631+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzI1NDcyMDYzMTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dodi\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02029102723\",\n \"resource\": {\n \"active\": true,\n \"birthDate\": \"1920-02-28\",\n \"id\": \"P02029102723\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029102723\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-03-08T10:59:48.626894+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY3ODI3MzE4ODYyNjg5NDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Anang\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik-ibu%7C367400001111222\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 10,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - Search Name, Birthdate, Gender",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"var Name = \"\";\r",
"var name = data.name;\r",
"name.forEach(name => {\r",
" if(name.use == \"official\"){Name = name.text}\r",
"});\r",
"pm.collectionVariables.set('Patient_id', data.id);\r",
"pm.collectionVariables.set('Patient_Name', 'Ny. Jane Smith');"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?name=patient 3&birthdate=1993-09-05&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 3"
},
{
"key": "birthdate",
"value": "1993-09-05"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"response": [
{
"name": "Patient - Search Name, Birthdate, Gender",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 1&birthdate=1980-12-03&gender=male",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 1"
},
{
"key": "birthdate",
"value": "1980-12-03"
},
{
"key": "gender",
"value": "male"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P02478375538\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"MUNA\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"74\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"26\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1008\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"KEL.TOMBULA\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1980-12-03\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"male\",\n \"id\": \"P02478375538\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02478375538\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"9271060312000001\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7af11905-8d49-47dc-a72b-bca4948c01e7\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-31T06:40:40.038378+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NTUxNTI0MDAzODM3ODAwMA\"\n },\n \"multipleBirthBoolean\": false,\n \"name\": [\n {\n \"text\": \"patient 1\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=1980-12-03&gender=male&name=patient+1\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - Search NIK",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"pm.collectionVariables.set(\"Patient_id\", data.id);\r",
"pm.collectionVariables.set(\"Patient_Name\", data.name[0].text);"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik|9104224509000003",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|9104224509000003"
}
]
}
},
"response": [
{
"name": "Patient - Search NIK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?identifier=https://fhir.kemkes.go.id/id/nik|9104224509000003",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|9104224509000003"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P00805884304\",\n \"resource\": {\n \"active\": true,\n \"id\": \"P00805884304\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P00805884304\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/16b2810b-5376-40b8-a742-7d47acf6575f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/30a85c2a-e3e2-4ed0-8967-e84b42798727\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cff02c37-fc93-497c-b18f-cfa14d5f6ad6\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35faa912-6bd2-4216-93fd-f9571454649c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b98f674c-86d1-4179-95ac-251aa2973bf7\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/f67a5adc-b97a-4114-8ba0-fdc9fa2b7385\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/30cae342-d2a8-4fa7-8ae7-73ff5bed852e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8f889a29-489e-46f0-8c7e-24575dd7dfdc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d2a0f0c4-10ca-4dc8-bb21-edf18b786e8c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e8eee4b6-35e5-4b21-a625-3e5890019f40\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/528b416a-7837-4bb3-ab56-6e6fc55c5020\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/46e303d4-3e92-46a0-ba43-7c146d785eb9\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ac16b77a-4b9c-46e7-a64d-08720a94535c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/03128cab-a456-4a58-86f2-abd12c3ac96b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/fb4f1df7-09d5-45a1-9e72-9155861cec56\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d12ede74-6fe4-43fb-853c-d5bb784d8b38\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/70e15faa-61a5-46df-804f-dfe49dd7f939\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/610f5a79-8873-4591-84cb-12b1cff45a3f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/da11b72d-bfa4-4c9d-bca8-bf4651fee08a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8e1fab89-3d0a-47ad-a07c-baeb109fa4a3\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/739ee4c5-0a32-4229-9b7e-7680e2d79d8d\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/96401445-8070-48bb-939a-8c34ebbb2558\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5edacb4d-c612-4963-a07c-cf0f4697bfe8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ed0896f0-3357-492d-9571-5c522aa8829c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c9f5b362-5f43-42ad-86cb-0c5afdc32e07\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/9a431e01-bd82-40b0-a35c-0cccd5b18f89\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/399e0efe-cc9b-4b10-b54f-83eb7e11217d\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/743e9d9e-4ba6-4ad6-b7bb-fb48a4db92a8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/54dc1897-69c9-4a37-ab9d-7b6581b9d22e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/981cac3b-1bdd-43d3-86ef-418435a794c8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5e7f6d8e-1008-41d0-9306-8b6e877bcc7f\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ab7763c9-ef93-4432-af3f-b61f9452dcbb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/facc6a19-53ff-4a1f-a0db-397761cc6796\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/3f3b705c-87fc-4e1f-b2b6-2fb24104a20e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a0c6ad92-3b61-40e9-be3d-4feb1702d9eb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c7c216db-229b-4ed7-ae12-5df9a5055187\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/feb319ee-ad49-4444-8e85-423810d56a74\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d38ec4d3-ecf9-42c0-80be-8194cad5823e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b8012d92-da09-43e3-9b5c-6ce8196b6b69\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/3f7222bf-3920-4554-9c0c-1b97eecbf375\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a367f24e-5984-4cfa-aa84-235dd6ccdb56\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/67decc96-3cd5-4773-be61-ebfcece5689e\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/565c190d-1663-4cdf-a901-a285e9f96daf\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8608ca2b-7ff9-4291-90fc-91b8932323b4\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/29d36733-748a-48b6-b943-399d2e4b3b01\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/13c28f5e-9b93-4b94-8fb5-4d3ee10df7c8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/a5df482d-b422-495d-82ff-81e0d77ab944\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b83ac473-8efa-42f4-9f5a-3382b05b23a7\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/123dec16-c505-4215-b51f-770eb6087b9a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ab36ed9-e132-4bf0-947c-bd12f3765ab5\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e8903ab6-b1e2-489c-80bc-bbf4a1e804b8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/8a68e8c1-2a43-4310-ad78-d9554d11f650\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/5703e279-6aed-4c7c-bb87-98d46592a420\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/43b9e879-dcfd-444e-a708-6c0b0c959d5a\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/114b953e-358e-4681-98e3-277cea6743f6\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-02-06T07:26:10.395345+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTcwNzIwNDM3MDM5NTM0NTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"patient 3\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C9104224509000003\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Patient - Create by NIK",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Patient\",\n \"meta\": {\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ]\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"value\": \"3174031002890009\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"value\": \"A01111222\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"value\": \"367400001111111\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"use\": \"official\",\n \"text\": \"John Smith\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"08123456789\",\n \"use\": \"mobile\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"+622123456789\",\n \"use\": \"home\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1945-11-17\",\n \"deceasedBoolean\": false,\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"31\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3174\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"317402\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174021003\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"002\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"002\"\n }\n ]\n }\n ]\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\",\n \"code\": \"M\",\n \"display\": \"Married\"\n }\n ],\n \"text\": \"Married\"\n },\n \"multipleBirthInteger\": 0,\n \"contact\": [\n {\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"C\"\n }\n ]\n }\n ],\n \"name\": {\n \"use\": \"official\",\n \"text\": \"Jane Smith\"\n },\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"0690383372\",\n \"use\": \"mobile\"\n }\n ]\n }\n ],\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"system\": \"urn:ietf:bcp:47\",\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
]
}
},
"response": [
{
"name": "NIK Not Exist",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Patient\",\n \"meta\": {\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ]\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"value\": \"3174031002890009\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"value\": \"A01111222\"\n },\n {\n \"use\": \"official\",\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"value\": \"367400001111111\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"use\": \"official\",\n \"text\": \"John Smith\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"08123456789\",\n \"use\": \"mobile\"\n },\n {\n \"system\": \"phone\",\n \"value\": \"+622123456789\",\n \"use\": \"home\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"home\"\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1945-11-17\",\n \"deceasedBoolean\": false,\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"31\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3174\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"317402\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174021003\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"002\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"002\"\n }\n ]\n }\n ]\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\",\n \"code\": \"M\",\n \"display\": \"Married\"\n }\n ],\n \"text\": \"Married\"\n },\n \"multipleBirthInteger\": 0,\n \"contact\": [\n {\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\",\n \"code\": \"C\"\n }\n ]\n }\n ],\n \"name\": {\n \"use\": \"official\",\n \"text\": \"Jane Smith\"\n },\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"0690383372\",\n \"use\": \"mobile\"\n }\n ]\n }\n ],\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"system\": \"urn:ietf:bcp:47\",\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"success\": false,\n \"message\": \"Citizen Not Exists\"\n}"
}
]
},
{
"name": "Patient - By ID",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "100000030015"
}
]
}
},
"response": [
{
"name": "Patient - By ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "100000030015"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"id\": \"100000030015\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"100000030015\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24-05-16T22:21:10.608807+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionid\": \"MTY4NDI3NTY3MDYwODgwNzAwMA\"\n },\n \"resourceType\": \"Patient\"\n}"
}
]
}
]
},
{
"name": "Practitioner",
"item": [
{
"name": "Practitioner - Search NIK",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner?identifier=https://fhir.kemkes.go.id/id/nik|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|367400001111222"
}
]
}
},
"response": [
{
"name": "Practitioner - Search NIK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner?identifier=https://fhir.kemkes.go.id/id/nik|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|367400001111222"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000010\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000010\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000010\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:04:31.188115+00:00\",\n \"versionid\": \"MTY2OTE3MjY3MTE4ODExNTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy Third Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000009\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000009\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000009\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:04:02.773442+00:00\",\n \"versionid\": \"MTY2OTE3MjY0Mjc3MzQ0MjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothies Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000008\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000008\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000008\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:03:35.594418+00:00\",\n \"versionid\": \"MTY2OTE3MjYxNTU5NDQxODAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000007\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000007\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000007\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:00:56.337787+00:00\",\n \"versionid\": \"MTY2OTE3MjQ1NjMzNzc4NzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000006\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000006\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000006\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:00:19.536151+00:00\",\n \"versionid\": \"MTY2OTE3MjQxOTUzNjE1MTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Rus, MD.\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000005\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000005\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000005\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:54.410712+00:00\",\n \"versionid\": \"MTY2OTE3MjM5NDQxMDcxMjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Paul Therapist, PT\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000004\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000004\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000004\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:32.514793+00:00\",\n \"versionid\": \"MTY2OTE3MjM3MjUxNDc5MzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Pamela Educator, RN\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000003\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000003\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000003\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:10.522324+00:00\",\n \"versionid\": \"MTY2OTE3MjM1MDUyMjMyNDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Ray Sp.Rad.\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000001\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionid\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 9,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Practitioner - Search Name, Gender, Birthdate",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner?name=Voigt&gender=male&birthdate=1945",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "name",
"value": "Voigt"
},
{
"key": "gender",
"value": "male"
},
{
"key": "birthdate",
"value": "1945"
}
]
}
},
"response": [
{
"name": "Practitioner - Search Name, Gender, Birthdate",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner?name=Voigt&gender=male&birthdate=1945",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "name",
"value": "Voigt"
},
{
"key": "gender",
"value": "male"
},
{
"key": "birthdate",
"value": "1945"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000002\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"2000-12-12\",\n \"gender\": \"male\",\n \"id\": \"N10000002\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000002\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111223\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:44.125648+00:00\",\n \"versionid\": \"MTY2OTE3MjMyNDEyNTY0ODAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Regfristrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"2015\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000001\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionid\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 2,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Practitioner - By ID - N10000001",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Practitioner_id\", data.id)\r",
"\r",
"var fullName = \"\";\r",
"\r",
"// Check if 'name' field exists and is an array\r",
"if (Array.isArray(data.name)) {\r",
" // Find the 'official' name\r",
" let officialName = data.name.find(name => name.use === \"official\");\r",
"\r",
" // Check if an official name was found\r",
" if (officialName) {\r",
" // Concatenate prefix, text, and suffix\r",
"\r",
" // Add prefix if it exists\r",
" if (Array.isArray(officialName.prefix)) {\r",
" fullName += officialName.prefix.join(\" \") + \" \";\r",
" }\r",
"\r",
" // Add text (main part of the name)\r",
" fullName += officialName.text;\r",
"\r",
" // Add suffix if it exists\r",
" if (Array.isArray(officialName.suffix)) {\r",
" fullName += \", \" + officialName.suffix.join(\" \");\r",
" }\r",
" }\r",
"}\r",
"\r",
"pm.collectionVariables.set(\"Practitioner_Name\", 'dr. Bronsig')"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000001"
}
]
}
},
"response": [
{
"name": "Practitioner - By ID - N10000001",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000005"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000005\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000005\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-08-20T16:27:02.097059+00:00\",\n \"versionid\": \"MTY2MTAxMjgyMjA5NzA1OTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Paul Therapist, PT\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n}"
}
]
},
{
"name": "Practitioner - Search Name, Gender, Birthdate",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner?name=Voigt&gender=male&birthdate=1945",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "name",
"value": "Voigt"
},
{
"key": "gender",
"value": "male"
},
{
"key": "birthdate",
"value": "1945"
}
]
}
},
"response": [
{
"name": "Practitioner - Search Name, Gender, Birthdate",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner?name=Voigt&gender=male&birthdate=1945",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "name",
"value": "Voigt"
},
{
"key": "gender",
"value": "male"
},
{
"key": "birthdate",
"value": "1945"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000002\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"2000-12-12\",\n \"gender\": \"male\",\n \"id\": \"N10000002\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000002\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111223\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:44.125648+00:00\",\n \"versionid\": \"MTY2OTE3MjMyNDEyNTY0ODAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Regfristrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"2015\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000001\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionid\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 2,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Practitioner - Search NIK",
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner?identifier=https://fhir.kemkes.go.id/id/nik|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|367400001111222"
}
]
}
},
"response": [
{
"name": "Practitioner - Search NIK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner?identifier=https://fhir.kemkes.go.id/id/nik|367400001111222",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|367400001111222"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000010\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000010\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000010\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:04:31.188115+00:00\",\n \"versionid\": \"MTY2OTE3MjY3MTE4ODExNTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy Third Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000009\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000009\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000009\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:04:02.773442+00:00\",\n \"versionid\": \"MTY2OTE3MjY0Mjc3MzQ0MjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothies Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000008\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000008\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000008\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:03:35.594418+00:00\",\n \"versionid\": \"MTY2OTE3MjYxNTU5NDQxODAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy Clone\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000007\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000007\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000007\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:00:56.337787+00:00\",\n \"versionid\": \"MTY2OTE3MjQ1NjMzNzc4NzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Dorothy\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000006\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000006\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000006\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T03:00:19.536151+00:00\",\n \"versionid\": \"MTY2OTE3MjQxOTUzNjE1MTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Rus, MD.\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000005\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000005\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000005\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:54.410712+00:00\",\n \"versionid\": \"MTY2OTE3MjM5NDQxMDcxMjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Paul Therapist, PT\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000004\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000004\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000004\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:32.514793+00:00\",\n \"versionid\": \"MTY2OTE3MjM3MjUxNDc5MzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Pamela Educator, RN\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000003\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000003\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000003\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:59:10.522324+00:00\",\n \"versionid\": \"MTY2OTE3MjM1MDUyMjMyNDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Ray Sp.Rad.\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/N10000001\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionid\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n },\n \"search\": {\n \"mode\": \"match\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 9,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Practitioner - By ID - N10000001",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Practitioner_id\", data.id)\r",
"\r",
"var fullName = \"\";\r",
"\r",
"// Check if 'name' field exists and is an array\r",
"if (Array.isArray(data.name)) {\r",
" // Find the 'official' name\r",
" let officialName = data.name.find(name => name.use === \"official\");\r",
"\r",
" // Check if an official name was found\r",
" if (officialName) {\r",
" // Concatenate prefix, text, and suffix\r",
"\r",
" // Add prefix if it exists\r",
" if (Array.isArray(officialName.prefix)) {\r",
" fullName += officialName.prefix.join(\" \") + \" \";\r",
" }\r",
"\r",
" // Add text (main part of the name)\r",
" fullName += officialName.text;\r",
"\r",
" // Add suffix if it exists\r",
" if (Array.isArray(officialName.suffix)) {\r",
" fullName += \", \" + officialName.suffix.join(\" \");\r",
" }\r",
" }\r",
"}\r",
"\r",
"pm.collectionVariables.set(\"Practitioner_Name\", 'dr. Bronsig')"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000001"
}
]
}
},
"response": [
{
"name": "Practitioner - By ID - N10000001",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000005"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000005\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000005\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-08-20T16:27:02.097059+00:00\",\n \"versionid\": \"MTY2MTAxMjgyMjA5NzA1OTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Paul Therapist, PT\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2024-04-24-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n}"
}
]
}
]
}
]
},
{
"name": "01. Membuat Struktur Organisasi dan Lokasi",
"item": [
{
"name": "Organization - Create Divisi Perawatan",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Suborg_uuid\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Divisi Perawatan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"b0a114dd-5ecb-4e37-aa9e-294bcdf119c3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:43:21.018490+00:00\",\n \"versionId\": \"MTcyNTg2MDYwMTAxODQ5MDAwMA\"\n },\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"partOf\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000002\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"team\",\n \"display\": \"Organizational team\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "Organization - Create Poli (Org)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Konsultasi ANC\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_uuid}}\",\n \"display\": \"Divisi Kesehatan Ibu dan Anak\"\n }\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Poli (Org)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Konsultasi ANC\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_uuid}}\",\n \"display\": \"Divisi Kesehatan Ibu dan Anak\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"bc25c28f-6f05-4e09-bc59-aaf324a1e79c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:46:07.044254+00:00\",\n \"versionId\": \"MTcyNTg2MDc2NzA0NDI1NDAwMA\"\n },\n \"name\": \"Konsultasi ANC\",\n \"partOf\": {\n \"display\": \"Divisi Kesehatan Ibu dan Anak\",\n \"reference\": \"Organization/b0a114dd-5ecb-4e37-aa9e-294bcdf119c3\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"team\",\n \"display\": \"Organizational team\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "Location - Create Poli (Ruang)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_Poli}}\"\n }\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Create Poli (Ruang)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_Poli}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"id\": \"98f7d812-c035-4988-bdb4-4036db87ec14\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000002\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/bc25c28f-6f05-4e09-bc59-aaf324a1e79c\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:48:43.091610+00:00\",\n \"versionId\": \"MTcyNTg2MDkyMzA5MTYxMDAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"physicalType\": {\n \"coding\": [\n {\n \"code\": \"ro\",\n \"display\": \"Room\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\"\n }\n ]\n },\n \"position\": {\n \"altitude\": 0,\n \"latitude\": 106.83239885393944,\n \"longitude\": -6.23115426275766\n },\n \"resourceType\": \"Location\",\n \"status\": \"active\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ]\n}"
}
]
},
{
"name": "Organization - Create Divisi Perawatan",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Suborg_uuid\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Divisi Perawatan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"b0a114dd-5ecb-4e37-aa9e-294bcdf119c3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:43:21.018490+00:00\",\n \"versionId\": \"MTcyNTg2MDYwMTAxODQ5MDAwMA\"\n },\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"partOf\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000002\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"team\",\n \"display\": \"Organizational team\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "Location - Create Poli (Ruang)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_Poli}}\"\n }\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Create Poli (Ruang)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_Poli}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"description\": \"Ruang Poli ANC, Departemen KIA, Lantai 2, Gedung Utama\",\n \"id\": \"98f7d812-c035-4988-bdb4-4036db87ec14\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000002\",\n \"value\": \"P-ANC-KIA\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/bc25c28f-6f05-4e09-bc59-aaf324a1e79c\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:48:43.091610+00:00\",\n \"versionId\": \"MTcyNTg2MDkyMzA5MTYxMDAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Ruang Poli ANC, Departemen KIA\",\n \"physicalType\": {\n \"coding\": [\n {\n \"code\": \"ro\",\n \"display\": \"Room\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\"\n }\n ]\n },\n \"position\": {\n \"altitude\": 0,\n \"latitude\": 106.83239885393944,\n \"longitude\": -6.23115426275766\n },\n \"resourceType\": \"Location\",\n \"status\": \"active\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ]\n}"
}
]
},
{
"name": "Organization - Create Poli (Org)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Konsultasi ANC\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_uuid}}\",\n \"display\": \"Divisi Kesehatan Ibu dan Anak\"\n }\n}\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Poli (Org)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"team\",\n \"display\": \"Organizational team\"\n }\n ]\n }\n ],\n \"name\": \"Konsultasi ANC\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_uuid}}\",\n \"display\": \"Divisi Kesehatan Ibu dan Anak\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3578\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"357815\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3578151005\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"bc25c28f-6f05-4e09-bc59-aaf324a1e79c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"SW-KIA-ANC\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-09-09T05:46:07.044254+00:00\",\n \"versionId\": \"MTcyNTg2MDc2NzA0NDI1NDAwMA\"\n },\n \"name\": \"Konsultasi ANC\",\n \"partOf\": {\n \"display\": \"Divisi Kesehatan Ibu dan Anak\",\n \"reference\": \"Organization/b0a114dd-5ecb-4e37-aa9e-294bcdf119c3\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"team\",\n \"display\": \"Organizational team\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\"\n }\n ]\n }\n ]\n}"
}
]
}
]
},
{
"name": "02. Pendaftaran Kunjungan Pasien",
"item": [
{
"name": "Pendaftaran Kunjungan Baru",
"item": [
{
"name": "Encounter - Kunjungan Baru",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Encounter_id\", data.id);;"
],
"type": "text/javascript",
"packages": {}
}
},
{
"listen": "prerequest",
"script": {
"exec": [
"//defining yyymmdd as currentDate's YYYYMMDD in string format\r",
"var now = new Date();\r",
"var year = now.getFullYear();\r",
"var month = String(now.getMonth() + 1).padStart(2, '0');\r",
"var day = String(now.getDate()).padStart(2, '0');\r",
"var yyyymmdd = `${year}${month}${day}`;\r",
"\r",
"//Generating 5 digits of stringified random integer to make Registration_ID number (for test use cases)\r",
"var randomInt = Math.floor(Math.random() * 100000);\r",
"var randomIntPadded = String(randomInt).padStart(5, '0');\r",
"var Registration_ID = yyyymmdd + randomIntPadded;\r",
"\r",
"//Setting CollectionVariable Registration_ID to be used\r",
"pm.collectionVariables.set(\"Registration_ID\", Registration_ID)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
]
}
},
"response": [
{
"name": "Encounter - Kunjungan Baru",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024082474938\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:11:54.849971+00:00\",\n \"versionId\": \"MTcyNDQ0MDMxNDg0OTk3MTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Encounter - Kunjungan Baru",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Encounter_id\", data.id);;"
],
"type": "text/javascript",
"packages": {}
}
},
{
"listen": "prerequest",
"script": {
"exec": [
"//defining yyymmdd as currentDate's YYYYMMDD in string format\r",
"var now = new Date();\r",
"var year = now.getFullYear();\r",
"var month = String(now.getMonth() + 1).padStart(2, '0');\r",
"var day = String(now.getDate()).padStart(2, '0');\r",
"var yyyymmdd = `${year}${month}${day}`;\r",
"\r",
"//Generating 5 digits of stringified random integer to make Registration_ID number (for test use cases)\r",
"var randomInt = Math.floor(Math.random() * 100000);\r",
"var randomIntPadded = String(randomInt).padStart(5, '0');\r",
"var Registration_ID = yyyymmdd + randomIntPadded;\r",
"\r",
"//Setting CollectionVariable Registration_ID to be used\r",
"pm.collectionVariables.set(\"Registration_ID\", Registration_ID)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
]
}
},
"response": [
{
"name": "Encounter - Kunjungan Baru",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024082474938\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:11:54.849971+00:00\",\n \"versionId\": \"MTcyNDQ0MDMxNDg0OTk3MTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
}
]
},
{
"name": "Masuk Ruang",
"item": [
{
"name": "Encounter - Masuk Ruang",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Encounter_Registration_ID}}\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\",\n \"end\": \"2023-06-22T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"response": [
{
"name": "Encounter - Masuk Ruang",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Encounter_Registration_ID}}\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\",\n \"end\": \"2023-06-22T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"AMB\",\n \"display\": \"ambulatory\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"12345\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:13:17.174579+00:00\",\n \"versionId\": \"MTcyNDQ0MDM5NzE3NDU3OTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"status\": \"in-progress\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-06-22T01:00:00+00:00\",\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"status\": \"in-progress\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "Encounter - Masuk Ruang",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Encounter_Registration_ID}}\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\",\n \"end\": \"2023-06-22T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"response": [
{
"name": "Encounter - Masuk Ruang",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Ibu_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Encounter_Registration_ID}}\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\",\n \"end\": \"2023-06-22T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Ibu_uuid}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"AMB\",\n \"display\": \"ambulatory\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"12345\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T00:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T19:13:17.174579+00:00\",\n \"versionId\": \"MTcyNDQ0MDM5NzE3NDU3OTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"status\": \"in-progress\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-06-22T01:00:00+00:00\",\n \"start\": \"2023-06-22T00:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"start\": \"2023-06-22T01:00:00+00:00\"\n },\n \"status\": \"in-progress\"\n }\n ],\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
}
]
},
{
"name": "Pencarian Kunjungan Sebelumnya",
"item": [
{
"name": "Encounter by Kode Kunjungan Internal RS",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Encounter?identifier=http://sys-ids.kemkes.go.id/encounter/{{Org_id}}|O12345",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/encounter/{{Org_id}}|O12345"
}
]
}
},
"response": [
{
"name": "Encounter by Kode Kunjungan Internal RS",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Encounter?identifier=http://sys-ids.kemkes.go.id/encounter/{{Org_id}}|O12345",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/encounter/{{Org_id}}|O12345"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/5cf1ddd2-9901-43d7-8f46-2d85dc3bdc00\",\n \"resource\": {\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"5cf1ddd2-9901-43d7-8f46-2d85dc3bdc00\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O12345\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/creator\",\n \"value\": \"{{Org_id}}\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-11T03:29:37.048722+00:00\",\n \"versionId\": \"MTcyMzM0Njk3NzA0ODcyMjAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Patient - Mother (Teresa Lee)\",\n \"reference\": \"Patient/P02280547535\"\n }\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F{{Org_id}}%7CO12345\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F{{Org_id}}%7CO12345\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F{{Org_id}}%7CO12345\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Encounter by Kode Kunjungan Internal RS",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Encounter?identifier=http://sys-ids.kemkes.go.id/encounter/{{Org_id}}|O12345",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/encounter/{{Org_id}}|O12345"
}
]
}
},
"response": [
{
"name": "Encounter by Kode Kunjungan Internal RS",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Encounter?identifier=http://sys-ids.kemkes.go.id/encounter/{{Org_id}}|O12345",
"host": [
"{{base_url}}"
],
"path": [
"Encounter"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/encounter/{{Org_id}}|O12345"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/5cf1ddd2-9901-43d7-8f46-2d85dc3bdc00\",\n \"resource\": {\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"5cf1ddd2-9901-43d7-8f46-2d85dc3bdc00\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O12345\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/creator\",\n \"value\": \"{{Org_id}}\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-11T03:29:37.048722+00:00\",\n \"versionId\": \"MTcyMzM0Njk3NzA0ODcyMjAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Patient - Mother (Teresa Lee)\",\n \"reference\": \"Patient/P02280547535\"\n }\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F{{Org_id}}%7CO12345\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F{{Org_id}}%7CO12345\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Fencounter%2F{{Org_id}}%7CO12345\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
}
]
}
]
},
{
"name": "03. Alamat Lokasi",
"item": [
{
"name": "Alamat Tinggal",
"item": [
{
"name": "Patient - Menambah Alamat Tinggal",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"add\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/{{Patient_Anak_ID}}",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
"{{Patient_Anak_ID}}"
]
}
},
"response": [
{
"name": "Patient - Menambah Alamat Tinggal",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"add\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/P02280547535",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
"P02280547535"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"12\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"period\": {\n \"end\": \"2010-06-22T15:30:08+00:00\",\n \"start\": \"2000-01-01T15:30:08+00:00\"\n },\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"20231029 Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"20231028 Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"18\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"period\": {\n \"end\": \"2023-09-22T15:30:08+00:00\",\n \"start\": \"2010-06-22T15:30:08+00:00\"\n },\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n }\n ],\n \"birthDate\": \"1987-09-12\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"contact\": [\n {\n \"name\": {\n \"text\": \"Jane Smith\",\n \"use\": \"official\"\n },\n \"relationship\": [\n {\n \"coding\": [\n {\n \"code\": \"C\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\"\n }\n ]\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"0690383372\"\n }\n ]\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P02280547535\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02280547535\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"9104025209000006\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"use\": \"official\",\n \"value\": \"A01111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"use\": \"official\",\n \"value\": \"367400001111111\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b1820190-b086-43e6-9ee9-df7ccb9867ba\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e2bdc3ea-dfce-45c9-a336-1ab40b24a1e4\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c41950ac-e0a2-4021-a345-9908f40e5ed8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/102fc703-e554-43b7-968d-bebbbb1bc2ef\"\n },\n \"type\": \"refer\"\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"code\": \"M\",\n \"display\": \"Married\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\"\n }\n ],\n \"text\": \"Married\"\n },\n \"meta\": {\n \"lastUpdated\": \"2023-10-29T13:02:42.513057+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionId\": \"MTY5ODU4NDU2MjUxMzA1NzAwMA\"\n },\n \"multipleBirthInteger\": 0,\n \"name\": [\n {\n \"text\": \"patient 6\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n}"
}
]
},
{
"name": "Patient - Update Alamat Tinggal",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"replace\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/{{Patient_Anak_ID}}",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
"{{Patient_Anak_ID}}"
]
}
},
"response": [
{
"name": "Patient - Update Alamat Tinggal",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"replace\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url_satset}}/Patient/P02029412006",
"host": [
"{{base_url_satset}}"
],
"path": [
"Patient",
"P02029412006"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"1101\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1101\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"110101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1101012001\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"12\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"SAMPOERNA STRATEGIC\"\n ],\n \"postalCode\": \"55292\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n }\n ],\n \"birthDate\": \"2024-03-10\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bogor\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P02029412006\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"92040148040001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"9271060312000002\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029412006\"\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"code\": \"S\",\n \"display\": \"Never Married\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\"\n }\n ]\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-13T08:03:49.500209+00:00\",\n \"versionId\": \"MTcxMDMxNzAyOTUwMDIwOTAwMA\"\n },\n \"multipleBirthInteger\": 0,\n \"name\": [\n {\n \"text\": \"Y2u***\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08132928237348\"\n }\n ]\n}"
}
]
},
{
"name": "Patient - Menambah Alamat Tinggal",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"add\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/{{Patient_Anak_ID}}",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
"{{Patient_Anak_ID}}"
]
}
},
"response": [
{
"name": "Patient - Menambah Alamat Tinggal",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"add\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/P02280547535",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
"P02280547535"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"12\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"period\": {\n \"end\": \"2010-06-22T15:30:08+00:00\",\n \"start\": \"2000-01-01T15:30:08+00:00\"\n },\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"20231029 Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"20231028 Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"18\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"period\": {\n \"end\": \"2023-09-22T15:30:08+00:00\",\n \"start\": \"2010-06-22T15:30:08+00:00\"\n },\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n }\n ],\n \"birthDate\": \"1987-09-12\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"contact\": [\n {\n \"name\": {\n \"text\": \"Jane Smith\",\n \"use\": \"official\"\n },\n \"relationship\": [\n {\n \"coding\": [\n {\n \"code\": \"C\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\"\n }\n ]\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"0690383372\"\n }\n ]\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bandung\",\n \"country\": \"ID\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P02280547535\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02280547535\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"9104025209000006\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/paspor\",\n \"use\": \"official\",\n \"value\": \"A01111222\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/kk\",\n \"use\": \"official\",\n \"value\": \"367400001111111\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/b1820190-b086-43e6-9ee9-df7ccb9867ba\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e2bdc3ea-dfce-45c9-a336-1ab40b24a1e4\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/c41950ac-e0a2-4021-a345-9908f40e5ed8\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/102fc703-e554-43b7-968d-bebbbb1bc2ef\"\n },\n \"type\": \"refer\"\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"code\": \"M\",\n \"display\": \"Married\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\"\n }\n ],\n \"text\": \"Married\"\n },\n \"meta\": {\n \"lastUpdated\": \"2023-10-29T13:02:42.513057+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient|4.0.1\",\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Patient\"\n ],\n \"versionId\": \"MTY5ODU4NDU2MjUxMzA1NzAwMA\"\n },\n \"multipleBirthInteger\": 0,\n \"name\": [\n {\n \"text\": \"patient 6\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"[email protected]\"\n }\n ]\n}"
}
]
},
{
"name": "Patient - Update Alamat Tinggal",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"replace\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/{{Patient_Anak_ID}}",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
"{{Patient_Anak_ID}}"
]
}
},
"response": [
{
"name": "Patient - Update Alamat Tinggal",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n { \r\n \"op\": \"replace\", \"path\": \"/address/1\", \"value\": \r\n { \r\n \"use\": \"temp\",\r\n \"line\": [\r\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\r\n ],\r\n \"city\": \"Jakarta index new1\",\r\n \"postalCode\": \"12950\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"1010\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"1010101\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"1010101101\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"2\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"2\"\r\n }\r\n ]\r\n }\r\n ]\r\n } \r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url_satset}}/Patient/P02029412006",
"host": [
"{{base_url_satset}}"
],
"path": [
"Patient",
"P02029412006"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"1101\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"11\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1101\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"110101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1101012001\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"12\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"SAMPOERNA STRATEGIC\"\n ],\n \"postalCode\": \"55292\",\n \"use\": \"temp\"\n },\n {\n \"city\": \"Jakarta index new1\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"2\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Dr. Sujuki Lt.1, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"temp\"\n }\n ],\n \"birthDate\": \"2024-03-10\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace\",\n \"valueAddress\": {\n \"city\": \"Bogor\"\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P02029412006\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"92040148040001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik-ibu\",\n \"use\": \"official\",\n \"value\": \"9271060312000002\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029412006\"\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"code\": \"S\",\n \"display\": \"Never Married\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-MaritalStatus\"\n }\n ]\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-13T08:03:49.500209+00:00\",\n \"versionId\": \"MTcxMDMxNzAyOTUwMDIwOTAwMA\"\n },\n \"multipleBirthInteger\": 0,\n \"name\": [\n {\n \"text\": \"Y2u***\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08132928237348\"\n }\n ]\n}"
}
]
}
]
}
]
},
{
"name": "04. Riwayat Kematian Bayi",
"item": [
{
"name": "Jenis Kematian",
"item": [
{
"name": "Observation - Jenis Kematian",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276506001\",\n \"display\": \"Newborn death\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Kematian",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276506001\",\n \"display\": \"Newborn death\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"77f93007-386b-4d68-8b0e-afcac65e70e4\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T04:45:29.415600+00:00\",\n \"versionId\": \"MTcyNDQ3NDcyOTQxNTYwMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"276506001\",\n \"display\": \"Newborn death\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Jenis Kematian",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276506001\",\n \"display\": \"Newborn death\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Kematian",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276506001\",\n \"display\": \"Newborn death\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"77f93007-386b-4d68-8b0e-afcac65e70e4\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T04:45:29.415600+00:00\",\n \"versionId\": \"MTcyNDQ3NDcyOTQxNTYwMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"276506001\",\n \"display\": \"Newborn death\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Usia saat Meninggal",
"item": [
{
"name": "Observation - Usia saat Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"39016-1\",\n \"display\" : \"Age at death\"\n }\n ]\n },\n \n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\" : 120,\n \"unit\" : \"minutes\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Usia saat Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39016-1\",\n \"display\": \"Age at death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 120,\n \"unit\": \"minutes\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"39016-1\",\n \"display\": \"Age at death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"dc10511b-6ac5-4ac8-a568-c5d2e7c91286\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T04:45:38.490930+00:00\",\n \"versionId\": \"MTcyNDQ3NDczODQ5MDkzMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"minutes\",\n \"value\": 120\n }\n}"
}
]
},
{
"name": "Observation - Usia saat Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"39016-1\",\n \"display\" : \"Age at death\"\n }\n ]\n },\n \n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\" : 120,\n \"unit\" : \"minutes\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Usia saat Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39016-1\",\n \"display\": \"Age at death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 120,\n \"unit\": \"minutes\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"39016-1\",\n \"display\": \"Age at death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"dc10511b-6ac5-4ac8-a568-c5d2e7c91286\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T04:45:38.490930+00:00\",\n \"versionId\": \"MTcyNDQ3NDczODQ5MDkzMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"minutes\",\n \"value\": 120\n }\n}"
}
]
}
]
},
{
"name": "Berat Saat Meninggal",
"item": [
{
"name": "Observation - Berat Saat Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\" : \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\" : \"OC000030\",\n \"display\" : \"Berat saat meninggal\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\" : {\n \"value\" : 3000,\n \"unit\" : \"gram\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Berat Saat Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000030\",\n \"display\": \"Berat saat meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000030\",\n \"display\": \"Berat saat meninggal\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"a5455c49-f978-40c8-bdd7-9bbaaccbaf2d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T04:45:47.895569+00:00\",\n \"versionId\": \"MTcyNDQ3NDc0Nzg5NTU2OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"gram\",\n \"value\": 3000\n }\n}"
}
]
},
{
"name": "Observation - Berat Saat Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\" : \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\" : \"OC000030\",\n \"display\" : \"Berat saat meninggal\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\" : {\n \"value\" : 3000,\n \"unit\" : \"gram\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Berat Saat Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000030\",\n \"display\": \"Berat saat meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000030\",\n \"display\": \"Berat saat meninggal\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"a5455c49-f978-40c8-bdd7-9bbaaccbaf2d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T04:45:47.895569+00:00\",\n \"versionId\": \"MTcyNDQ3NDc0Nzg5NTU2OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"gram\",\n \"value\": 3000\n }\n}"
}
]
}
]
},
{
"name": "Tanggal dan Jam Meninggal",
"item": [
{
"name": "Observation - Tanggal dan Jam Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tanggal dan Jam Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"a58fa099-418c-42a2-ab98-4ca1eeca41e1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T04:45:57.411674+00:00\",\n \"versionId\": \"MTcyNDQ3NDc1NzQxMTY3NDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n}"
}
]
},
{
"name": "Observation - Tanggal dan Jam Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tanggal dan Jam Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"a58fa099-418c-42a2-ab98-4ca1eeca41e1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T04:45:57.411674+00:00\",\n \"versionId\": \"MTcyNDQ3NDc1NzQxMTY3NDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n}"
}
]
}
]
},
{
"name": "Dugaan Sebab Kematian",
"item": [
{
"name": "Observation - Dugaan Sebab Kematian - ICD Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N\",\n \"display\": \"Neonatal death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dugaan Sebab Kematian - ICD Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N\",\n \"display\": \"Neonatal death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"N\",\n \"display\": \"Neonatal death\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"9ce1117d-be50-40cd-9059-5ee7bda9d99e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111112\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T04:46:52.317527+00:00\",\n \"versionId\": \"MTcyNDQ3NDgxMjMxNzUyNzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n}"
}
]
},
{
"name": "Observation - Dugaan Sebab Kematian - ICD 3 or 4 digit & Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N\",\n \"display\": \"Neonatal death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dugaan Sebab Kematian - ICD 3 or 4 digit & Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N\",\n \"display\": \"Neonatal death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"N\",\n \"display\": \"Neonatal death\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"129216c0-8ed0-4c69-8589-2977ede38b95\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:29:37.488220+00:00\",\n \"versionId\": \"MTcyNDQ3NzM3NzQ4ODIyMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n}"
}
]
},
{
"name": "Observation - Dugaan Sebab Kematian - ICD Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N\",\n \"display\": \"Neonatal death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dugaan Sebab Kematian - ICD Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N\",\n \"display\": \"Neonatal death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"N\",\n \"display\": \"Neonatal death\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"9ce1117d-be50-40cd-9059-5ee7bda9d99e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111112\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T04:46:52.317527+00:00\",\n \"versionId\": \"MTcyNDQ3NDgxMjMxNzUyNzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n}"
}
]
},
{
"name": "Observation - Dugaan Sebab Kematian - ICD 3 or 4 digit & Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N\",\n \"display\": \"Neonatal death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dugaan Sebab Kematian - ICD 3 or 4 digit & Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N\",\n \"display\": \"Neonatal death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"N\",\n \"display\": \"Neonatal death\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"129216c0-8ed0-4c69-8589-2977ede38b95\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:29:37.488220+00:00\",\n \"versionId\": \"MTcyNDQ3NzM3NzQ4ODIyMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n}"
}
]
}
]
},
{
"name": "Panjang Saat Meninggal",
"item": [
{
"name": "Observation - Panjang Saat Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\" : \"final\",\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"8302-2\",\n \"display\" : \"Body height\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\" : {\n \"value\" : 46.5,\n \"unit\" : \"centimeter\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Panjang Saat Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 46.5,\n \"unit\": \"centimeter\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"8302-2\",\n \"display\": \"Body height\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"29563b5a-52ef-4078-a416-470d12cc4fab\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:29:49.139780+00:00\",\n \"versionId\": \"MTcyNDQ3NzM4OTEzOTc4MDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"centimeter\",\n \"value\": 46.5\n }\n}"
}
]
},
{
"name": "Observation - Panjang Saat Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\" : \"final\",\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"8302-2\",\n \"display\" : \"Body height\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\" : {\n \"value\" : 46.5,\n \"unit\" : \"centimeter\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Panjang Saat Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 46.5,\n \"unit\": \"centimeter\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"8302-2\",\n \"display\": \"Body height\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"29563b5a-52ef-4078-a416-470d12cc4fab\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:29:49.139780+00:00\",\n \"versionId\": \"MTcyNDQ3NzM4OTEzOTc4MDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"centimeter\",\n \"value\": 46.5\n }\n}"
}
]
}
]
},
{
"name": "Jenis Tempat Meninggal",
"item": [
{
"name": "Observation - Jenis Tempat Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\" : \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\" : \"OC000028\",\n \"display\" : \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" :\"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\" : \"OT000006\",\n \"display\" : \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\" : \"RS Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Tempat Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"90dd534c-c1d0-4e76-b27d-720e3fe46c40\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:30:09.359541+00:00\",\n \"versionId\": \"MTcyNDQ3NzQwOTM1OTU0MTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n}"
}
]
},
{
"name": "Observation - Jenis Tempat Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\" : \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\" : \"OC000028\",\n \"display\" : \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" :\"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\" : \"OT000006\",\n \"display\" : \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\" : \"RS Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Tempat Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"90dd534c-c1d0-4e76-b27d-720e3fe46c40\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:30:09.359541+00:00\",\n \"versionId\": \"MTcyNDQ3NzQwOTM1OTU0MTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n}"
}
]
}
]
},
{
"name": "Kondisi Ibu yang dapat mempengaruhi janin",
"item": [
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M5\",\n \"display\": \"No maternal condition identified\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M5\",\n \"display\": \"No maternal condition identified\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M\",\n \"display\": \"Maternal condition\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M5\",\n \"display\": \"No maternal condition identified\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"96033160-0346-4ace-966f-b7fe7af5688e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:30:21.221030+00:00\",\n \"versionId\": \"MTcyNDQ3NzQyMTIyMTAzMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n}"
}
]
},
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD 3 or 4 digit & Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD 3 or 4 digit & Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M\",\n \"display\": \"Maternal condition\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"cc84536a-ce1c-4ddd-98d4-26a8ab170875\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:30:37.646547+00:00\",\n \"versionId\": \"MTcyNDQ3NzQzNzY0NjU0NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n}"
}
]
},
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M5\",\n \"display\": \"No maternal condition identified\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M5\",\n \"display\": \"No maternal condition identified\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M\",\n \"display\": \"Maternal condition\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M5\",\n \"display\": \"No maternal condition identified\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"96033160-0346-4ace-966f-b7fe7af5688e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:30:21.221030+00:00\",\n \"versionId\": \"MTcyNDQ3NzQyMTIyMTAzMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n}"
}
]
},
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD 3 or 4 digit & Grouping",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kondisi Ibu yang dapat mempengaruhi janin - ICD 3 or 4 digit & Grouping",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000019\",\n \"display\": \"Kode group\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M\",\n \"display\": \"Maternal condition\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"cc84536a-ce1c-4ddd-98d4-26a8ab170875\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:30:37.646547+00:00\",\n \"versionId\": \"MTcyNDQ3NzQzNzY0NjU0NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "05. Riwayat Persalinan",
"item": [
{
"name": "Janin yang meninggal (Untuk bayi kembar)",
"item": [
{
"name": "Observation - Janin yang meninggal (Untuk bayi kembar)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\" : \"OV000398\",\n \"display\" : \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Janin yang meninggal (Untuk bayi kembar)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"2054d96b-a2f3-475f-9afa-870047b70b20\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:30:55.895308+00:00\",\n \"versionId\": \"MTcyNDQ3NzQ1NTg5NTMwODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Janin yang meninggal (Untuk bayi kembar)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\" : \"OV000398\",\n \"display\" : \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Janin yang meninggal (Untuk bayi kembar)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"2054d96b-a2f3-475f-9afa-870047b70b20\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:30:55.895308+00:00\",\n \"versionId\": \"MTcyNDQ3NzQ1NTg5NTMwODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Jenis Tempat Bersalin",
"item": [
{
"name": "Observation - Jenis Tempat Bersalin",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\" : \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"72150-6\",\n \"display\" : \"Delivery location\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\" : \"OT000006\",\n \"display\" : \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\" : \"Rumah Sakit Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Tempat Bersalin",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72150-6\",\n \"display\": \"Delivery location\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"Rumah Sakit Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"72150-6\",\n \"display\": \"Delivery location\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"a0b18fbd-5c11-49aa-a320-7816efb43b8a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:31:08.015936+00:00\",\n \"versionId\": \"MTcyNDQ3NzQ2ODAxNTkzNjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\"\n }\n ],\n \"text\": \"Rumah Sakit Pemerintah\"\n }\n}"
}
]
},
{
"name": "Observation - Jenis Tempat Bersalin",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\" : \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"72150-6\",\n \"display\" : \"Delivery location\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\" : \"OT000006\",\n \"display\" : \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\" : \"Rumah Sakit Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Tempat Bersalin",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72150-6\",\n \"display\": \"Delivery location\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"Rumah Sakit Pemerintah\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"72150-6\",\n \"display\": \"Delivery location\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"a0b18fbd-5c11-49aa-a320-7816efb43b8a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:31:08.015936+00:00\",\n \"versionId\": \"MTcyNDQ3NzQ2ODAxNTkzNjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\"\n }\n ],\n \"text\": \"Rumah Sakit Pemerintah\"\n }\n}"
}
]
}
]
},
{
"name": "Berat Lahir",
"item": [
{
"name": "Observation - Berat Lahir",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\" : \"final\",\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"8339-4\",\n \"display\" : \"Birth weight Measured\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\" : {\n \"value\" : 3000,\n \"unit\" : \"gram\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Berat Lahir",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"71ba0e51-95e5-4868-acff-480182a4b5dd\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111112\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:31:19.632922+00:00\",\n \"versionId\": \"MTcyNDQ3NzQ3OTYzMjkyMjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"gram\",\n \"value\": 3000\n }\n}"
}
]
},
{
"name": "Observation - Berat Lahir",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\" : \"final\",\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"8339-4\",\n \"display\" : \"Birth weight Measured\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\" : {\n \"value\" : 3000,\n \"unit\" : \"gram\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Berat Lahir",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"71ba0e51-95e5-4868-acff-480182a4b5dd\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111112\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:31:19.632922+00:00\",\n \"versionId\": \"MTcyNDQ3NzQ3OTYzMjkyMjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"gram\",\n \"value\": 3000\n }\n}"
}
]
}
]
},
{
"name": "Lingkar Kepala",
"item": [
{
"name": "Observation - Lingkar Kepala",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\" : \"final\",\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"9843-4\",\n \"display\" : \"Head Occipital-frontal circumference\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\" : {\n \"value\" : 35,\n \"unit\" : \"centimeter\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lingkar Kepala",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9843-4\",\n \"display\": \"Head Occipital-frontal circumference\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"centimeter\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"9843-4\",\n \"display\": \"Head Occipital-frontal circumference\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"c5b266ed-e510-4f82-8738-d52d2ae4ba21\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:31:34.258789+00:00\",\n \"versionId\": \"MTcyNDQ3NzQ5NDI1ODc4OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"centimeter\",\n \"value\": 35\n }\n}"
}
]
},
{
"name": "Observation - Lingkar Kepala",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\" : \"final\",\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"9843-4\",\n \"display\" : \"Head Occipital-frontal circumference\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\" : {\n \"value\" : 35,\n \"unit\" : \"centimeter\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lingkar Kepala",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9843-4\",\n \"display\": \"Head Occipital-frontal circumference\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"centimeter\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"9843-4\",\n \"display\": \"Head Occipital-frontal circumference\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"c5b266ed-e510-4f82-8738-d52d2ae4ba21\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:31:34.258789+00:00\",\n \"versionId\": \"MTcyNDQ3NzQ5NDI1ODc4OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"centimeter\",\n \"value\": 35\n }\n}"
}
]
}
]
},
{
"name": "APGAR menit ke-1",
"item": [
{
"name": "Observation - Appearance (Warna Kulit)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32406-1\",\n \"display\": \"1 minute Apgar Color\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Appearance (Warna Kulit)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32406-1\",\n \"display\": \"1 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32406-1\",\n \"display\": \"1 minute Apgar Color\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"df5c107c-c384-4655-8162-d27629cc94c9\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:31:47.502888+00:00\",\n \"versionId\": \"MTcyNDQ3NzUwNzUwMjg4ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Pulse (Denyut Jantung)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32407-9\",\n \"display\": \"1 minute Apgar Heart rate\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6718-6\",\n \"display\": \"At least 100 beats per minute\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Pulse (Denyut Jantung)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32407-9\",\n \"display\": \"1 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6718-6\",\n \"display\": \"At least 100 beats per minute\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32407-9\",\n \"display\": \"1 minute Apgar Heart rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"69b68e69-b6da-4be7-849c-600eaf2016a7\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:32:03.601298+00:00\",\n \"versionId\": \"MTcyNDQ3NzUyMzYwMTI5ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6718-6\",\n \"display\": \"At least 100 beats per minute\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Grimace (Reflkes Terhadap Stimulus Taktil)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32409-5\",\n \"display\": \"1 minute Apgar Reflex irritability\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6721-0\",\n \"display\": \"Grimace and pulling away, cough, or sneeze during suctioning\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Grimace (Reflkes Terhadap Stimulus Taktil)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32409-5\",\n \"display\": \"1 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6721-0\",\n \"display\": \"Grimace and pulling away, cough, or sneeze during suctioning\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32409-5\",\n \"display\": \"1 minute Apgar Reflex irritability\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"6c6944d6-65ab-48a4-87bc-aa21348e3a89\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:32:16.017200+00:00\",\n \"versionId\": \"MTcyNDQ3NzUzNjAxNzIwMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6721-0\",\n \"display\": \"Grimace and pulling away, cough, or sneeze during suctioning\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Activity (Tonus Otot)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32408-7\",\n \"display\": \"1 minute Apgar Muscle tone\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Activity (Tonus Otot)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32408-7\",\n \"display\": \"1 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32408-7\",\n \"display\": \"1 minute Apgar Muscle tone\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"04a0f8b2-ee1f-4050-b828-55e49735e210\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:34:32.993862+00:00\",\n \"versionId\": \"MTcyNDQ3NzY3Mjk5Mzg2MjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Respiration (Pernapasan)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32410-3\",\n \"display\": \"1 minute Apgar Respiratory effort\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Respiration (Pernapasan)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32410-3\",\n \"display\": \"1 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32410-3\",\n \"display\": \"1 minute Apgar Respiratory effort\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"50a0bb7d-68da-48c9-a6fc-ec83a99fbc43\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:34:50.225694+00:00\",\n \"versionId\": \"MTcyNDQ3NzY5MDIyNTY5NDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Total Skor APGAR menit ke-1",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9272-6\",\n \"display\": \"1 minute Apgar Score\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Total Skor APGAR menit ke-1",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9272-6\",\n \"display\": \"1 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"9272-6\",\n \"display\": \"1 minute Apgar Score\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"5ac2eefc-f69b-465d-9b52-8bbe2b4ff66c\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:35:13.250147+00:00\",\n \"versionId\": \"MTcyNDQ3NzcxMzI1MDE0NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 6\n }\n}"
}
]
},
{
"name": "Observation - Grimace (Reflkes Terhadap Stimulus Taktil)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32409-5\",\n \"display\": \"1 minute Apgar Reflex irritability\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6721-0\",\n \"display\": \"Grimace and pulling away, cough, or sneeze during suctioning\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Grimace (Reflkes Terhadap Stimulus Taktil)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32409-5\",\n \"display\": \"1 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6721-0\",\n \"display\": \"Grimace and pulling away, cough, or sneeze during suctioning\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32409-5\",\n \"display\": \"1 minute Apgar Reflex irritability\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"6c6944d6-65ab-48a4-87bc-aa21348e3a89\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:32:16.017200+00:00\",\n \"versionId\": \"MTcyNDQ3NzUzNjAxNzIwMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6721-0\",\n \"display\": \"Grimace and pulling away, cough, or sneeze during suctioning\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Pulse (Denyut Jantung)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32407-9\",\n \"display\": \"1 minute Apgar Heart rate\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6718-6\",\n \"display\": \"At least 100 beats per minute\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Pulse (Denyut Jantung)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32407-9\",\n \"display\": \"1 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6718-6\",\n \"display\": \"At least 100 beats per minute\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32407-9\",\n \"display\": \"1 minute Apgar Heart rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"69b68e69-b6da-4be7-849c-600eaf2016a7\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:32:03.601298+00:00\",\n \"versionId\": \"MTcyNDQ3NzUyMzYwMTI5ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6718-6\",\n \"display\": \"At least 100 beats per minute\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Appearance (Warna Kulit)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32406-1\",\n \"display\": \"1 minute Apgar Color\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Appearance (Warna Kulit)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32406-1\",\n \"display\": \"1 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32406-1\",\n \"display\": \"1 minute Apgar Color\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"df5c107c-c384-4655-8162-d27629cc94c9\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:31:47.502888+00:00\",\n \"versionId\": \"MTcyNDQ3NzUwNzUwMjg4ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Respiration (Pernapasan)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32410-3\",\n \"display\": \"1 minute Apgar Respiratory effort\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Respiration (Pernapasan)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32410-3\",\n \"display\": \"1 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32410-3\",\n \"display\": \"1 minute Apgar Respiratory effort\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"50a0bb7d-68da-48c9-a6fc-ec83a99fbc43\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:34:50.225694+00:00\",\n \"versionId\": \"MTcyNDQ3NzY5MDIyNTY5NDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Activity (Tonus Otot)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32408-7\",\n \"display\": \"1 minute Apgar Muscle tone\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Activity (Tonus Otot)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32408-7\",\n \"display\": \"1 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32408-7\",\n \"display\": \"1 minute Apgar Muscle tone\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"04a0f8b2-ee1f-4050-b828-55e49735e210\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:34:32.993862+00:00\",\n \"versionId\": \"MTcyNDQ3NzY3Mjk5Mzg2MjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Total Skor APGAR menit ke-1",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9272-6\",\n \"display\": \"1 minute Apgar Score\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Total Skor APGAR menit ke-1",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9272-6\",\n \"display\": \"1 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"9272-6\",\n \"display\": \"1 minute Apgar Score\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"5ac2eefc-f69b-465d-9b52-8bbe2b4ff66c\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:35:13.250147+00:00\",\n \"versionId\": \"MTcyNDQ3NzcxMzI1MDE0NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 6\n }\n}"
}
]
}
]
},
{
"name": "APGAR menit ke-5",
"item": [
{
"name": "Observation - Appearance (Warna Kulit)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32411-1\",\n \"display\": \"5 minute Apgar Color\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Appearance (Warna Kulit)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32411-1\",\n \"display\": \"5 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32411-1\",\n \"display\": \"5 minute Apgar Color\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"8d1d9338-00fc-4707-9c3b-0343d3c8b1c9\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:36:00.976966+00:00\",\n \"versionId\": \"MTcyNDQ3Nzc2MDk3Njk2NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Pulse (Denyut Jantung)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32412-9\",\n \"display\": \"5 minute Apgar Heart rate\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Pulse (Denyut Jantung)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32412-9\",\n \"display\": \"5 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32412-9\",\n \"display\": \"5 minute Apgar Heart rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"96189b2f-b723-43b4-8950-cbd44037f108\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:36:22.041301+00:00\",\n \"versionId\": \"MTcyNDQ3Nzc4MjA0MTMwMTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Grimace (Reflkes Terhadap Stimulus Taktil)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32414-5\",\n \"display\": \"5 minute Apgar Reflex irritability\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Grimace (Reflkes Terhadap Stimulus Taktil)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32414-5\",\n \"display\": \"5 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32414-5\",\n \"display\": \"5 minute Apgar Reflex irritability\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"9bceca89-88c1-4ac3-ab6d-2dcc4644a8ad\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:36:39.602657+00:00\",\n \"versionId\": \"MTcyNDQ3Nzc5OTYwMjY1NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Activity (Tonus Otot)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32413-7\",\n \"display\": \"5 minute Apgar Muscle tone\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Activity (Tonus Otot)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32413-7\",\n \"display\": \"5 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32413-7\",\n \"display\": \"5 minute Apgar Muscle tone\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"04a73e89-0725-4356-be2c-2cf5977be3eb\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:36:56.750068+00:00\",\n \"versionId\": \"MTcyNDQ3NzgxNjc1MDA2ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Respiration (Pernapasan)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32415-2\",\n \"display\": \"5 minute Apgar Respiratory effort\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Respiration (Pernapasan)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32415-2\",\n \"display\": \"5 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32415-2\",\n \"display\": \"5 minute Apgar Respiratory effort\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"a048a80d-4cc7-406e-af99-fe40c8d7931d\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:37:42.400960+00:00\",\n \"versionId\": \"MTcyNDQ3Nzg2MjQwMDk2MDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Total Skor APGAR menit ke-5",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9274-2\",\n \"display\": \"5 minute Apgar Score\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Total Skor APGAR menit ke-5",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9274-2\",\n \"display\": \"5 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"9274-2\",\n \"display\": \"5 minute Apgar Score\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"3c6f9a9b-266f-4937-b0f8-2cdc1a50335e\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:37:16.061000+00:00\",\n \"versionId\": \"MTcyNDQ3NzgzNjA2MTAwMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 6\n }\n}"
}
]
},
{
"name": "Observation - Total Skor APGAR menit ke-5",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9274-2\",\n \"display\": \"5 minute Apgar Score\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Total Skor APGAR menit ke-5",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9274-2\",\n \"display\": \"5 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"9274-2\",\n \"display\": \"5 minute Apgar Score\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"3c6f9a9b-266f-4937-b0f8-2cdc1a50335e\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:37:16.061000+00:00\",\n \"versionId\": \"MTcyNDQ3NzgzNjA2MTAwMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 6\n }\n}"
}
]
},
{
"name": "Observation - Appearance (Warna Kulit)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32411-1\",\n \"display\": \"5 minute Apgar Color\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Appearance (Warna Kulit)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32411-1\",\n \"display\": \"5 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32411-1\",\n \"display\": \"5 minute Apgar Color\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"8d1d9338-00fc-4707-9c3b-0343d3c8b1c9\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:36:00.976966+00:00\",\n \"versionId\": \"MTcyNDQ3Nzc2MDk3Njk2NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Pulse (Denyut Jantung)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32412-9\",\n \"display\": \"5 minute Apgar Heart rate\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Pulse (Denyut Jantung)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32412-9\",\n \"display\": \"5 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32412-9\",\n \"display\": \"5 minute Apgar Heart rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"96189b2f-b723-43b4-8950-cbd44037f108\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:36:22.041301+00:00\",\n \"versionId\": \"MTcyNDQ3Nzc4MjA0MTMwMTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Grimace (Reflkes Terhadap Stimulus Taktil)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32414-5\",\n \"display\": \"5 minute Apgar Reflex irritability\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Grimace (Reflkes Terhadap Stimulus Taktil)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32414-5\",\n \"display\": \"5 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32414-5\",\n \"display\": \"5 minute Apgar Reflex irritability\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"9bceca89-88c1-4ac3-ab6d-2dcc4644a8ad\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:36:39.602657+00:00\",\n \"versionId\": \"MTcyNDQ3Nzc5OTYwMjY1NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Respiration (Pernapasan)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32415-2\",\n \"display\": \"5 minute Apgar Respiratory effort\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Respiration (Pernapasan)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32415-2\",\n \"display\": \"5 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32415-2\",\n \"display\": \"5 minute Apgar Respiratory effort\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"a048a80d-4cc7-406e-af99-fe40c8d7931d\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:37:42.400960+00:00\",\n \"versionId\": \"MTcyNDQ3Nzg2MjQwMDk2MDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Activity (Tonus Otot)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32413-7\",\n \"display\": \"5 minute Apgar Muscle tone\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Activity (Tonus Otot)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32413-7\",\n \"display\": \"5 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32413-7\",\n \"display\": \"5 minute Apgar Muscle tone\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"04a73e89-0725-4356-be2c-2cf5977be3eb\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:36:56.750068+00:00\",\n \"versionId\": \"MTcyNDQ3NzgxNjc1MDA2ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "APGAR menit ke-10",
"item": [
{
"name": "Observation - Appearance (Warna Kulit)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32401-2\",\n \"display\": \"10 minute Apgar Color\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Appearance (Warna Kulit)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32401-2\",\n \"display\": \"10 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32401-2\",\n \"display\": \"10 minute Apgar Color\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"68df6942-a722-433d-9d58-4610b183526c\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:38:02.362477+00:00\",\n \"versionId\": \"MTcyNDQ3Nzg4MjM2MjQ3NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Pulse (Denyut Jantung)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32402-0\",\n \"display\": \"10 minute Apgar Heart rate\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Pulse (Denyut Jantung)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32402-0\",\n \"display\": \"10 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32402-0\",\n \"display\": \"10 minute Apgar Heart rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"0ff228ce-2c5c-499b-b76c-7b8c3a393987\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:38:23.596665+00:00\",\n \"versionId\": \"MTcyNDQ3NzkwMzU5NjY2NTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Grimace (Reflkes Terhadap Stimulus Taktil)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32404-6\",\n \"display\": \"10 minute Apgar Reflex irritability\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Grimace (Reflkes Terhadap Stimulus Taktil)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32404-6\",\n \"display\": \"10 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32404-6\",\n \"display\": \"10 minute Apgar Reflex irritability\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"05c9094b-9f64-428c-8657-dbb6e35edd26\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:38:49.060032+00:00\",\n \"versionId\": \"MTcyNDQ3NzkyOTA2MDAzMjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Activity (Tonus Otot)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32403-8\",\n \"display\": \"10 minute Apgar Muscle tone\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Activity (Tonus Otot)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32403-8\",\n \"display\": \"10 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32403-8\",\n \"display\": \"10 minute Apgar Muscle tone\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"d2d45b8c-048e-463c-ae4e-cd643e99ca67\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:40:49.859150+00:00\",\n \"versionId\": \"MTcyNDQ3ODA0OTg1OTE1MDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Respiration (Pernapasan)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32405-3\",\n \"display\": \"10 minute Apgar Respiratory effort\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Respiration (Pernapasan)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32405-3\",\n \"display\": \"10 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32405-3\",\n \"display\": \"10 minute Apgar Respiratory effort\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"c331e694-c8e9-4c43-aa95-c5a8a956d9f0\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:41:12.177712+00:00\",\n \"versionId\": \"MTcyNDQ3ODA3MjE3NzcxMjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Total Skor APGAR menit ke-10",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9271-8\",\n \"display\": \"10 minute Apgar Score\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Total Skor APGAR menit ke-10",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9271-8\",\n \"display\": \"10 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"9271-8\",\n \"display\": \"10 minute Apgar Score\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"82a3a2a6-bc3e-407b-bdbc-36b6bd333d35\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:41:34.073483+00:00\",\n \"versionId\": \"MTcyNDQ3ODA5NDA3MzQ4MzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 6\n }\n}"
}
]
},
{
"name": "Observation - Appearance (Warna Kulit)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32401-2\",\n \"display\": \"10 minute Apgar Color\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Appearance (Warna Kulit)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32401-2\",\n \"display\": \"10 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32401-2\",\n \"display\": \"10 minute Apgar Color\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"68df6942-a722-433d-9d58-4610b183526c\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:38:02.362477+00:00\",\n \"versionId\": \"MTcyNDQ3Nzg4MjM2MjQ3NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Grimace (Reflkes Terhadap Stimulus Taktil)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32404-6\",\n \"display\": \"10 minute Apgar Reflex irritability\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Grimace (Reflkes Terhadap Stimulus Taktil)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32404-6\",\n \"display\": \"10 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32404-6\",\n \"display\": \"10 minute Apgar Reflex irritability\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"05c9094b-9f64-428c-8657-dbb6e35edd26\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:38:49.060032+00:00\",\n \"versionId\": \"MTcyNDQ3NzkyOTA2MDAzMjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Pulse (Denyut Jantung)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32402-0\",\n \"display\": \"10 minute Apgar Heart rate\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Pulse (Denyut Jantung)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32402-0\",\n \"display\": \"10 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32402-0\",\n \"display\": \"10 minute Apgar Heart rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"0ff228ce-2c5c-499b-b76c-7b8c3a393987\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:38:23.596665+00:00\",\n \"versionId\": \"MTcyNDQ3NzkwMzU5NjY2NTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Total Skor APGAR menit ke-10",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9271-8\",\n \"display\": \"10 minute Apgar Score\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Total Skor APGAR menit ke-10",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9271-8\",\n \"display\": \"10 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"9271-8\",\n \"display\": \"10 minute Apgar Score\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"82a3a2a6-bc3e-407b-bdbc-36b6bd333d35\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:41:34.073483+00:00\",\n \"versionId\": \"MTcyNDQ3ODA5NDA3MzQ4MzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 6\n }\n}"
}
]
},
{
"name": "Observation - Activity (Tonus Otot)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32403-8\",\n \"display\": \"10 minute Apgar Muscle tone\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Activity (Tonus Otot)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32403-8\",\n \"display\": \"10 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32403-8\",\n \"display\": \"10 minute Apgar Muscle tone\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"d2d45b8c-048e-463c-ae4e-cd643e99ca67\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:40:49.859150+00:00\",\n \"versionId\": \"MTcyNDQ3ODA0OTg1OTE1MDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Respiration (Pernapasan)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32405-3\",\n \"display\": \"10 minute Apgar Respiratory effort\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Respiration (Pernapasan)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32405-3\",\n \"display\": \"10 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"32405-3\",\n \"display\": \"10 minute Apgar Respiratory effort\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"c331e694-c8e9-4c43-aa95-c5a8a956d9f0\",\n \"identifier\": [],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:41:12.177712+00:00\",\n \"versionId\": \"MTcyNDQ3ODA3MjE3NzcxMjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Kelainan Bawaan",
"item": [
{
"name": "Observation - Kelainan Bawaan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\" : \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://snomed.info/sct\",\n \"code\" : \"276654001\",\n \"display\" : \"Congenital malformation\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\" : \"Q01\",\n \"display\" : \"Encephalocele\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kelainan Bawaan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"1832486e-7102-489c-b1dd-513e5d0c24c1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:41:59.111211+00:00\",\n \"versionId\": \"MTcyNDQ3ODExOTExMTIxMTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Kelainan Bawaan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\" : \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://snomed.info/sct\",\n \"code\" : \"276654001\",\n \"display\" : \"Congenital malformation\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" : \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\" : \"Q01\",\n \"display\" : \"Encephalocele\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kelainan Bawaan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"1832486e-7102-489c-b1dd-513e5d0c24c1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:41:59.111211+00:00\",\n \"versionId\": \"MTcyNDQ3ODExOTExMTIxMTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Cara Persalinan",
"item": [
{
"name": "Observation - Cara Persalinan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Cara Persalinan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"07585b92-829c-464b-b864-7da2ac2b90c2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-29T15:57:20.490877+00:00\",\n \"versionId\": \"MTcyNDk0NzA0MDQ5MDg3NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Cara Persalinan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Cara Persalinan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"07585b92-829c-464b-b864-7da2ac2b90c2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-29T15:57:20.490877+00:00\",\n \"versionId\": \"MTcyNDk0NzA0MDQ5MDg3NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Jam Lahir",
"item": [
{
"name": "Observation - Jam Lahir",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\" : \"final\",\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"57715-5\",\n \"display\" : \"Birth time\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueTime\" : \"13:08:09\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jam Lahir",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57715-5\",\n \"display\": \"Birth time\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueTime\": \"13:08:09\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57715-5\",\n \"display\": \"Birth time\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"407d64f8-22c3-49b8-b893-77262aa1fe88\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111112\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:42:13.150712+00:00\",\n \"versionId\": \"MTcyNDQ3ODEzMzE1MDcxMjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueTime\": \"13:08:09\"\n}"
}
]
},
{
"name": "Observation - Jam Lahir",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\" : \"final\",\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"57715-5\",\n \"display\" : \"Birth time\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueTime\" : \"13:08:09\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jam Lahir",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57715-5\",\n \"display\": \"Birth time\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueTime\": \"13:08:09\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57715-5\",\n \"display\": \"Birth time\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"407d64f8-22c3-49b8-b893-77262aa1fe88\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111112\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:42:13.150712+00:00\",\n \"versionId\": \"MTcyNDQ3ODEzMzE1MDcxMjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueTime\": \"13:08:09\"\n}"
}
]
}
]
}
]
},
{
"name": "06. Riwayat Kehamilan Ibu",
"item": [
{
"name": "Gravida",
"item": [
{
"name": "Observation - Gravida",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gravida",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"eab7ba38-9899-49b7-a2cf-1335a14cad83\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:42:37.458003+00:00\",\n \"versionId\": \"MTcyNDQ3ODE1NzQ1ODAwMzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueInteger\": 4\n}"
}
]
},
{
"name": "Observation - Gravida",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gravida",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"eab7ba38-9899-49b7-a2cf-1335a14cad83\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:42:37.458003+00:00\",\n \"versionId\": \"MTcyNDQ3ODE1NzQ1ODAwMzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueInteger\": 4\n}"
}
]
}
]
},
{
"name": "Usia Kehamilan (UK)",
"item": [
{
"name": "Observation - Usia Kehamilan (UK)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\" : {\n \"value\" : 32,\n \"unit\" : \"week\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"wk\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Usia Kehamilan (UK)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"98f3e7eb-a79a-484b-b98e-d0ad0a4d5404\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:42:46.654452+00:00\",\n \"versionId\": \"MTcyNDQ3ODE2NjY1NDQ1MjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"wk\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"week\",\n \"value\": 32\n }\n}"
}
]
},
{
"name": "Observation - Usia Kehamilan (UK)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\" : {\n \"value\" : 32,\n \"unit\" : \"week\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"wk\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Usia Kehamilan (UK)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"98f3e7eb-a79a-484b-b98e-d0ad0a4d5404\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:42:46.654452+00:00\",\n \"versionId\": \"MTcyNDQ3ODE2NjY1NDQ1MjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"wk\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"week\",\n \"value\": 32\n }\n}"
}
]
}
]
},
{
"name": "Partus",
"item": [
{
"name": "Observation - Partus",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Partus",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"b35d03e1-472c-465d-b07a-15d3e9e0b51d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:42:58.412466+00:00\",\n \"versionId\": \"MTcyNDQ3ODE3ODQxMjQ2NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueInteger\": 1\n}"
}
]
},
{
"name": "Observation - Partus",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Partus",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"b35d03e1-472c-465d-b07a-15d3e9e0b51d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:42:58.412466+00:00\",\n \"versionId\": \"MTcyNDQ3ODE3ODQxMjQ2NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueInteger\": 1\n}"
}
]
}
]
},
{
"name": "Abortus",
"item": [
{
"name": "Observation - Abortus",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Abortus",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"76fd27ab-afbf-41ed-986c-8cb019f28538\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:43:10.251971+00:00\",\n \"versionId\": \"MTcyNDQ3ODE5MDI1MTk3MTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueInteger\": 0\n}"
}
]
},
{
"name": "Observation - Abortus",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Abortus",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\",\n \"system\": \"http://loinc.org\"\n },\n {\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\",\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"76fd27ab-afbf-41ed-986c-8cb019f28538\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:43:10.251971+00:00\",\n \"versionId\": \"MTcyNDQ3ODE5MDI1MTk3MTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueInteger\": 0\n}"
}
]
}
]
},
{
"name": "Jenis Kehamilan (Tunggal/Kembar)",
"item": [
{
"name": "Observation - Jenis Kehamilan (Tunggal/Kembar)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" : \"http://snomed.info/sct\",\n \"code\" : \"237244005\",\n \"display\" : \"Single pregnancy\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Kehamilan (Tunggal/Kembar)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"dedd9bf8-a41c-45a5-a665-f412cd470da8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:43:20.162199+00:00\",\n \"versionId\": \"MTcyNDQ3ODIwMDE2MjE5OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Jenis Kehamilan (Tunggal/Kembar)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\" : {\n \"coding\" : [\n {\n \"system\" : \"http://snomed.info/sct\",\n \"code\" : \"237244005\",\n \"display\" : \"Single pregnancy\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jenis Kehamilan (Tunggal/Kembar)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"dedd9bf8-a41c-45a5-a665-f412cd470da8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:43:20.162199+00:00\",\n \"versionId\": \"MTcyNDQ3ODIwMDE2MjE5OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Jumlah Anak Hidup",
"item": [
{
"name": "Observation - Jumlah Anak Hidup",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jumlah Anak Hidup",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"b79ae4ff-8b3d-49a3-9255-d4aa956f9fa5\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:43:31.337077+00:00\",\n \"versionId\": \"MTcyNDQ3ODIxMTMzNzA3NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueInteger\": 4\n}"
}
]
},
{
"name": "Observation - Jumlah Anak Hidup",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jumlah Anak Hidup",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"b79ae4ff-8b3d-49a3-9255-d4aa956f9fa5\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111111\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:43:31.337077+00:00\",\n \"versionId\": \"MTcyNDQ3ODIxMTMzNzA3NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueInteger\": 4\n}"
}
]
}
]
}
]
},
{
"name": "07. Data Dasar Ibu",
"item": [
{
"name": "Umur Ibu Ketika Anak Meninggal",
"item": [
{
"name": "Observation - Umur Ibu Ketika Anak Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"30525-0\",\n \"display\" : \"Age\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n\t\"valueQuantity\": {\n \"value\" : 40,\n \"unit\" : \"years\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"a\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Umur Ibu Ketika Anak Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"30525-0\",\n \"display\": \"Age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"30525-0\",\n \"display\": \"Age\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"13d44bf3-d07e-4a9e-87e7-d6c62462d179\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111113\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:43:43.447018+00:00\",\n \"versionId\": \"MTcyNDQ3ODIyMzQ0NzAxODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"a\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"years\",\n \"value\": 40\n }\n}"
}
]
},
{
"name": "Observation - Umur Ibu Ketika Anak Meninggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\" : \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\" : {\n \"coding\" : [\n {\n \"system\" : \"http://loinc.org\",\n \"code\" : \"30525-0\",\n \"display\" : \"Age\"\n }\n ]\n },\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n\t\"valueQuantity\": {\n \"value\" : 40,\n \"unit\" : \"years\",\n \"system\" : \"http://unitsofmeasure.org\",\n \"code\" : \"a\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Umur Ibu Ketika Anak Meninggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"30525-0\",\n \"display\": \"Age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"survey\",\n \"display\": \"Survey\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"30525-0\",\n \"display\": \"Age\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"focus\": [\n {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n ],\n \"id\": \"13d44bf3-d07e-4a9e-87e7-d6c62462d179\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000004\",\n \"value\": \"O111113\"\n }\n ],\n \"issued\": \"2023-06-22T14:30:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:43:43.447018+00:00\",\n \"versionId\": \"MTcyNDQ3ODIyMzQ0NzAxODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"valueQuantity\": {\n \"code\": \"a\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"years\",\n \"value\": 40\n }\n}"
}
]
}
]
},
{
"name": "Lama Tinggal",
"item": [
{
"name": "QuestionnaireResponse - Lama Tinggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"authored\": \"2023-06-22T14:30:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"source\": {\n \"reference\": \"Patient/100000030009\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"response": [
{
"name": "QuestionnaireResponse - Lama Tinggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"authored\": \"2023-06-22T14:30:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"source\": {\n \"reference\": \"Patient/100000030009\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"author\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"authored\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"7e854171-53bd-40a4-b45c-9f96401be029\",\n \"identifier\": null,\n \"item\": [\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:43:55.799086+00:00\",\n \"versionId\": \"MTcyNDQ3ODIzNTc5OTA4NjAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"reference\": \"Patient/100000030009\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
},
{
"name": "QuestionnaireResponse - Lama Tinggal",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \t\"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"authored\": \"2023-06-22T14:30:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"source\": {\n \"reference\": \"Patient/100000030009\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"response": [
{
"name": "QuestionnaireResponse - Lama Tinggal",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"authored\": \"2023-06-22T14:30:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"source\": {\n \"reference\": \"Patient/100000030009\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"author\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"authored\": \"2023-06-22T14:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"7e854171-53bd-40a4-b45c-9f96401be029\",\n \"identifier\": null,\n \"item\": [\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:43:55.799086+00:00\",\n \"versionId\": \"MTcyNDQ3ODIzNTc5OTA4NjAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"reference\": \"Patient/100000030009\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "08. Laporan Notifikasi Kematian",
"item": [
{
"name": "Composition - Laporan Notifikasi Kematian",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720002\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n },\n {\n \"resourceType\": \"Location\",\n \"id\": \"123456789\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000001\",\n \"display\": \"Lokasi Tempat Bersalin\"\n }\n ]\n }\n ],\n \"address\": {\n \"use\": \"work\",\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000003\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Hidup\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"date\": \"2023-06-22T14:31:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Alamat Mati\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"Observation/c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Umur saat meninggal\",\n \"reference\": \"Observation/dc10511b-6ac5-4ac8-a568-c5d2e7c91286\"\n },\n {\n \"display\": \"Berat saat meninggal\",\n \"reference\": \"Observation/2d645972-8779-4142-8a9d-58d0ca9b0aa4\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"Observation/1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/3a7d80eb-7b9a-4761-809b-e155205852d8\"\n },\n {\n \"display\": \"Panjang Saat Meninggal\",\n \"reference\": \"Observation/29563b5a-52ef-4078-a416-470d12cc4fab\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/d003ecff-ab0d-4a8b-a441-216e90ec0b0a\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"Observation/013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Persalinan\",\n \"reference\": \"#123456789\"\n },\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"Observation/2054d96b-a2f3-475f-9afa-870047b70b20\"\n },\n {\n \"display\": \"Jenis Tempat Bersalin\",\n \"reference\": \"Observation/69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"Observation/6eba08ca-be5e-43b7-90eb-e704af8d76d0\"\n },\n {\n \"display\": \"Lingkar Kepala\",\n \"reference\": \"Observation/c5b266ed-e510-4f82-8738-d52d2ae4ba21\"\n },\n {\n \"display\": \"APGAR menit 1 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/6f06e9b7-8582-4907-aaa7-89b40e4dc0bc\"\n },\n {\n \"display\": \"APGAR menit 1 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/a0d8f56e-eaf1-4cf1-8ace-b55231219e82\"\n },\n {\n \"display\": \"APGAR menit 1 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/0110a660-57c0-4a82-8044-70f02f364ba5\"\n },\n {\n \"display\": \"APGAR menit 1 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/0e74a551-0874-4c65-a91f-508b10ec62f6\"\n },\n {\n \"display\": \"APGAR menit 1 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/ac347158-8182-460b-8241-2cda43241251\"\n },\n {\n \"display\": \"APGAR menit 1 - Total Skor APGAR menit ke-1\",\n \"reference\": \"Observation/6e76cad1-aa6b-4ecc-af8c-07bab74343f4\"\n },\n {\n \"display\": \"APGAR menit 5 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/024fe6d5-4329-4344-9543-1a4de04a00c2\"\n },\n {\n \"display\": \"APGAR menit 5 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/47152b20-576f-4bde-ae4d-a383cf0c7f6c\"\n },\n {\n \"display\": \"APGAR menit 5 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/3882a342-19ce-44dc-b647-a40ecf173eaf\"\n },\n {\n \"display\": \"APGAR menit 5 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/ac1b7358-2d07-4439-bc57-d9ec260839a5\"\n },\n {\n \"display\": \"APGAR menit 5 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/c482203f-c374-4364-96ff-0ebe235c3c03\"\n },\n {\n \"display\": \"APGAR menit 5 - Total Skor APGAR menit ke-5\",\n \"reference\": \"Observation/5b8353c1-07f6-4b83-b814-1fc3922d4c0d\"\n },\n {\n \"display\": \"APGAR menit 10 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/761ca9b0-933f-4d8a-a124-fe0d49afdb40\"\n },\n {\n \"display\": \"APGAR menit 10 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/2e6f7980-af54-42b3-870b-5a90e5d1126e\"\n },\n {\n \"display\": \"APGAR menit 10 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/d97d0357-76ce-4611-ab8e-eade5fab2307\"\n },\n {\n \"display\": \"APGAR menit 10 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/0b7a3a06-c563-4537-af1c-0ef6fae62330\"\n },\n {\n \"display\": \"APGAR menit 10 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/1f3e8524-631e-4fde-9747-db357f0bdb67\"\n },\n {\n \"display\": \"APGAR menit 10 - Total Skor APGAR menit ke-5\",\n \"reference\": \"Observation/57bf7ac8-1222-42dc-8720-eb30456e8a62\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"Observation/1832486e-7102-489c-b1dd-513e5d0c24c1\"\n },\n {\n \"display\": \"Jam Lahir\",\n \"reference\": \"Observation/407d64f8-22c3-49b8-b893-77262aa1fe88\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/30ae2630-80ed-4046-a7be-17b069de4d2e\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"Observation/b35d03e1-472c-465d-b07a-15d3e9e0b51d\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/76fd27ab-afbf-41ed-986c-8cb019f28538\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/Kembar)\",\n \"reference\": \"Observation/dedd9bf8-a41c-45a5-a665-f412cd470da8\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"Observation/b79ae4ff-8b3d-49a3-9255-d4aa956f9fa5\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"Observation/af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"QuestionnaireResponse/7e854171-53bd-40a4-b45c-9f96401be029\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"response": [
{
"name": "Composition - Laporan Notifikasi Kematian",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720002\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n },\n {\n \"resourceType\": \"Location\",\n \"id\": \"123456789\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000001\",\n \"display\": \"Lokasi Tempat Bersalin\"\n }\n ]\n }\n ],\n \"address\": {\n \"use\": \"work\",\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000003\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Hidup\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"date\": \"2023-06-22T14:31:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Alamat Mati\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"Observation/c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Umur saat meninggal\",\n \"reference\": \"Observation/dc10511b-6ac5-4ac8-a568-c5d2e7c91286\"\n },\n {\n \"display\": \"Berat saat meninggal\",\n \"reference\": \"Observation/2d645972-8779-4142-8a9d-58d0ca9b0aa4\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"Observation/1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/3a7d80eb-7b9a-4761-809b-e155205852d8\"\n },\n {\n \"display\": \"Panjang Saat Meninggal\",\n \"reference\": \"Observation/29563b5a-52ef-4078-a416-470d12cc4fab\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/d003ecff-ab0d-4a8b-a441-216e90ec0b0a\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"Observation/013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Persalinan\",\n \"reference\": \"#123456789\"\n },\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"Observation/2054d96b-a2f3-475f-9afa-870047b70b20\"\n },\n {\n \"display\": \"Jenis Tempat Bersalin\",\n \"reference\": \"Observation/69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"Observation/6eba08ca-be5e-43b7-90eb-e704af8d76d0\"\n },\n {\n \"display\": \"Lingkar Kepala\",\n \"reference\": \"Observation/c5b266ed-e510-4f82-8738-d52d2ae4ba21\"\n },\n {\n \"display\": \"APGAR menit 1 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/6f06e9b7-8582-4907-aaa7-89b40e4dc0bc\"\n },\n {\n \"display\": \"APGAR menit 1 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/a0d8f56e-eaf1-4cf1-8ace-b55231219e82\"\n },\n {\n \"display\": \"APGAR menit 1 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/0110a660-57c0-4a82-8044-70f02f364ba5\"\n },\n {\n \"display\": \"APGAR menit 1 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/0e74a551-0874-4c65-a91f-508b10ec62f6\"\n },\n {\n \"display\": \"APGAR menit 1 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/ac347158-8182-460b-8241-2cda43241251\"\n },\n {\n \"display\": \"APGAR menit 1 - Total Skor APGAR menit ke-1\",\n \"reference\": \"Observation/6e76cad1-aa6b-4ecc-af8c-07bab74343f4\"\n },\n {\n \"display\": \"APGAR menit 5 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/024fe6d5-4329-4344-9543-1a4de04a00c2\"\n },\n {\n \"display\": \"APGAR menit 5 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/47152b20-576f-4bde-ae4d-a383cf0c7f6c\"\n },\n {\n \"display\": \"APGAR menit 5 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/3882a342-19ce-44dc-b647-a40ecf173eaf\"\n },\n {\n \"display\": \"APGAR menit 5 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/ac1b7358-2d07-4439-bc57-d9ec260839a5\"\n },\n {\n \"display\": \"APGAR menit 5 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/c482203f-c374-4364-96ff-0ebe235c3c03\"\n },\n {\n \"display\": \"APGAR menit 5 - Total Skor APGAR menit ke-5\",\n \"reference\": \"Observation/5b8353c1-07f6-4b83-b814-1fc3922d4c0d\"\n },\n {\n \"display\": \"APGAR menit 10 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/761ca9b0-933f-4d8a-a124-fe0d49afdb40\"\n },\n {\n \"display\": \"APGAR menit 10 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/2e6f7980-af54-42b3-870b-5a90e5d1126e\"\n },\n {\n \"display\": \"APGAR menit 10 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/d97d0357-76ce-4611-ab8e-eade5fab2307\"\n },\n {\n \"display\": \"APGAR menit 10 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/0b7a3a06-c563-4537-af1c-0ef6fae62330\"\n },\n {\n \"display\": \"APGAR menit 10 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/1f3e8524-631e-4fde-9747-db357f0bdb67\"\n },\n {\n \"display\": \"APGAR menit 10 - Total Skor APGAR menit ke-5\",\n \"reference\": \"Observation/57bf7ac8-1222-42dc-8720-eb30456e8a62\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"Observation/1832486e-7102-489c-b1dd-513e5d0c24c1\"\n },\n {\n \"display\": \"Jam Lahir\",\n \"reference\": \"Observation/407d64f8-22c3-49b8-b893-77262aa1fe88\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/30ae2630-80ed-4046-a7be-17b069de4d2e\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"Observation/b35d03e1-472c-465d-b07a-15d3e9e0b51d\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/76fd27ab-afbf-41ed-986c-8cb019f28538\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/Kembar)\",\n \"reference\": \"Observation/dedd9bf8-a41c-45a5-a665-f412cd470da8\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"Observation/b79ae4ff-8b3d-49a3-9255-d4aa956f9fa5\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"Observation/af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"QuestionnaireResponse/7e854171-53bd-40a4-b45c-9f96401be029\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000004\"\n }\n }\n ],\n \"author\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"contained\": [\n {\n \"address\": {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n },\n \"id\": \"987654321\",\n \"managingOrganization\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000004\"\n },\n \"name\": \"Puskesmas SATUSEHAT\",\n \"resourceType\": \"Location\",\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n }\n ]\n },\n {\n \"address\": {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n },\n \"id\": \"123456789\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"resourceType\": \"Location\",\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"LT000001\",\n \"display\": \"Lokasi Tempat Bersalin\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n }\n ]\n }\n ],\n \"date\": \"2023-06-22T14:31:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"code\": \"445667001\",\n \"display\": \"Interim report\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"detail\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"period\": {\n \"end\": \"2023-06-21T14:29:59+00:00\",\n \"start\": \"2023-06-20T14:30:00+00:00\"\n }\n }\n ],\n \"id\": \"611f3cd5-90c6-4981-890b-1fb61a8b2573\",\n \"identifier\": null,\n \"meta\": {\n \"lastUpdated\": \"2024-08-29T16:10:57.097001+00:00\",\n \"versionId\": \"MTcyNDk0Nzg1NzA5NzAwMTAwMA\"\n },\n \"resourceType\": \"Composition\",\n \"section\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Alamat Mati\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"Observation/c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Umur saat meninggal\",\n \"reference\": \"Observation/dc10511b-6ac5-4ac8-a568-c5d2e7c91286\"\n },\n {\n \"display\": \"Berat saat meninggal\",\n \"reference\": \"Observation/2d645972-8779-4142-8a9d-58d0ca9b0aa4\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"Observation/1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/3a7d80eb-7b9a-4761-809b-e155205852d8\"\n },\n {\n \"display\": \"Panjang Saat Meninggal\",\n \"reference\": \"Observation/29563b5a-52ef-4078-a416-470d12cc4fab\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/d003ecff-ab0d-4a8b-a441-216e90ec0b0a\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"Observation/013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n }\n ],\n \"focus\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"title\": \"Riwayat Kematian Bayi\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Tempat Persalinan\",\n \"reference\": \"#123456789\"\n },\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"Observation/2054d96b-a2f3-475f-9afa-870047b70b20\"\n },\n {\n \"display\": \"Jenis Tempat Bersalin\",\n \"reference\": \"Observation/69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"Observation/6eba08ca-be5e-43b7-90eb-e704af8d76d0\"\n },\n {\n \"display\": \"Lingkar Kepala\",\n \"reference\": \"Observation/c5b266ed-e510-4f82-8738-d52d2ae4ba21\"\n },\n {\n \"display\": \"APGAR menit 1 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/6f06e9b7-8582-4907-aaa7-89b40e4dc0bc\"\n },\n {\n \"display\": \"APGAR menit 1 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/a0d8f56e-eaf1-4cf1-8ace-b55231219e82\"\n },\n {\n \"display\": \"APGAR menit 1 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/0110a660-57c0-4a82-8044-70f02f364ba5\"\n },\n {\n \"display\": \"APGAR menit 1 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/0e74a551-0874-4c65-a91f-508b10ec62f6\"\n },\n {\n \"display\": \"APGAR menit 1 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/ac347158-8182-460b-8241-2cda43241251\"\n },\n {\n \"display\": \"APGAR menit 1 - Total Skor APGAR menit ke-1\",\n \"reference\": \"Observation/6e76cad1-aa6b-4ecc-af8c-07bab74343f4\"\n },\n {\n \"display\": \"APGAR menit 5 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/024fe6d5-4329-4344-9543-1a4de04a00c2\"\n },\n {\n \"display\": \"APGAR menit 5 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/47152b20-576f-4bde-ae4d-a383cf0c7f6c\"\n },\n {\n \"display\": \"APGAR menit 5 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/3882a342-19ce-44dc-b647-a40ecf173eaf\"\n },\n {\n \"display\": \"APGAR menit 5 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/ac1b7358-2d07-4439-bc57-d9ec260839a5\"\n },\n {\n \"display\": \"APGAR menit 5 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/c482203f-c374-4364-96ff-0ebe235c3c03\"\n },\n {\n \"display\": \"APGAR menit 5 - Total Skor APGAR menit ke-5\",\n \"reference\": \"Observation/5b8353c1-07f6-4b83-b814-1fc3922d4c0d\"\n },\n {\n \"display\": \"APGAR menit 10 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/761ca9b0-933f-4d8a-a124-fe0d49afdb40\"\n },\n {\n \"display\": \"APGAR menit 10 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/2e6f7980-af54-42b3-870b-5a90e5d1126e\"\n },\n {\n \"display\": \"APGAR menit 10 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/d97d0357-76ce-4611-ab8e-eade5fab2307\"\n },\n {\n \"display\": \"APGAR menit 10 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/0b7a3a06-c563-4537-af1c-0ef6fae62330\"\n },\n {\n \"display\": \"APGAR menit 10 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/1f3e8524-631e-4fde-9747-db357f0bdb67\"\n },\n {\n \"display\": \"APGAR menit 10 - Total Skor APGAR menit ke-5\",\n \"reference\": \"Observation/57bf7ac8-1222-42dc-8720-eb30456e8a62\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"Observation/1832486e-7102-489c-b1dd-513e5d0c24c1\"\n },\n {\n \"display\": \"Jam Lahir\",\n \"reference\": \"Observation/407d64f8-22c3-49b8-b893-77262aa1fe88\"\n }\n ],\n \"focus\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"title\": \"Riwayat Persalinan\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ],\n \"focus\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Riwayat Persalinan\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/30ae2630-80ed-4046-a7be-17b069de4d2e\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"Observation/b35d03e1-472c-465d-b07a-15d3e9e0b51d\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/76fd27ab-afbf-41ed-986c-8cb019f28538\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/Kembar)\",\n \"reference\": \"Observation/dedd9bf8-a41c-45a5-a665-f412cd470da8\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"Observation/b79ae4ff-8b3d-49a3-9255-d4aa956f9fa5\"\n }\n ],\n \"focus\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Riwayat Kehamilan\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"Observation/af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"QuestionnaireResponse/7e854171-53bd-40a4-b45c-9f96401be029\"\n }\n ],\n \"focus\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Data Dasar Ibu\"\n }\n ],\n \"status\": \"preliminary\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"COM000003\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Hidup\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Composition - Laporan Notifikasi Kematian",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720002\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n },\n {\n \"resourceType\": \"Location\",\n \"id\": \"123456789\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000001\",\n \"display\": \"Lokasi Tempat Bersalin\"\n }\n ]\n }\n ],\n \"address\": {\n \"use\": \"work\",\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000003\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Hidup\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"date\": \"2023-06-22T14:31:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Alamat Mati\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"Observation/c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Umur saat meninggal\",\n \"reference\": \"Observation/dc10511b-6ac5-4ac8-a568-c5d2e7c91286\"\n },\n {\n \"display\": \"Berat saat meninggal\",\n \"reference\": \"Observation/2d645972-8779-4142-8a9d-58d0ca9b0aa4\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"Observation/1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/3a7d80eb-7b9a-4761-809b-e155205852d8\"\n },\n {\n \"display\": \"Panjang Saat Meninggal\",\n \"reference\": \"Observation/29563b5a-52ef-4078-a416-470d12cc4fab\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/d003ecff-ab0d-4a8b-a441-216e90ec0b0a\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"Observation/013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Persalinan\",\n \"reference\": \"#123456789\"\n },\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"Observation/2054d96b-a2f3-475f-9afa-870047b70b20\"\n },\n {\n \"display\": \"Jenis Tempat Bersalin\",\n \"reference\": \"Observation/69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"Observation/6eba08ca-be5e-43b7-90eb-e704af8d76d0\"\n },\n {\n \"display\": \"Lingkar Kepala\",\n \"reference\": \"Observation/c5b266ed-e510-4f82-8738-d52d2ae4ba21\"\n },\n {\n \"display\": \"APGAR menit 1 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/6f06e9b7-8582-4907-aaa7-89b40e4dc0bc\"\n },\n {\n \"display\": \"APGAR menit 1 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/a0d8f56e-eaf1-4cf1-8ace-b55231219e82\"\n },\n {\n \"display\": \"APGAR menit 1 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/0110a660-57c0-4a82-8044-70f02f364ba5\"\n },\n {\n \"display\": \"APGAR menit 1 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/0e74a551-0874-4c65-a91f-508b10ec62f6\"\n },\n {\n \"display\": \"APGAR menit 1 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/ac347158-8182-460b-8241-2cda43241251\"\n },\n {\n \"display\": \"APGAR menit 1 - Total Skor APGAR menit ke-1\",\n \"reference\": \"Observation/6e76cad1-aa6b-4ecc-af8c-07bab74343f4\"\n },\n {\n \"display\": \"APGAR menit 5 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/024fe6d5-4329-4344-9543-1a4de04a00c2\"\n },\n {\n \"display\": \"APGAR menit 5 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/47152b20-576f-4bde-ae4d-a383cf0c7f6c\"\n },\n {\n \"display\": \"APGAR menit 5 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/3882a342-19ce-44dc-b647-a40ecf173eaf\"\n },\n {\n \"display\": \"APGAR menit 5 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/ac1b7358-2d07-4439-bc57-d9ec260839a5\"\n },\n {\n \"display\": \"APGAR menit 5 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/c482203f-c374-4364-96ff-0ebe235c3c03\"\n },\n {\n \"display\": \"APGAR menit 5 - Total Skor APGAR menit ke-5\",\n \"reference\": \"Observation/5b8353c1-07f6-4b83-b814-1fc3922d4c0d\"\n },\n {\n \"display\": \"APGAR menit 10 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/761ca9b0-933f-4d8a-a124-fe0d49afdb40\"\n },\n {\n \"display\": \"APGAR menit 10 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/2e6f7980-af54-42b3-870b-5a90e5d1126e\"\n },\n {\n \"display\": \"APGAR menit 10 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/d97d0357-76ce-4611-ab8e-eade5fab2307\"\n },\n {\n \"display\": \"APGAR menit 10 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/0b7a3a06-c563-4537-af1c-0ef6fae62330\"\n },\n {\n \"display\": \"APGAR menit 10 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/1f3e8524-631e-4fde-9747-db357f0bdb67\"\n },\n {\n \"display\": \"APGAR menit 10 - Total Skor APGAR menit ke-5\",\n \"reference\": \"Observation/57bf7ac8-1222-42dc-8720-eb30456e8a62\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"Observation/1832486e-7102-489c-b1dd-513e5d0c24c1\"\n },\n {\n \"display\": \"Jam Lahir\",\n \"reference\": \"Observation/407d64f8-22c3-49b8-b893-77262aa1fe88\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/30ae2630-80ed-4046-a7be-17b069de4d2e\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"Observation/b35d03e1-472c-465d-b07a-15d3e9e0b51d\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/76fd27ab-afbf-41ed-986c-8cb019f28538\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/Kembar)\",\n \"reference\": \"Observation/dedd9bf8-a41c-45a5-a665-f412cd470da8\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"Observation/b79ae4ff-8b3d-49a3-9255-d4aa956f9fa5\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"Observation/af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"QuestionnaireResponse/7e854171-53bd-40a4-b45c-9f96401be029\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"response": [
{
"name": "Composition - Laporan Notifikasi Kematian",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720002\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n },\n {\n \"resourceType\": \"Location\",\n \"id\": \"123456789\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000001\",\n \"display\": \"Lokasi Tempat Bersalin\"\n }\n ]\n }\n ],\n \"address\": {\n \"use\": \"work\",\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000003\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Hidup\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"date\": \"2023-06-22T14:31:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Alamat Mati\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"Observation/c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Umur saat meninggal\",\n \"reference\": \"Observation/dc10511b-6ac5-4ac8-a568-c5d2e7c91286\"\n },\n {\n \"display\": \"Berat saat meninggal\",\n \"reference\": \"Observation/2d645972-8779-4142-8a9d-58d0ca9b0aa4\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"Observation/1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/3a7d80eb-7b9a-4761-809b-e155205852d8\"\n },\n {\n \"display\": \"Panjang Saat Meninggal\",\n \"reference\": \"Observation/29563b5a-52ef-4078-a416-470d12cc4fab\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/d003ecff-ab0d-4a8b-a441-216e90ec0b0a\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"Observation/013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Persalinan\",\n \"reference\": \"#123456789\"\n },\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"Observation/2054d96b-a2f3-475f-9afa-870047b70b20\"\n },\n {\n \"display\": \"Jenis Tempat Bersalin\",\n \"reference\": \"Observation/69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"Observation/6eba08ca-be5e-43b7-90eb-e704af8d76d0\"\n },\n {\n \"display\": \"Lingkar Kepala\",\n \"reference\": \"Observation/c5b266ed-e510-4f82-8738-d52d2ae4ba21\"\n },\n {\n \"display\": \"APGAR menit 1 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/6f06e9b7-8582-4907-aaa7-89b40e4dc0bc\"\n },\n {\n \"display\": \"APGAR menit 1 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/a0d8f56e-eaf1-4cf1-8ace-b55231219e82\"\n },\n {\n \"display\": \"APGAR menit 1 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/0110a660-57c0-4a82-8044-70f02f364ba5\"\n },\n {\n \"display\": \"APGAR menit 1 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/0e74a551-0874-4c65-a91f-508b10ec62f6\"\n },\n {\n \"display\": \"APGAR menit 1 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/ac347158-8182-460b-8241-2cda43241251\"\n },\n {\n \"display\": \"APGAR menit 1 - Total Skor APGAR menit ke-1\",\n \"reference\": \"Observation/6e76cad1-aa6b-4ecc-af8c-07bab74343f4\"\n },\n {\n \"display\": \"APGAR menit 5 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/024fe6d5-4329-4344-9543-1a4de04a00c2\"\n },\n {\n \"display\": \"APGAR menit 5 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/47152b20-576f-4bde-ae4d-a383cf0c7f6c\"\n },\n {\n \"display\": \"APGAR menit 5 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/3882a342-19ce-44dc-b647-a40ecf173eaf\"\n },\n {\n \"display\": \"APGAR menit 5 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/ac1b7358-2d07-4439-bc57-d9ec260839a5\"\n },\n {\n \"display\": \"APGAR menit 5 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/c482203f-c374-4364-96ff-0ebe235c3c03\"\n },\n {\n \"display\": \"APGAR menit 5 - Total Skor APGAR menit ke-5\",\n \"reference\": \"Observation/5b8353c1-07f6-4b83-b814-1fc3922d4c0d\"\n },\n {\n \"display\": \"APGAR menit 10 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/761ca9b0-933f-4d8a-a124-fe0d49afdb40\"\n },\n {\n \"display\": \"APGAR menit 10 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/2e6f7980-af54-42b3-870b-5a90e5d1126e\"\n },\n {\n \"display\": \"APGAR menit 10 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/d97d0357-76ce-4611-ab8e-eade5fab2307\"\n },\n {\n \"display\": \"APGAR menit 10 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/0b7a3a06-c563-4537-af1c-0ef6fae62330\"\n },\n {\n \"display\": \"APGAR menit 10 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/1f3e8524-631e-4fde-9747-db357f0bdb67\"\n },\n {\n \"display\": \"APGAR menit 10 - Total Skor APGAR menit ke-5\",\n \"reference\": \"Observation/57bf7ac8-1222-42dc-8720-eb30456e8a62\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"Observation/1832486e-7102-489c-b1dd-513e5d0c24c1\"\n },\n {\n \"display\": \"Jam Lahir\",\n \"reference\": \"Observation/407d64f8-22c3-49b8-b893-77262aa1fe88\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/30ae2630-80ed-4046-a7be-17b069de4d2e\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"Observation/b35d03e1-472c-465d-b07a-15d3e9e0b51d\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/76fd27ab-afbf-41ed-986c-8cb019f28538\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/Kembar)\",\n \"reference\": \"Observation/dedd9bf8-a41c-45a5-a665-f412cd470da8\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"Observation/b79ae4ff-8b3d-49a3-9255-d4aa956f9fa5\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"Observation/af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"QuestionnaireResponse/7e854171-53bd-40a4-b45c-9f96401be029\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000004\"\n }\n }\n ],\n \"author\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"contained\": [\n {\n \"address\": {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n },\n \"id\": \"987654321\",\n \"managingOrganization\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000004\"\n },\n \"name\": \"Puskesmas SATUSEHAT\",\n \"resourceType\": \"Location\",\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n }\n ]\n },\n {\n \"address\": {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"postalCode\": \"12950\",\n \"use\": \"work\"\n },\n \"id\": \"123456789\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"resourceType\": \"Location\",\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"LT000001\",\n \"display\": \"Lokasi Tempat Bersalin\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n }\n ]\n }\n ],\n \"date\": \"2023-06-22T14:31:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"code\": \"445667001\",\n \"display\": \"Interim report\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"detail\": [\n {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"period\": {\n \"end\": \"2023-06-21T14:29:59+00:00\",\n \"start\": \"2023-06-20T14:30:00+00:00\"\n }\n }\n ],\n \"id\": \"611f3cd5-90c6-4981-890b-1fb61a8b2573\",\n \"identifier\": null,\n \"meta\": {\n \"lastUpdated\": \"2024-08-29T16:10:57.097001+00:00\",\n \"versionId\": \"MTcyNDk0Nzg1NzA5NzAwMTAwMA\"\n },\n \"resourceType\": \"Composition\",\n \"section\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Alamat Mati\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"Observation/c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Umur saat meninggal\",\n \"reference\": \"Observation/dc10511b-6ac5-4ac8-a568-c5d2e7c91286\"\n },\n {\n \"display\": \"Berat saat meninggal\",\n \"reference\": \"Observation/2d645972-8779-4142-8a9d-58d0ca9b0aa4\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"Observation/1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"Observation/3a7d80eb-7b9a-4761-809b-e155205852d8\"\n },\n {\n \"display\": \"Panjang Saat Meninggal\",\n \"reference\": \"Observation/29563b5a-52ef-4078-a416-470d12cc4fab\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"Observation/d003ecff-ab0d-4a8b-a441-216e90ec0b0a\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"Observation/013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n }\n ],\n \"focus\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"title\": \"Riwayat Kematian Bayi\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Tempat Persalinan\",\n \"reference\": \"#123456789\"\n },\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"Observation/2054d96b-a2f3-475f-9afa-870047b70b20\"\n },\n {\n \"display\": \"Jenis Tempat Bersalin\",\n \"reference\": \"Observation/69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"Observation/6eba08ca-be5e-43b7-90eb-e704af8d76d0\"\n },\n {\n \"display\": \"Lingkar Kepala\",\n \"reference\": \"Observation/c5b266ed-e510-4f82-8738-d52d2ae4ba21\"\n },\n {\n \"display\": \"APGAR menit 1 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/6f06e9b7-8582-4907-aaa7-89b40e4dc0bc\"\n },\n {\n \"display\": \"APGAR menit 1 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/a0d8f56e-eaf1-4cf1-8ace-b55231219e82\"\n },\n {\n \"display\": \"APGAR menit 1 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/0110a660-57c0-4a82-8044-70f02f364ba5\"\n },\n {\n \"display\": \"APGAR menit 1 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/0e74a551-0874-4c65-a91f-508b10ec62f6\"\n },\n {\n \"display\": \"APGAR menit 1 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/ac347158-8182-460b-8241-2cda43241251\"\n },\n {\n \"display\": \"APGAR menit 1 - Total Skor APGAR menit ke-1\",\n \"reference\": \"Observation/6e76cad1-aa6b-4ecc-af8c-07bab74343f4\"\n },\n {\n \"display\": \"APGAR menit 5 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/024fe6d5-4329-4344-9543-1a4de04a00c2\"\n },\n {\n \"display\": \"APGAR menit 5 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/47152b20-576f-4bde-ae4d-a383cf0c7f6c\"\n },\n {\n \"display\": \"APGAR menit 5 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/3882a342-19ce-44dc-b647-a40ecf173eaf\"\n },\n {\n \"display\": \"APGAR menit 5 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/ac1b7358-2d07-4439-bc57-d9ec260839a5\"\n },\n {\n \"display\": \"APGAR menit 5 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/c482203f-c374-4364-96ff-0ebe235c3c03\"\n },\n {\n \"display\": \"APGAR menit 5 - Total Skor APGAR menit ke-5\",\n \"reference\": \"Observation/5b8353c1-07f6-4b83-b814-1fc3922d4c0d\"\n },\n {\n \"display\": \"APGAR menit 10 - Appearance (Warna Kulit)\",\n \"reference\": \"Observation/761ca9b0-933f-4d8a-a124-fe0d49afdb40\"\n },\n {\n \"display\": \"APGAR menit 10 - Pulse (Denyut Jantung)\",\n \"reference\": \"Observation/2e6f7980-af54-42b3-870b-5a90e5d1126e\"\n },\n {\n \"display\": \"APGAR menit 10 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"Observation/d97d0357-76ce-4611-ab8e-eade5fab2307\"\n },\n {\n \"display\": \"APGAR menit 10 - Activity (Tonus Otot)\",\n \"reference\": \"Observation/0b7a3a06-c563-4537-af1c-0ef6fae62330\"\n },\n {\n \"display\": \"APGAR menit 10 - Respiration (Pernapasan)\",\n \"reference\": \"Observation/1f3e8524-631e-4fde-9747-db357f0bdb67\"\n },\n {\n \"display\": \"APGAR menit 10 - Total Skor APGAR menit ke-5\",\n \"reference\": \"Observation/57bf7ac8-1222-42dc-8720-eb30456e8a62\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"Observation/1832486e-7102-489c-b1dd-513e5d0c24c1\"\n },\n {\n \"display\": \"Jam Lahir\",\n \"reference\": \"Observation/407d64f8-22c3-49b8-b893-77262aa1fe88\"\n }\n ],\n \"focus\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"title\": \"Riwayat Persalinan\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"Observation/493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ],\n \"focus\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Riwayat Persalinan\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"Observation/ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"Observation/30ae2630-80ed-4046-a7be-17b069de4d2e\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"Observation/b35d03e1-472c-465d-b07a-15d3e9e0b51d\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"Observation/76fd27ab-afbf-41ed-986c-8cb019f28538\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/Kembar)\",\n \"reference\": \"Observation/dedd9bf8-a41c-45a5-a665-f412cd470da8\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"Observation/b79ae4ff-8b3d-49a3-9255-d4aa956f9fa5\"\n }\n ],\n \"focus\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Riwayat Kehamilan\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"Observation/af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"QuestionnaireResponse/7e854171-53bd-40a4-b45c-9f96401be029\"\n }\n ],\n \"focus\": {\n \"display\": \"Ny. Teresa Lee\",\n \"reference\": \"Patient/P02280547535\"\n },\n \"title\": \"Data Dasar Ibu\"\n }\n ],\n \"status\": \"preliminary\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n },\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"COM000003\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Hidup\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\"\n }\n ]\n }\n}"
}
]
}
],
"description": "Notes:\n\n- Variabel \"Tempat Persalinan\" pada folder \"02. Alamat Lokasi\" juga perlu direferensikan dalam Composition.section.entry pada kategori data Riwayat Persalinan (Composition.section.title= \"Riwayat Persalinan\")"
},
{
"name": "09. Diagnosis",
"item": [
{
"name": "Condition - Diagnosis",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:12+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Diagnosis",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:12+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\"\n }\n ]\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"e8bc6a3b-7b51-4579-9cb2-14999d01a60f\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:08:16.389275+00:00\",\n \"versionId\": \"MTcyNDQzMjg5NjM4OTI3NTAwMA\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:12+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n}"
}
]
},
{
"name": "Condition - Diagnosis",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:12+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Diagnosis",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Ibu_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:12+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\"\n }\n ]\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/317242f4-e244-4fe1-9100-3da836e9fcca\"\n },\n \"id\": \"e8bc6a3b-7b51-4579-9cb2-14999d01a60f\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-08-23T17:08:16.389275+00:00\",\n \"versionId\": \"MTcyNDQzMjg5NjM4OTI3NTAwMA\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:12+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:12+00:00\",\n \"recorder\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n}"
}
]
}
]
},
{
"name": "10. Update Pulang",
"item": [
{
"name": "Encounter - Finished",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Anak_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Anak_uuid}}"
}
]
}
},
"response": [
{
"name": "Encounter - Finished",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Anak_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Anak_uuid}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"diagnosis\": [\n {\n \"condition\": {\n \"display\": \"Examination for administrative purposes, unspecified\",\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\"\n },\n \"rank\": 1,\n \"use\": {\n \"coding\": [\n {\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\"\n }\n ]\n }\n }\n ],\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"O24689\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:46:58.293573+00:00\",\n \"versionId\": \"MTcyNDQ3ODQxODI5MzU3MzAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"finished\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-06-22T07:15:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:15:00+00:00\"\n },\n \"status\": \"in-progress\"\n },\n {\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T14:10:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ],\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n}"
}
]
},
{
"name": "Encounter - Finished",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Anak_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Anak_uuid}}"
}
]
}
},
"response": [
{
"name": "Encounter - Finished",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_Anak_uuid}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24689\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T07:00:00+00:00\",\n \"end\": \"2023-06-22T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-22T07:15:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-22T14:10:00+00:00\",\n \"end\": \"2023-06-22T14:10:00+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Encounter/:id",
"host": [
"{{base_url}}"
],
"path": [
"Encounter",
":id"
],
"variable": [
{
"key": "id",
"value": "{{Encounter_Anak_uuid}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"diagnosis\": [\n {\n \"condition\": {\n \"display\": \"Examination for administrative purposes, unspecified\",\n \"reference\": \"Condition/2d8703c3-91b0-480e-8bfb-2a24d6ac6fd0\"\n },\n \"rank\": 1,\n \"use\": {\n \"coding\": [\n {\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\"\n }\n ]\n }\n }\n ],\n \"id\": \"317242f4-e244-4fe1-9100-3da836e9fcca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000004\",\n \"value\": \"O24689\"\n }\n ],\n \"location\": [\n {\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\"\n }\n ]\n }\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\n }\n ],\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-08-24T05:46:58.293573+00:00\",\n \"versionId\": \"MTcyNDQ3ODQxODI5MzU3MzAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000004\"\n },\n \"status\": \"finished\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-06-22T07:15:00+00:00\",\n \"start\": \"2023-06-22T07:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T07:15:00+00:00\"\n },\n \"status\": \"in-progress\"\n },\n {\n \"period\": {\n \"end\": \"2023-06-22T14:10:00+00:00\",\n \"start\": \"2023-06-22T14:10:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ],\n \"subject\": {\n \"display\": \"Baby of Ny. Teresa Lee (Fetus Not Named)\",\n \"reference\": \"Patient/100000030009\"\n }\n}"
}
]
}
]
},
{
"name": "Bundle - Pelaporan Kematian Anak Lahir Hidup",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:3fc32f06-f711-440a-abda-2ff2c1bf53ec\",\n \"resource\": {\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720014\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n },\n {\n \"resourceType\": \"Location\",\n \"id\": \"123456789\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000001\",\n \"display\": \"Lokasi Tempat Bersalin\"\n }\n ]\n }\n ],\n \"address\": {\n \"use\": \"work\",\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000003\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Hidup\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"date\": \"2023-06-22T14:31:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/N10000001\",\n \"display\": \"Dokter Bronsig\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/N10000001\",\n \"display\": \"Dr. John Doe\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Alamat Mati\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Umur saat meninggal\",\n \"reference\": \"urn:uuid:94adf4a9-02ee-4047-9389-4987c573909d\"\n },\n {\n \"display\": \"Berat saat meninggal\",\n \"reference\": \"urn:uuid:936d469c-d317-45f3-8711-1b6566830c37\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"urn:uuid:3a7d80eb-7b9a-4761-809b-e155205852d8\"\n },\n {\n \"display\": \"Panjang Saat Meninggal\",\n \"reference\": \"urn:uuid:621a34c0-2b36-4abb-8167-05494bc21509\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Persalinan\",\n \"reference\": \"#123456789\"\n },\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"urn:uuid:2054d96b-a2f3-475f-9afa-870047b70b20\"\n },\n {\n \"display\": \"Jenis Tempat Bersalin\",\n \"reference\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"urn:uuid:6eba08ca-be5e-43b7-90eb-e704af8d76d0\"\n },\n {\n \"display\": \"Lingkar Kepala\",\n \"reference\": \"urn:uuid:c5b266ed-e510-4f82-8738-d52d2ae4ba21\"\n },\n {\n \"display\": \"APGAR menit 1 - Appearance (Warna Kulit)\",\n \"reference\": \"urn:uuid:6f06e9b7-8582-4907-aaa7-89b40e4dc0bc\"\n },\n {\n \"display\": \"APGAR menit 1 - Pulse (Denyut Jantung)\",\n \"reference\": \"urn:uuid:a0d8f56e-eaf1-4cf1-8ace-b55231219e82\"\n },\n {\n \"display\": \"APGAR menit 1 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"urn:uuid:0110a660-57c0-4a82-8044-70f02f364ba5\"\n },\n {\n \"display\": \"APGAR menit 1 - Activity (Tonus Otot)\",\n \"reference\": \"urn:uuid:0e74a551-0874-4c65-a91f-508b10ec62f6\"\n },\n {\n \"display\": \"APGAR menit 1 - Respiration (Pernapasan)\",\n \"reference\": \"urn:uuid:ac347158-8182-460b-8241-2cda43241251\"\n },\n {\n \"display\": \"APGAR menit 1 - Total Skor APGAR menit ke-1\",\n \"reference\": \"urn:uuid:6e76cad1-aa6b-4ecc-af8c-07bab74343f4\"\n },\n {\n \"display\": \"APGAR menit 5 - Appearance (Warna Kulit)\",\n \"reference\": \"urn:uuid:024fe6d5-4329-4344-9543-1a4de04a00c2\"\n },\n {\n \"display\": \"APGAR menit 5 - Pulse (Denyut Jantung)\",\n \"reference\": \"urn:uuid:47152b20-576f-4bde-ae4d-a383cf0c7f6c\"\n },\n {\n \"display\": \"APGAR menit 5 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"urn:uuid:3882a342-19ce-44dc-b647-a40ecf173eaf\"\n },\n {\n \"display\": \"APGAR menit 5 - Activity (Tonus Otot)\",\n \"reference\": \"urn:uuid:ac1b7358-2d07-4439-bc57-d9ec260839a5\"\n },\n {\n \"display\": \"APGAR menit 5 - Respiration (Pernapasan)\",\n \"reference\": \"urn:uuid:c482203f-c374-4364-96ff-0ebe235c3c03\"\n },\n {\n \"display\": \"APGAR menit 5 - Total Skor APGAR menit ke-5\",\n \"reference\": \"urn:uuid:5b8353c1-07f6-4b83-b814-1fc3922d4c0d\"\n },\n {\n \"display\": \"APGAR menit 10 - Appearance (Warna Kulit)\",\n \"reference\": \"urn:uuid:761ca9b0-933f-4d8a-a124-fe0d49afdb40\"\n },\n {\n \"display\": \"APGAR menit 10 - Pulse (Denyut Jantung)\",\n \"reference\": \"urn:uuid:2e6f7980-af54-42b3-870b-5a90e5d1126e\"\n },\n {\n \"display\": \"APGAR menit 10 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"urn:uuid:d97d0357-76ce-4611-ab8e-eade5fab2307\"\n },\n {\n \"display\": \"APGAR menit 10 - Activity (Tonus Otot)\",\n \"reference\": \"urn:uuid:0b7a3a06-c563-4537-af1c-0ef6fae62330\"\n },\n {\n \"display\": \"APGAR menit 10 - Respiration (Pernapasan)\",\n \"reference\": \"urn:uuid:1f3e8524-631e-4fde-9747-db357f0bdb67\"\n },\n {\n \"display\": \"APGAR menit 10 - Total Skor APGAR menit ke-5\",\n \"reference\": \"urn:uuid:57bf7ac8-1222-42dc-8720-eb30456e8a62\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"urn:uuid:1832486e-7102-489c-b1dd-513e5d0c24c1\"\n },\n {\n \"display\": \"Jam Lahir\",\n \"reference\": \"urn:uuid:407d64f8-22c3-49b8-b893-77262aa1fe88\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"urn:uuid:493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"urn:uuid:30ae2630-80ed-4046-a7be-17b069de4d2e\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"urn:uuid:2d7d04a3-b6a9-4e08-bb5a-3193563e9c47\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"urn:uuid:6900d2b5-27f0-41ea-beab-a09459605607\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/Kembar)\",\n \"reference\": \"urn:uuid:f97ae6b8-093b-4913-b5b9-b17251abd13d\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"urn:uuid:2e16e050-3bde-4dd6-9d57-71ffbf735f91\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"urn:uuid:fc98a4c0-dad0-4e1e-8f11-760bdf9d2a07\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Composition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276506001\",\n \"display\": \"Newborn death\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39016-1\",\n \"display\": \"Age at death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 120,\n \"unit\": \"minutes\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"min\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a5455c49-f978-40c8-bdd7-9bbaaccbaf2d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000030\",\n \"display\": \"Berat saat meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8e888344-d5e5-4d6b-bcb7-72e2af6d4257\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:3a7d80eb-7b9a-4761-809b-e155205852d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N\",\n \"display\": \"Neonatal death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:621a34c0-2b36-4abb-8167-05494bc21509\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 46.5,\n \"unit\": \"centimeter\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b96204ac-80da-4ab4-b2dc-12344c112ea0\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72150-6\",\n \"display\": \"Delivery location\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"Rumah Sakit Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:96a255dd-9df4-48f5-8b66-d90c1a98a61c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a6c08c64-2f10-41eb-b3c1-cf41e569ac3f\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9843-4\",\n \"display\": \"Head Occipital-frontal circumference\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"Dokter Bronsig\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"centimeter\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6f06e9b7-8582-4907-aaa7-89b40e4dc0bc\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32406-1\",\n \"display\": \"1 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a0d8f56e-eaf1-4cf1-8ace-b55231219e82\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32407-9\",\n \"display\": \"1 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6718-6\",\n \"display\": \"At least 100 beats per minute\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0110a660-57c0-4a82-8044-70f02f364ba5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32409-5\",\n \"display\": \"1 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6721-0\",\n \"display\": \"Grimace and pulling away, cough, or sneeze during suctioning\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0e74a551-0874-4c65-a91f-508b10ec62f6\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32408-7\",\n \"display\": \"1 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ac347158-8182-460b-8241-2cda43241251\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32410-3\",\n \"display\": \"1 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6e76cad1-aa6b-4ecc-af8c-07bab74343f4\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9272-6\",\n \"display\": \"1 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:024fe6d5-4329-4344-9543-1a4de04a00c2\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32411-1\",\n \"display\": \"5 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:47152b20-576f-4bde-ae4d-a383cf0c7f6c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32412-9\",\n \"display\": \"5 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:3882a342-19ce-44dc-b647-a40ecf173eaf\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32414-5\",\n \"display\": \"5 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ac1b7358-2d07-4439-bc57-d9ec260839a5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32413-7\",\n \"display\": \"5 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c482203f-c374-4364-96ff-0ebe235c3c03\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32415-2\",\n \"display\": \"5 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:5b8353c1-07f6-4b83-b814-1fc3922d4c0d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9274-2\",\n \"display\": \"5 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:761ca9b0-933f-4d8a-a124-fe0d49afdb40\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32401-2\",\n \"display\": \"10 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2e6f7980-af54-42b3-870b-5a90e5d1126e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32402-0\",\n \"display\": \"10 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d97d0357-76ce-4611-ab8e-eade5fab2307\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32404-6\",\n \"display\": \"10 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0b7a3a06-c563-4537-af1c-0ef6fae62330\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32403-8\",\n \"display\": \"10 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1f3e8524-631e-4fde-9747-db357f0bdb67\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32405-3\",\n \"display\": \"10 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:57bf7ac8-1222-42dc-8720-eb30456e8a62\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9271-8\",\n \"display\": \"10 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f3ba44b7-d274-49ee-9c55-fd40984e4a93\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8fbc2d6c-e2b2-497c-b249-9bfdddba2fe9\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:7fd2f260-3669-4ec9-a5ec-8bf624246968\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57715-5\",\n \"display\": \"Birth time\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueTime\": \"13:08:09\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:30ae2630-80ed-4046-a7be-17b069de4d2e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2d7d04a3-b6a9-4e08-bb5a-3193563e9c47\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6900d2b5-27f0-41ea-beab-a09459605607\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f97ae6b8-093b-4913-b5b9-b17251abd13d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2e16e050-3bde-4dd6-9d57-71ffbf735f91\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c5d8d30e-8ae9-40cd-a52f-bf517d128517\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"30525-0\",\n \"display\": \"Age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"authored\": \"2023-06-22T14:30:05+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:05+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:{{Encounter_Anak_uuid}}\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24674\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T14:30:05+00:00\",\n \"end\": \"2023-06-24T14:30:02+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T14:30:05+00:00\",\n \"end\": \"2023-06-23T14:30:02+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T14:30:05+00:00\",\n \"end\": \"2023-06-23T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-23T07:15:00+00:00\",\n \"end\": \"2023-06-24T14:30:02+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-24T14:30:02+00:00\",\n \"end\": \"2023-06-24T14:30:02+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"response": [
{
"name": "Bundle - Pelaporan Kematian Anak Lahir Hidup",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:3fc32f06-f711-440a-abda-2ff2c1bf53ec\",\n \"resource\": {\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720014\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n },\n {\n \"resourceType\": \"Location\",\n \"id\": \"123456789\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000001\",\n \"display\": \"Lokasi Tempat Bersalin\"\n }\n ]\n }\n ],\n \"address\": {\n \"use\": \"work\",\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000003\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Hidup\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"date\": \"2023-06-22T14:31:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/N10000001\",\n \"display\": \"Dokter Bronsig\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/N10000001\",\n \"display\": \"Dr. John Doe\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Alamat Mati\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Umur saat meninggal\",\n \"reference\": \"urn:uuid:94adf4a9-02ee-4047-9389-4987c573909d\"\n },\n {\n \"display\": \"Berat saat meninggal\",\n \"reference\": \"urn:uuid:936d469c-d317-45f3-8711-1b6566830c37\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"urn:uuid:3a7d80eb-7b9a-4761-809b-e155205852d8\"\n },\n {\n \"display\": \"Panjang Saat Meninggal\",\n \"reference\": \"urn:uuid:621a34c0-2b36-4abb-8167-05494bc21509\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Persalinan\",\n \"reference\": \"#123456789\"\n },\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"urn:uuid:2054d96b-a2f3-475f-9afa-870047b70b20\"\n },\n {\n \"display\": \"Jenis Tempat Bersalin\",\n \"reference\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"urn:uuid:6eba08ca-be5e-43b7-90eb-e704af8d76d0\"\n },\n {\n \"display\": \"Lingkar Kepala\",\n \"reference\": \"urn:uuid:c5b266ed-e510-4f82-8738-d52d2ae4ba21\"\n },\n {\n \"display\": \"APGAR menit 1 - Appearance (Warna Kulit)\",\n \"reference\": \"urn:uuid:6f06e9b7-8582-4907-aaa7-89b40e4dc0bc\"\n },\n {\n \"display\": \"APGAR menit 1 - Pulse (Denyut Jantung)\",\n \"reference\": \"urn:uuid:a0d8f56e-eaf1-4cf1-8ace-b55231219e82\"\n },\n {\n \"display\": \"APGAR menit 1 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"urn:uuid:0110a660-57c0-4a82-8044-70f02f364ba5\"\n },\n {\n \"display\": \"APGAR menit 1 - Activity (Tonus Otot)\",\n \"reference\": \"urn:uuid:0e74a551-0874-4c65-a91f-508b10ec62f6\"\n },\n {\n \"display\": \"APGAR menit 1 - Respiration (Pernapasan)\",\n \"reference\": \"urn:uuid:ac347158-8182-460b-8241-2cda43241251\"\n },\n {\n \"display\": \"APGAR menit 1 - Total Skor APGAR menit ke-1\",\n \"reference\": \"urn:uuid:6e76cad1-aa6b-4ecc-af8c-07bab74343f4\"\n },\n {\n \"display\": \"APGAR menit 5 - Appearance (Warna Kulit)\",\n \"reference\": \"urn:uuid:024fe6d5-4329-4344-9543-1a4de04a00c2\"\n },\n {\n \"display\": \"APGAR menit 5 - Pulse (Denyut Jantung)\",\n \"reference\": \"urn:uuid:47152b20-576f-4bde-ae4d-a383cf0c7f6c\"\n },\n {\n \"display\": \"APGAR menit 5 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"urn:uuid:3882a342-19ce-44dc-b647-a40ecf173eaf\"\n },\n {\n \"display\": \"APGAR menit 5 - Activity (Tonus Otot)\",\n \"reference\": \"urn:uuid:ac1b7358-2d07-4439-bc57-d9ec260839a5\"\n },\n {\n \"display\": \"APGAR menit 5 - Respiration (Pernapasan)\",\n \"reference\": \"urn:uuid:c482203f-c374-4364-96ff-0ebe235c3c03\"\n },\n {\n \"display\": \"APGAR menit 5 - Total Skor APGAR menit ke-5\",\n \"reference\": \"urn:uuid:5b8353c1-07f6-4b83-b814-1fc3922d4c0d\"\n },\n {\n \"display\": \"APGAR menit 10 - Appearance (Warna Kulit)\",\n \"reference\": \"urn:uuid:761ca9b0-933f-4d8a-a124-fe0d49afdb40\"\n },\n {\n \"display\": \"APGAR menit 10 - Pulse (Denyut Jantung)\",\n \"reference\": \"urn:uuid:2e6f7980-af54-42b3-870b-5a90e5d1126e\"\n },\n {\n \"display\": \"APGAR menit 10 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"urn:uuid:d97d0357-76ce-4611-ab8e-eade5fab2307\"\n },\n {\n \"display\": \"APGAR menit 10 - Activity (Tonus Otot)\",\n \"reference\": \"urn:uuid:0b7a3a06-c563-4537-af1c-0ef6fae62330\"\n },\n {\n \"display\": \"APGAR menit 10 - Respiration (Pernapasan)\",\n \"reference\": \"urn:uuid:1f3e8524-631e-4fde-9747-db357f0bdb67\"\n },\n {\n \"display\": \"APGAR menit 10 - Total Skor APGAR menit ke-5\",\n \"reference\": \"urn:uuid:57bf7ac8-1222-42dc-8720-eb30456e8a62\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"urn:uuid:1832486e-7102-489c-b1dd-513e5d0c24c1\"\n },\n {\n \"display\": \"Jam Lahir\",\n \"reference\": \"urn:uuid:407d64f8-22c3-49b8-b893-77262aa1fe88\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"urn:uuid:493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"urn:uuid:30ae2630-80ed-4046-a7be-17b069de4d2e\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"urn:uuid:2d7d04a3-b6a9-4e08-bb5a-3193563e9c47\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"urn:uuid:6900d2b5-27f0-41ea-beab-a09459605607\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/Kembar)\",\n \"reference\": \"urn:uuid:f97ae6b8-093b-4913-b5b9-b17251abd13d\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"urn:uuid:2e16e050-3bde-4dd6-9d57-71ffbf735f91\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"urn:uuid:fc98a4c0-dad0-4e1e-8f11-760bdf9d2a07\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Composition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276506001\",\n \"display\": \"Newborn death\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39016-1\",\n \"display\": \"Age at death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 120,\n \"unit\": \"minutes\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"min\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a5455c49-f978-40c8-bdd7-9bbaaccbaf2d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000030\",\n \"display\": \"Berat saat meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8e888344-d5e5-4d6b-bcb7-72e2af6d4257\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:3a7d80eb-7b9a-4761-809b-e155205852d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N\",\n \"display\": \"Neonatal death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:621a34c0-2b36-4abb-8167-05494bc21509\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 46.5,\n \"unit\": \"centimeter\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b96204ac-80da-4ab4-b2dc-12344c112ea0\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72150-6\",\n \"display\": \"Delivery location\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"Rumah Sakit Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:96a255dd-9df4-48f5-8b66-d90c1a98a61c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a6c08c64-2f10-41eb-b3c1-cf41e569ac3f\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9843-4\",\n \"display\": \"Head Occipital-frontal circumference\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"Dokter Bronsig\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"centimeter\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6f06e9b7-8582-4907-aaa7-89b40e4dc0bc\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32406-1\",\n \"display\": \"1 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a0d8f56e-eaf1-4cf1-8ace-b55231219e82\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32407-9\",\n \"display\": \"1 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6718-6\",\n \"display\": \"At least 100 beats per minute\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0110a660-57c0-4a82-8044-70f02f364ba5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32409-5\",\n \"display\": \"1 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6721-0\",\n \"display\": \"Grimace and pulling away, cough, or sneeze during suctioning\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0e74a551-0874-4c65-a91f-508b10ec62f6\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32408-7\",\n \"display\": \"1 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ac347158-8182-460b-8241-2cda43241251\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32410-3\",\n \"display\": \"1 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6e76cad1-aa6b-4ecc-af8c-07bab74343f4\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9272-6\",\n \"display\": \"1 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:024fe6d5-4329-4344-9543-1a4de04a00c2\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32411-1\",\n \"display\": \"5 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:47152b20-576f-4bde-ae4d-a383cf0c7f6c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32412-9\",\n \"display\": \"5 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:3882a342-19ce-44dc-b647-a40ecf173eaf\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32414-5\",\n \"display\": \"5 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ac1b7358-2d07-4439-bc57-d9ec260839a5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32413-7\",\n \"display\": \"5 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c482203f-c374-4364-96ff-0ebe235c3c03\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32415-2\",\n \"display\": \"5 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:5b8353c1-07f6-4b83-b814-1fc3922d4c0d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9274-2\",\n \"display\": \"5 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:761ca9b0-933f-4d8a-a124-fe0d49afdb40\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32401-2\",\n \"display\": \"10 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2e6f7980-af54-42b3-870b-5a90e5d1126e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32402-0\",\n \"display\": \"10 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d97d0357-76ce-4611-ab8e-eade5fab2307\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32404-6\",\n \"display\": \"10 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0b7a3a06-c563-4537-af1c-0ef6fae62330\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32403-8\",\n \"display\": \"10 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1f3e8524-631e-4fde-9747-db357f0bdb67\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32405-3\",\n \"display\": \"10 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:57bf7ac8-1222-42dc-8720-eb30456e8a62\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9271-8\",\n \"display\": \"10 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f3ba44b7-d274-49ee-9c55-fd40984e4a93\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8fbc2d6c-e2b2-497c-b249-9bfdddba2fe9\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:7fd2f260-3669-4ec9-a5ec-8bf624246968\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57715-5\",\n \"display\": \"Birth time\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueTime\": \"13:08:09\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:30ae2630-80ed-4046-a7be-17b069de4d2e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2d7d04a3-b6a9-4e08-bb5a-3193563e9c47\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6900d2b5-27f0-41ea-beab-a09459605607\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f97ae6b8-093b-4913-b5b9-b17251abd13d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2e16e050-3bde-4dd6-9d57-71ffbf735f91\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c5d8d30e-8ae9-40cd-a52f-bf517d128517\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"30525-0\",\n \"display\": \"Age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"authored\": \"2023-06-22T14:30:05+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:05+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:{{Encounter_Anak_uuid}}\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24674\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T14:30:05+00:00\",\n \"end\": \"2023-06-24T14:30:02+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T14:30:05+00:00\",\n \"end\": \"2023-06-23T14:30:02+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T14:30:05+00:00\",\n \"end\": \"2023-06-23T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-23T07:15:00+00:00\",\n \"end\": \"2023-06-24T14:30:02+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-24T14:30:02+00:00\",\n \"end\": \"2023-06-24T14:30:02+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Composition/68cad803-3d3c-497f-b226-31bb14cf5857/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Composition\",\n \"resourceID\": \"68cad803-3d3c-497f-b226-31bb14cf5857\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/50720b81-9b16-46c4-9fab-85d8be758a6f/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"50720b81-9b16-46c4-9fab-85d8be758a6f\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/06560de7-06f6-4293-84cd-e2d317f1a4b2/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"06560de7-06f6-4293-84cd-e2d317f1a4b2\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/b1510a1d-47ca-443d-9841-5a9597d8e367/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"b1510a1d-47ca-443d-9841-5a9597d8e367\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/114f0548-1d8d-415f-8a4d-7caffac42626/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"114f0548-1d8d-415f-8a4d-7caffac42626\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/d064a86e-3037-4ca8-ae0b-aa3acaf82866/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"d064a86e-3037-4ca8-ae0b-aa3acaf82866\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/0f35626d-8498-4f33-9983-0214b41db2fc/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"0f35626d-8498-4f33-9983-0214b41db2fc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/e214caed-2121-4cb3-ab22-63e7e81c62b7/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"e214caed-2121-4cb3-ab22-63e7e81c62b7\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/1ad0d9fb-8691-4e63-8dde-ec6c3cab7bb7/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"1ad0d9fb-8691-4e63-8dde-ec6c3cab7bb7\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/562e35e6-2869-4c2d-ac64-37dbaa0bfee4/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"562e35e6-2869-4c2d-ac64-37dbaa0bfee4\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/cb04e13b-063f-45e5-aea9-1f435d294337/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"cb04e13b-063f-45e5-aea9-1f435d294337\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/c377492b-58d6-4e1b-9174-acc6f06563fa/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"c377492b-58d6-4e1b-9174-acc6f06563fa\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/f720ef50-a402-466f-86ea-b994ba1a23b8/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"f720ef50-a402-466f-86ea-b994ba1a23b8\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/b611cc53-a3b4-403e-b9dd-9daf41b844ee/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"b611cc53-a3b4-403e-b9dd-9daf41b844ee\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/5f97be37-7236-4d93-b4a4-e283465d1635/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"5f97be37-7236-4d93-b4a4-e283465d1635\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/c50fcfef-0131-48d7-b685-693cb429b73d/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"c50fcfef-0131-48d7-b685-693cb429b73d\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/89213a16-5fe6-4be3-8d56-fbe1855ee5a7/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"89213a16-5fe6-4be3-8d56-fbe1855ee5a7\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/0092ba26-a9f7-4e21-9773-9849c4dabfc4/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"0092ba26-a9f7-4e21-9773-9849c4dabfc4\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/4a4a6f00-5fad-4f2a-b5b7-c631725e152b/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"4a4a6f00-5fad-4f2a-b5b7-c631725e152b\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/ff3f832b-179e-4366-8576-5971e4be69b5/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"ff3f832b-179e-4366-8576-5971e4be69b5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/3b13e645-3a63-4534-974f-5daa96ca562e/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"3b13e645-3a63-4534-974f-5daa96ca562e\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/f06adbeb-7430-4160-b220-639568504d11/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"f06adbeb-7430-4160-b220-639568504d11\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/e758ed7a-6f36-4175-9087-01eae81921f5/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"e758ed7a-6f36-4175-9087-01eae81921f5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/34f73d6d-b581-4598-9080-284f279788e7/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"34f73d6d-b581-4598-9080-284f279788e7\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/08498112-f7ce-43d2-97d0-186a7beea62d/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"08498112-f7ce-43d2-97d0-186a7beea62d\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/ff243af3-e7b1-4767-ae17-8fdf025933bc/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"ff243af3-e7b1-4767-ae17-8fdf025933bc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/e62fd4bc-cd02-4be1-86e5-067747017c27/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"e62fd4bc-cd02-4be1-86e5-067747017c27\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/7ab8c703-f42e-4731-a509-4fae93a8d3a0/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"7ab8c703-f42e-4731-a509-4fae93a8d3a0\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/39d01d96-4262-421c-a909-9a43b46aa174/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"39d01d96-4262-421c-a909-9a43b46aa174\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/4d6a2818-3907-4456-a745-2bc6058f06d8/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"4d6a2818-3907-4456-a745-2bc6058f06d8\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/4a8434ee-80a4-4c5d-a7d2-3f405f88db36/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"4a8434ee-80a4-4c5d-a7d2-3f405f88db36\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/6280ad0b-b41a-4b52-ba1d-1fe11f2cced4/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"6280ad0b-b41a-4b52-ba1d-1fe11f2cced4\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/5fe94ed4-5ef6-4e44-a0f2-f1bcbc56434b/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"5fe94ed4-5ef6-4e44-a0f2-f1bcbc56434b\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/3d5e23c6-7360-41d7-976e-fc1147715f8c/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"3d5e23c6-7360-41d7-976e-fc1147715f8c\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/dc5d814f-5801-473f-b62f-5aa720791324/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"dc5d814f-5801-473f-b62f-5aa720791324\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/a2af5446-0920-4241-ba23-b483ccb948f1/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"a2af5446-0920-4241-ba23-b483ccb948f1\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/e81fe87d-e511-45df-a9ff-11c8f84c72b1/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"e81fe87d-e511-45df-a9ff-11c8f84c72b1\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/aa436310-44f8-44eb-8d36-102b17e7866d/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"aa436310-44f8-44eb-8d36-102b17e7866d\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/93137630-c24d-42f0-97ad-0baf2ff50eab/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"93137630-c24d-42f0-97ad-0baf2ff50eab\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/1123628a-267d-44d2-89b0-5ffb2882ec7d/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"1123628a-267d-44d2-89b0-5ffb2882ec7d\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/98b0d65f-ea23-4f28-a70c-84db8033d66a/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"98b0d65f-ea23-4f28-a70c-84db8033d66a\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/QuestionnaireResponse/117496f4-43ff-4746-85e1-b26675290eba/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"resourceID\": \"117496f4-43ff-4746-85e1-b26675290eba\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/20c5eea2-2a15-4cd2-9e5c-272fb64299e4/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"20c5eea2-2a15-4cd2-9e5c-272fb64299e4\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/6ce98d7f-fe59-4773-be46-88b6e116bf55/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Encounter\",\n \"resourceID\": \"6ce98d7f-fe59-4773-be46-88b6e116bf55\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction-response\",\n \"total\": 44,\n }"
}
]
},
{
"name": "Bundle - Pelaporan Kematian Anak Lahir Hidup",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:3fc32f06-f711-440a-abda-2ff2c1bf53ec\",\n \"resource\": {\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720014\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n },\n {\n \"resourceType\": \"Location\",\n \"id\": \"123456789\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000001\",\n \"display\": \"Lokasi Tempat Bersalin\"\n }\n ]\n }\n ],\n \"address\": {\n \"use\": \"work\",\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000003\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Hidup\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"date\": \"2023-06-22T14:31:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/N10000001\",\n \"display\": \"Dokter Bronsig\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/N10000001\",\n \"display\": \"Dr. John Doe\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Alamat Mati\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Umur saat meninggal\",\n \"reference\": \"urn:uuid:94adf4a9-02ee-4047-9389-4987c573909d\"\n },\n {\n \"display\": \"Berat saat meninggal\",\n \"reference\": \"urn:uuid:936d469c-d317-45f3-8711-1b6566830c37\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"urn:uuid:3a7d80eb-7b9a-4761-809b-e155205852d8\"\n },\n {\n \"display\": \"Panjang Saat Meninggal\",\n \"reference\": \"urn:uuid:621a34c0-2b36-4abb-8167-05494bc21509\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Persalinan\",\n \"reference\": \"#123456789\"\n },\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"urn:uuid:2054d96b-a2f3-475f-9afa-870047b70b20\"\n },\n {\n \"display\": \"Jenis Tempat Bersalin\",\n \"reference\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"urn:uuid:6eba08ca-be5e-43b7-90eb-e704af8d76d0\"\n },\n {\n \"display\": \"Lingkar Kepala\",\n \"reference\": \"urn:uuid:c5b266ed-e510-4f82-8738-d52d2ae4ba21\"\n },\n {\n \"display\": \"APGAR menit 1 - Appearance (Warna Kulit)\",\n \"reference\": \"urn:uuid:6f06e9b7-8582-4907-aaa7-89b40e4dc0bc\"\n },\n {\n \"display\": \"APGAR menit 1 - Pulse (Denyut Jantung)\",\n \"reference\": \"urn:uuid:a0d8f56e-eaf1-4cf1-8ace-b55231219e82\"\n },\n {\n \"display\": \"APGAR menit 1 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"urn:uuid:0110a660-57c0-4a82-8044-70f02f364ba5\"\n },\n {\n \"display\": \"APGAR menit 1 - Activity (Tonus Otot)\",\n \"reference\": \"urn:uuid:0e74a551-0874-4c65-a91f-508b10ec62f6\"\n },\n {\n \"display\": \"APGAR menit 1 - Respiration (Pernapasan)\",\n \"reference\": \"urn:uuid:ac347158-8182-460b-8241-2cda43241251\"\n },\n {\n \"display\": \"APGAR menit 1 - Total Skor APGAR menit ke-1\",\n \"reference\": \"urn:uuid:6e76cad1-aa6b-4ecc-af8c-07bab74343f4\"\n },\n {\n \"display\": \"APGAR menit 5 - Appearance (Warna Kulit)\",\n \"reference\": \"urn:uuid:024fe6d5-4329-4344-9543-1a4de04a00c2\"\n },\n {\n \"display\": \"APGAR menit 5 - Pulse (Denyut Jantung)\",\n \"reference\": \"urn:uuid:47152b20-576f-4bde-ae4d-a383cf0c7f6c\"\n },\n {\n \"display\": \"APGAR menit 5 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"urn:uuid:3882a342-19ce-44dc-b647-a40ecf173eaf\"\n },\n {\n \"display\": \"APGAR menit 5 - Activity (Tonus Otot)\",\n \"reference\": \"urn:uuid:ac1b7358-2d07-4439-bc57-d9ec260839a5\"\n },\n {\n \"display\": \"APGAR menit 5 - Respiration (Pernapasan)\",\n \"reference\": \"urn:uuid:c482203f-c374-4364-96ff-0ebe235c3c03\"\n },\n {\n \"display\": \"APGAR menit 5 - Total Skor APGAR menit ke-5\",\n \"reference\": \"urn:uuid:5b8353c1-07f6-4b83-b814-1fc3922d4c0d\"\n },\n {\n \"display\": \"APGAR menit 10 - Appearance (Warna Kulit)\",\n \"reference\": \"urn:uuid:761ca9b0-933f-4d8a-a124-fe0d49afdb40\"\n },\n {\n \"display\": \"APGAR menit 10 - Pulse (Denyut Jantung)\",\n \"reference\": \"urn:uuid:2e6f7980-af54-42b3-870b-5a90e5d1126e\"\n },\n {\n \"display\": \"APGAR menit 10 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"urn:uuid:d97d0357-76ce-4611-ab8e-eade5fab2307\"\n },\n {\n \"display\": \"APGAR menit 10 - Activity (Tonus Otot)\",\n \"reference\": \"urn:uuid:0b7a3a06-c563-4537-af1c-0ef6fae62330\"\n },\n {\n \"display\": \"APGAR menit 10 - Respiration (Pernapasan)\",\n \"reference\": \"urn:uuid:1f3e8524-631e-4fde-9747-db357f0bdb67\"\n },\n {\n \"display\": \"APGAR menit 10 - Total Skor APGAR menit ke-5\",\n \"reference\": \"urn:uuid:57bf7ac8-1222-42dc-8720-eb30456e8a62\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"urn:uuid:1832486e-7102-489c-b1dd-513e5d0c24c1\"\n },\n {\n \"display\": \"Jam Lahir\",\n \"reference\": \"urn:uuid:407d64f8-22c3-49b8-b893-77262aa1fe88\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"urn:uuid:493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"urn:uuid:30ae2630-80ed-4046-a7be-17b069de4d2e\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"urn:uuid:2d7d04a3-b6a9-4e08-bb5a-3193563e9c47\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"urn:uuid:6900d2b5-27f0-41ea-beab-a09459605607\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/Kembar)\",\n \"reference\": \"urn:uuid:f97ae6b8-093b-4913-b5b9-b17251abd13d\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"urn:uuid:2e16e050-3bde-4dd6-9d57-71ffbf735f91\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"urn:uuid:fc98a4c0-dad0-4e1e-8f11-760bdf9d2a07\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Composition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276506001\",\n \"display\": \"Newborn death\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39016-1\",\n \"display\": \"Age at death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 120,\n \"unit\": \"minutes\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"min\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a5455c49-f978-40c8-bdd7-9bbaaccbaf2d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000030\",\n \"display\": \"Berat saat meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8e888344-d5e5-4d6b-bcb7-72e2af6d4257\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:3a7d80eb-7b9a-4761-809b-e155205852d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N\",\n \"display\": \"Neonatal death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:621a34c0-2b36-4abb-8167-05494bc21509\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 46.5,\n \"unit\": \"centimeter\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b96204ac-80da-4ab4-b2dc-12344c112ea0\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72150-6\",\n \"display\": \"Delivery location\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"Rumah Sakit Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:96a255dd-9df4-48f5-8b66-d90c1a98a61c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a6c08c64-2f10-41eb-b3c1-cf41e569ac3f\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9843-4\",\n \"display\": \"Head Occipital-frontal circumference\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"Dokter Bronsig\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"centimeter\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6f06e9b7-8582-4907-aaa7-89b40e4dc0bc\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32406-1\",\n \"display\": \"1 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a0d8f56e-eaf1-4cf1-8ace-b55231219e82\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32407-9\",\n \"display\": \"1 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6718-6\",\n \"display\": \"At least 100 beats per minute\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0110a660-57c0-4a82-8044-70f02f364ba5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32409-5\",\n \"display\": \"1 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6721-0\",\n \"display\": \"Grimace and pulling away, cough, or sneeze during suctioning\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0e74a551-0874-4c65-a91f-508b10ec62f6\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32408-7\",\n \"display\": \"1 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ac347158-8182-460b-8241-2cda43241251\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32410-3\",\n \"display\": \"1 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6e76cad1-aa6b-4ecc-af8c-07bab74343f4\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9272-6\",\n \"display\": \"1 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:024fe6d5-4329-4344-9543-1a4de04a00c2\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32411-1\",\n \"display\": \"5 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:47152b20-576f-4bde-ae4d-a383cf0c7f6c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32412-9\",\n \"display\": \"5 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:3882a342-19ce-44dc-b647-a40ecf173eaf\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32414-5\",\n \"display\": \"5 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ac1b7358-2d07-4439-bc57-d9ec260839a5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32413-7\",\n \"display\": \"5 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c482203f-c374-4364-96ff-0ebe235c3c03\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32415-2\",\n \"display\": \"5 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:5b8353c1-07f6-4b83-b814-1fc3922d4c0d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9274-2\",\n \"display\": \"5 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:761ca9b0-933f-4d8a-a124-fe0d49afdb40\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32401-2\",\n \"display\": \"10 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2e6f7980-af54-42b3-870b-5a90e5d1126e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32402-0\",\n \"display\": \"10 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d97d0357-76ce-4611-ab8e-eade5fab2307\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32404-6\",\n \"display\": \"10 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0b7a3a06-c563-4537-af1c-0ef6fae62330\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32403-8\",\n \"display\": \"10 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1f3e8524-631e-4fde-9747-db357f0bdb67\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32405-3\",\n \"display\": \"10 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:57bf7ac8-1222-42dc-8720-eb30456e8a62\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9271-8\",\n \"display\": \"10 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f3ba44b7-d274-49ee-9c55-fd40984e4a93\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8fbc2d6c-e2b2-497c-b249-9bfdddba2fe9\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:7fd2f260-3669-4ec9-a5ec-8bf624246968\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57715-5\",\n \"display\": \"Birth time\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueTime\": \"13:08:09\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:30ae2630-80ed-4046-a7be-17b069de4d2e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2d7d04a3-b6a9-4e08-bb5a-3193563e9c47\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6900d2b5-27f0-41ea-beab-a09459605607\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f97ae6b8-093b-4913-b5b9-b17251abd13d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2e16e050-3bde-4dd6-9d57-71ffbf735f91\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c5d8d30e-8ae9-40cd-a52f-bf517d128517\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"30525-0\",\n \"display\": \"Age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"authored\": \"2023-06-22T14:30:05+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:05+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:{{Encounter_Anak_uuid}}\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24674\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T14:30:05+00:00\",\n \"end\": \"2023-06-24T14:30:02+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T14:30:05+00:00\",\n \"end\": \"2023-06-23T14:30:02+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T14:30:05+00:00\",\n \"end\": \"2023-06-23T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-23T07:15:00+00:00\",\n \"end\": \"2023-06-24T14:30:02+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-24T14:30:02+00:00\",\n \"end\": \"2023-06-24T14:30:02+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"response": [
{
"name": "Bundle - Pelaporan Kematian Anak Lahir Hidup",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:3fc32f06-f711-440a-abda-2ff2c1bf53ec\",\n \"resource\": {\n \"resourceType\": \"Composition\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\n \"value\": \"2361720014\"\n },\n \"status\": \"preliminary\",\n \"contained\": [\n {\n \"resourceType\": \"Location\",\n \"id\": \"987654321\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000005\",\n \"display\": \"Alamat Mati\"\n }\n ]\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n },\n \"address\": {\n \"use\": \"work\",\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"101010110\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n },\n {\n \"resourceType\": \"Location\",\n \"id\": \"123456789\",\n \"name\": \"Puskesmas SATUSEHAT\",\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"LT000001\",\n \"display\": \"Lokasi Tempat Bersalin\"\n }\n ]\n }\n ],\n \"address\": {\n \"use\": \"work\",\n \"city\": \"Jakarta\",\n \"postalCode\": \"12950\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\",\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/composition-type\",\n \"code\": \"COM000003\",\n \"display\": \"Formulir Informasi Kematian Perinatal Lahir Hidup\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"date\": \"2023-06-22T14:31:00+00:00\",\n \"author\": [\n {\n \"reference\": \"Practitioner/N10000001\",\n \"display\": \"Dokter Bronsig\"\n }\n ],\n \"title\": \"Notifikasi Kematian Perinatal\",\n \"attester\": [\n {\n \"mode\": \"legal\",\n \"party\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Puskesmas SATUSEHAT\"\n }\n }\n ],\n \"event\": [\n {\n \"code\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"445667001\",\n \"display\": \"Interim report\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-06-20T14:30:00+00:00\",\n \"end\": \"2023-06-21T14:29:59+00:00\"\n },\n \"detail\": [\n {\n \"reference\": \"Practitioner/N10000001\",\n \"display\": \"Dr. John Doe\"\n }\n ]\n }\n ],\n \"section\": [\n {\n \"title\": \"Riwayat Kematian Bayi\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64297-5\",\n \"display\": \"DeathInvestigation\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Alamat Mati\",\n \"reference\": \"#987654321\"\n },\n {\n \"display\": \"Jenis Kematian\",\n \"reference\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\"\n },\n {\n \"display\": \"Umur saat meninggal\",\n \"reference\": \"urn:uuid:94adf4a9-02ee-4047-9389-4987c573909d\"\n },\n {\n \"display\": \"Berat saat meninggal\",\n \"reference\": \"urn:uuid:936d469c-d317-45f3-8711-1b6566830c37\"\n },\n {\n \"display\": \"Tanggal dan Jam Meninggal\",\n \"reference\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\"\n },\n {\n \"display\": \"Dugaan Sebab Kematian\",\n \"reference\": \"urn:uuid:3a7d80eb-7b9a-4761-809b-e155205852d8\"\n },\n {\n \"display\": \"Panjang Saat Meninggal\",\n \"reference\": \"urn:uuid:621a34c0-2b36-4abb-8167-05494bc21509\"\n },\n {\n \"display\": \"Jenis Tempat Meninggal\",\n \"reference\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\"\n },\n {\n \"display\": \"Kondisi Ibu yang dapat mempengaruhi janin\",\n \"reference\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Tempat Persalinan\",\n \"reference\": \"#123456789\"\n },\n {\n \"display\": \"Janin yang meninggal (Untuk bayi kembar)\",\n \"reference\": \"urn:uuid:2054d96b-a2f3-475f-9afa-870047b70b20\"\n },\n {\n \"display\": \"Jenis Tempat Bersalin\",\n \"reference\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\"\n },\n {\n \"display\": \"Berat Lahir\",\n \"reference\": \"urn:uuid:6eba08ca-be5e-43b7-90eb-e704af8d76d0\"\n },\n {\n \"display\": \"Lingkar Kepala\",\n \"reference\": \"urn:uuid:c5b266ed-e510-4f82-8738-d52d2ae4ba21\"\n },\n {\n \"display\": \"APGAR menit 1 - Appearance (Warna Kulit)\",\n \"reference\": \"urn:uuid:6f06e9b7-8582-4907-aaa7-89b40e4dc0bc\"\n },\n {\n \"display\": \"APGAR menit 1 - Pulse (Denyut Jantung)\",\n \"reference\": \"urn:uuid:a0d8f56e-eaf1-4cf1-8ace-b55231219e82\"\n },\n {\n \"display\": \"APGAR menit 1 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"urn:uuid:0110a660-57c0-4a82-8044-70f02f364ba5\"\n },\n {\n \"display\": \"APGAR menit 1 - Activity (Tonus Otot)\",\n \"reference\": \"urn:uuid:0e74a551-0874-4c65-a91f-508b10ec62f6\"\n },\n {\n \"display\": \"APGAR menit 1 - Respiration (Pernapasan)\",\n \"reference\": \"urn:uuid:ac347158-8182-460b-8241-2cda43241251\"\n },\n {\n \"display\": \"APGAR menit 1 - Total Skor APGAR menit ke-1\",\n \"reference\": \"urn:uuid:6e76cad1-aa6b-4ecc-af8c-07bab74343f4\"\n },\n {\n \"display\": \"APGAR menit 5 - Appearance (Warna Kulit)\",\n \"reference\": \"urn:uuid:024fe6d5-4329-4344-9543-1a4de04a00c2\"\n },\n {\n \"display\": \"APGAR menit 5 - Pulse (Denyut Jantung)\",\n \"reference\": \"urn:uuid:47152b20-576f-4bde-ae4d-a383cf0c7f6c\"\n },\n {\n \"display\": \"APGAR menit 5 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"urn:uuid:3882a342-19ce-44dc-b647-a40ecf173eaf\"\n },\n {\n \"display\": \"APGAR menit 5 - Activity (Tonus Otot)\",\n \"reference\": \"urn:uuid:ac1b7358-2d07-4439-bc57-d9ec260839a5\"\n },\n {\n \"display\": \"APGAR menit 5 - Respiration (Pernapasan)\",\n \"reference\": \"urn:uuid:c482203f-c374-4364-96ff-0ebe235c3c03\"\n },\n {\n \"display\": \"APGAR menit 5 - Total Skor APGAR menit ke-5\",\n \"reference\": \"urn:uuid:5b8353c1-07f6-4b83-b814-1fc3922d4c0d\"\n },\n {\n \"display\": \"APGAR menit 10 - Appearance (Warna Kulit)\",\n \"reference\": \"urn:uuid:761ca9b0-933f-4d8a-a124-fe0d49afdb40\"\n },\n {\n \"display\": \"APGAR menit 10 - Pulse (Denyut Jantung)\",\n \"reference\": \"urn:uuid:2e6f7980-af54-42b3-870b-5a90e5d1126e\"\n },\n {\n \"display\": \"APGAR menit 10 - Grimace (Refleks Terhadap Stimulus Taktil)\",\n \"reference\": \"urn:uuid:d97d0357-76ce-4611-ab8e-eade5fab2307\"\n },\n {\n \"display\": \"APGAR menit 10 - Activity (Tonus Otot)\",\n \"reference\": \"urn:uuid:0b7a3a06-c563-4537-af1c-0ef6fae62330\"\n },\n {\n \"display\": \"APGAR menit 10 - Respiration (Pernapasan)\",\n \"reference\": \"urn:uuid:1f3e8524-631e-4fde-9747-db357f0bdb67\"\n },\n {\n \"display\": \"APGAR menit 10 - Total Skor APGAR menit ke-5\",\n \"reference\": \"urn:uuid:57bf7ac8-1222-42dc-8720-eb30456e8a62\"\n },\n {\n \"display\": \"Kelainan Bawaan\",\n \"reference\": \"urn:uuid:1832486e-7102-489c-b1dd-513e5d0c24c1\"\n },\n {\n \"display\": \"Jam Lahir\",\n \"reference\": \"urn:uuid:407d64f8-22c3-49b8-b893-77262aa1fe88\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Persalinan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"15508-5\",\n \"display\": \"Labor and delivery records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Cara Persalinan\",\n \"reference\": \"urn:uuid:493e888d-b22d-4877-ac60-6d731482e1ab\"\n }\n ]\n },\n {\n \"title\": \"Riwayat Kehamilan\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57073-9\",\n \"display\": \"Prenatal records\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Gravida\",\n \"reference\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\"\n },\n {\n \"display\": \"Usia Kehamilan (UK)\",\n \"reference\": \"urn:uuid:30ae2630-80ed-4046-a7be-17b069de4d2e\"\n },\n {\n \"display\": \"Partus\",\n \"reference\": \"urn:uuid:2d7d04a3-b6a9-4e08-bb5a-3193563e9c47\"\n },\n {\n \"display\": \"Abortus\",\n \"reference\": \"urn:uuid:6900d2b5-27f0-41ea-beab-a09459605607\"\n },\n {\n \"display\": \"Jenis Kehamilan (Tunggal/Kembar)\",\n \"reference\": \"urn:uuid:f97ae6b8-093b-4913-b5b9-b17251abd13d\"\n },\n {\n \"display\": \"Jumlah Anak Hidup\",\n \"reference\": \"urn:uuid:2e16e050-3bde-4dd6-9d57-71ffbf735f91\"\n }\n ]\n },\n {\n \"title\": \"Data Dasar Ibu\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45970-1\",\n \"display\": \"Demographic information section\"\n }\n ]\n },\n \"focus\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"entry\": [\n {\n \"display\": \"Umur Ibu Ketika Anak Meninggal\",\n \"reference\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\"\n },\n {\n \"display\": \"Lama Tinggal\",\n \"reference\": \"urn:uuid:fc98a4c0-dad0-4e1e-8f11-760bdf9d2a07\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Composition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c238dbef-13b7-4641-bcac-39efcc8ae48f\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"64710-7\",\n \"display\": \"Was your pregnancy a live birth, stillbirth, miscarriage, abortion, or ectopic pregnancy [PhenX]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276506001\",\n \"display\": \"Newborn death\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1bd4f381-4518-472d-9714-0bc76421da9e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39016-1\",\n \"display\": \"Age at death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 120,\n \"unit\": \"minutes\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"min\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a5455c49-f978-40c8-bdd7-9bbaaccbaf2d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000030\",\n \"display\": \"Berat saat meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8e888344-d5e5-4d6b-bcb7-72e2af6d4257\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"81956-5\",\n \"display\": \"Date and time of death [TimeStamp]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueDateTime\": \"2023-06-22T13:40:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:3a7d80eb-7b9a-4761-809b-e155205852d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79378-6\",\n \"display\": \"Cause of death\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N\",\n \"display\": \"Neonatal death\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"N1\",\n \"display\": \"Congenital malformations, deformations and chromosomal abnormalities\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q00\",\n \"display\": \"Anencephaly and similar malformations\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:621a34c0-2b36-4abb-8167-05494bc21509\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 46.5,\n \"unit\": \"centimeter\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0396b598-b28d-4f5c-8917-550e0b68a612\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000028\",\n \"display\": \"Jenis Tempat Meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"RS Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:013dcfcc-2c69-4b59-8ebd-04061bcf1f64\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"104184-7\",\n \"display\": \"Maternal condition that affected the fetus Mother\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000019\",\n \"display\": \"Kode group\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M\",\n \"display\": \"Maternal condition\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000020\",\n \"display\": \"Kode subgroup\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"M4\",\n \"display\": \"Maternal medical and surgical conditions\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id\",\n \"code\": \"TK000021\",\n \"display\": \"Kode detail\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"P04.0\",\n \"display\": \"Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery\"\n }\n ]\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b96204ac-80da-4ab4-b2dc-12344c112ea0\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000029\",\n \"display\": \"Janin yang meninggal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000398\",\n \"display\": \"Janin yang meninggal adalah janin yang lahir pada urutan pertama\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:69b48064-b605-4944-8ec7-5e207d3f2c83\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72150-6\",\n \"display\": \"Delivery location\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/organization-type\",\n \"code\": \"OT000006\",\n \"display\": \"Rumah Sakit Pemerintah\"\n }\n ],\n \"text\": \"Rumah Sakit Pemerintah\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:96a255dd-9df4-48f5-8b66-d90c1a98a61c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"276654001\",\n \"display\": \"Congenital malformation\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/icd-10-pm\",\n \"code\": \"Q01\",\n \"display\": \"Encephalocele\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a6c08c64-2f10-41eb-b3c1-cf41e569ac3f\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111111\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9843-4\",\n \"display\": \"Head Occipital-frontal circumference\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"Dokter Bronsig\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"centimeter\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6f06e9b7-8582-4907-aaa7-89b40e4dc0bc\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32406-1\",\n \"display\": \"1 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:a0d8f56e-eaf1-4cf1-8ace-b55231219e82\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32407-9\",\n \"display\": \"1 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6718-6\",\n \"display\": \"At least 100 beats per minute\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0110a660-57c0-4a82-8044-70f02f364ba5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32409-5\",\n \"display\": \"1 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6721-0\",\n \"display\": \"Grimace and pulling away, cough, or sneeze during suctioning\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0e74a551-0874-4c65-a91f-508b10ec62f6\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32408-7\",\n \"display\": \"1 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ac347158-8182-460b-8241-2cda43241251\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32410-3\",\n \"display\": \"1 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6e76cad1-aa6b-4ecc-af8c-07bab74343f4\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9272-6\",\n \"display\": \"1 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:024fe6d5-4329-4344-9543-1a4de04a00c2\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32411-1\",\n \"display\": \"5 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:47152b20-576f-4bde-ae4d-a383cf0c7f6c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32412-9\",\n \"display\": \"5 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:3882a342-19ce-44dc-b647-a40ecf173eaf\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32414-5\",\n \"display\": \"5 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ac1b7358-2d07-4439-bc57-d9ec260839a5\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32413-7\",\n \"display\": \"5 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c482203f-c374-4364-96ff-0ebe235c3c03\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32415-2\",\n \"display\": \"5 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:5b8353c1-07f6-4b83-b814-1fc3922d4c0d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9274-2\",\n \"display\": \"5 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:761ca9b0-933f-4d8a-a124-fe0d49afdb40\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32401-2\",\n \"display\": \"10 minute Apgar Color\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6724-4\",\n \"display\": \"Good color all over\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2e6f7980-af54-42b3-870b-5a90e5d1126e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32402-0\",\n \"display\": \"10 minute Apgar Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6717-8\",\n \"display\": \"Fewer than 100 beats per minute\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d97d0357-76ce-4611-ab8e-eade5fab2307\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32404-6\",\n \"display\": \"10 minute Apgar Reflex irritability\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6720-2\",\n \"display\": \"Grimace during suctioning\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:0b7a3a06-c563-4537-af1c-0ef6fae62330\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32403-8\",\n \"display\": \"10 minute Apgar Muscle tone\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6714-5\",\n \"display\": \"Some flexion of arms and legs\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1f3e8524-631e-4fde-9747-db357f0bdb67\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32405-3\",\n \"display\": \"10 minute Apgar Respiratory effort\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6726-9\",\n \"display\": \"Weak cry; may sound like whimpering, slow or irregular breathing\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:57bf7ac8-1222-42dc-8720-eb30456e8a62\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9271-8\",\n \"display\": \"10 minute Apgar Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 6,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77362009\",\n \"display\": \"Mild to moderate birth asphyxia\"\n }\n ],\n \"text\": \"Asfiksia sedang\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f3ba44b7-d274-49ee-9c55-fd40984e4a93\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8339-4\",\n \"display\": \"Birth weight Measured\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 3000,\n \"unit\": \"gram\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8fbc2d6c-e2b2-497c-b249-9bfdddba2fe9\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57071-3\",\n \"display\": \"Obstetric delivery method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"289259007\",\n \"display\": \"Vaginal delivery\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:7fd2f260-3669-4ec9-a5ec-8bf624246968\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111112\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57715-5\",\n \"display\": \"Birth time\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueTime\": \"13:08:09\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee28d7b9-8912-4e64-a4ae-ea9b05419b0c\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11996-6\",\n \"display\": \"[#] Pregnancies\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE24\",\n \"display\": \"Number of pregnancies (gravida)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:30ae2630-80ed-4046-a7be-17b069de4d2e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18185-9\",\n \"display\": \"Gestational age\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE17\",\n \"display\": \"Gestational age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 32,\n \"unit\": \"week\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"wk\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2d7d04a3-b6a9-4e08-bb5a-3193563e9c47\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11977-6\",\n \"display\": \"[#] Parity\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE32\",\n \"display\": \"Parity\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 1\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:6900d2b5-27f0-41ea-beab-a09459605607\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"69043-8\",\n \"display\": \"Other pregnancy outcomes #\"\n },\n {\n \"system\": \"http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes\",\n \"code\": \"ANC.B6.DE25\",\n \"display\": \"Number of miscarriages and/or abortions\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 0\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:f97ae6b8-093b-4913-b5b9-b17251abd13d\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"57722-1\",\n \"display\": \"Birth plurality of Pregnancy\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"237244005\",\n \"display\": \"Single pregnancy\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2e16e050-3bde-4dd6-9d57-71ffbf735f91\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11638-4\",\n \"display\": \"[#] Births.still living\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueInteger\": 4\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c5d8d30e-8ae9-40cd-a52f-bf517d128517\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O111113\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"30525-0\",\n \"display\": \"Age\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"focus\": [\n {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"effectiveDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"issued\": \"2023-06-22T14:30:05+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:af8f89dd-51f5-43b8-b7dc-36df958e3f52\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0016\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"authored\": \"2023-06-22T14:30:05+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Lama Tinggal\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000031\",\n \"display\": \"6 bulan ke atas\"\n }\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"Z02.9\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Anak_ID}}\",\n \"display\": \"{{Patient_Anak_name}}\"\n },\n \"encounter\": {\n \"reference\": \"urn:uuid:{{Encounter_Anak_uuid}}\"\n },\n \"onsetDateTime\": \"2023-06-22T14:30:05+00:00\",\n \"recordedDate\": \"2023-06-22T14:30:05+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:{{Encounter_Anak_uuid}}\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"O24674\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_Ibu_ID}}\",\n \"display\": \"{{Patient_Ibu_name}}\"\n },\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\n \"code\": \"ATND\",\n \"display\": \"attender\"\n }\n ]\n }\n ],\n \"individual\": {\n \"reference\": \"Practitioner/{{Practitioner_ID}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-06-22T14:30:05+00:00\",\n \"end\": \"2023-06-24T14:30:02+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"display\": \"General Ward, Ruang 1 No 3\",\n \"reference\": \"Location/ef011065-38c9-46f8-9c35-d1fe68966a3e\"\n },\n \"period\": {\n \"start\": \"2023-06-22T14:30:05+00:00\",\n \"end\": \"2023-06-23T14:30:02+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\",\n \"extension\": [\n {\n \"url\": \"value\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\n \"code\": \"reguler\",\n \"display\": \"Kelas Reguler\"\n }\n ]\n }\n },\n {\n \"url\": \"upgradeClassIndicator\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\n \"code\": \"kelas-tetap\",\n \"display\": \"Kelas Tetap Perawatan\"\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-06-22T14:30:05+00:00\",\n \"end\": \"2023-06-23T07:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-06-23T07:15:00+00:00\",\n \"end\": \"2023-06-24T14:30:02+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-06-24T14:30:02+00:00\",\n \"end\": \"2023-06-24T14:30:02+00:00\"\n }\n }\n ],\n \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"urn:uuid:fe729fd3-a6f7-4fd5-8b55-10e5c93061fb\",\n \"display\": \"Examination for administrative purposes, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Composition/68cad803-3d3c-497f-b226-31bb14cf5857/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Composition\",\n \"resourceID\": \"68cad803-3d3c-497f-b226-31bb14cf5857\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/50720b81-9b16-46c4-9fab-85d8be758a6f/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"50720b81-9b16-46c4-9fab-85d8be758a6f\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/06560de7-06f6-4293-84cd-e2d317f1a4b2/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"06560de7-06f6-4293-84cd-e2d317f1a4b2\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/b1510a1d-47ca-443d-9841-5a9597d8e367/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"b1510a1d-47ca-443d-9841-5a9597d8e367\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/114f0548-1d8d-415f-8a4d-7caffac42626/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"114f0548-1d8d-415f-8a4d-7caffac42626\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/d064a86e-3037-4ca8-ae0b-aa3acaf82866/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"d064a86e-3037-4ca8-ae0b-aa3acaf82866\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/0f35626d-8498-4f33-9983-0214b41db2fc/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"0f35626d-8498-4f33-9983-0214b41db2fc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/e214caed-2121-4cb3-ab22-63e7e81c62b7/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"e214caed-2121-4cb3-ab22-63e7e81c62b7\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/1ad0d9fb-8691-4e63-8dde-ec6c3cab7bb7/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"1ad0d9fb-8691-4e63-8dde-ec6c3cab7bb7\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/562e35e6-2869-4c2d-ac64-37dbaa0bfee4/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"562e35e6-2869-4c2d-ac64-37dbaa0bfee4\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/cb04e13b-063f-45e5-aea9-1f435d294337/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"cb04e13b-063f-45e5-aea9-1f435d294337\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/c377492b-58d6-4e1b-9174-acc6f06563fa/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"c377492b-58d6-4e1b-9174-acc6f06563fa\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/f720ef50-a402-466f-86ea-b994ba1a23b8/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"f720ef50-a402-466f-86ea-b994ba1a23b8\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/b611cc53-a3b4-403e-b9dd-9daf41b844ee/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"b611cc53-a3b4-403e-b9dd-9daf41b844ee\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/5f97be37-7236-4d93-b4a4-e283465d1635/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"5f97be37-7236-4d93-b4a4-e283465d1635\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/c50fcfef-0131-48d7-b685-693cb429b73d/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"c50fcfef-0131-48d7-b685-693cb429b73d\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/89213a16-5fe6-4be3-8d56-fbe1855ee5a7/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"89213a16-5fe6-4be3-8d56-fbe1855ee5a7\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/0092ba26-a9f7-4e21-9773-9849c4dabfc4/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"0092ba26-a9f7-4e21-9773-9849c4dabfc4\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/4a4a6f00-5fad-4f2a-b5b7-c631725e152b/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"4a4a6f00-5fad-4f2a-b5b7-c631725e152b\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/ff3f832b-179e-4366-8576-5971e4be69b5/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"ff3f832b-179e-4366-8576-5971e4be69b5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/3b13e645-3a63-4534-974f-5daa96ca562e/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"3b13e645-3a63-4534-974f-5daa96ca562e\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/f06adbeb-7430-4160-b220-639568504d11/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"f06adbeb-7430-4160-b220-639568504d11\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/e758ed7a-6f36-4175-9087-01eae81921f5/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"e758ed7a-6f36-4175-9087-01eae81921f5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/34f73d6d-b581-4598-9080-284f279788e7/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"34f73d6d-b581-4598-9080-284f279788e7\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/08498112-f7ce-43d2-97d0-186a7beea62d/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"08498112-f7ce-43d2-97d0-186a7beea62d\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/ff243af3-e7b1-4767-ae17-8fdf025933bc/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"ff243af3-e7b1-4767-ae17-8fdf025933bc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/e62fd4bc-cd02-4be1-86e5-067747017c27/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"e62fd4bc-cd02-4be1-86e5-067747017c27\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/7ab8c703-f42e-4731-a509-4fae93a8d3a0/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"7ab8c703-f42e-4731-a509-4fae93a8d3a0\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/39d01d96-4262-421c-a909-9a43b46aa174/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"39d01d96-4262-421c-a909-9a43b46aa174\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/4d6a2818-3907-4456-a745-2bc6058f06d8/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"4d6a2818-3907-4456-a745-2bc6058f06d8\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/4a8434ee-80a4-4c5d-a7d2-3f405f88db36/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"4a8434ee-80a4-4c5d-a7d2-3f405f88db36\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/6280ad0b-b41a-4b52-ba1d-1fe11f2cced4/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"6280ad0b-b41a-4b52-ba1d-1fe11f2cced4\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/5fe94ed4-5ef6-4e44-a0f2-f1bcbc56434b/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"5fe94ed4-5ef6-4e44-a0f2-f1bcbc56434b\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/3d5e23c6-7360-41d7-976e-fc1147715f8c/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"3d5e23c6-7360-41d7-976e-fc1147715f8c\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/dc5d814f-5801-473f-b62f-5aa720791324/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"dc5d814f-5801-473f-b62f-5aa720791324\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/a2af5446-0920-4241-ba23-b483ccb948f1/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"a2af5446-0920-4241-ba23-b483ccb948f1\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/e81fe87d-e511-45df-a9ff-11c8f84c72b1/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"e81fe87d-e511-45df-a9ff-11c8f84c72b1\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/aa436310-44f8-44eb-8d36-102b17e7866d/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"aa436310-44f8-44eb-8d36-102b17e7866d\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/93137630-c24d-42f0-97ad-0baf2ff50eab/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"93137630-c24d-42f0-97ad-0baf2ff50eab\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/1123628a-267d-44d2-89b0-5ffb2882ec7d/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"1123628a-267d-44d2-89b0-5ffb2882ec7d\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/98b0d65f-ea23-4f28-a70c-84db8033d66a/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"98b0d65f-ea23-4f28-a70c-84db8033d66a\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/QuestionnaireResponse/117496f4-43ff-4746-85e1-b26675290eba/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"resourceID\": \"117496f4-43ff-4746-85e1-b26675290eba\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/20c5eea2-2a15-4cd2-9e5c-272fb64299e4/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"20c5eea2-2a15-4cd2-9e5c-272fb64299e4\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcyNDQ4Njg1NzE1NjQ3NTAwMA\\\"\",\n \"lastModified\": \"2024-08-24T08:07:37.156475+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/6ce98d7f-fe59-4773-be46-88b6e116bf55/_history/MTcyNDQ4Njg1NzE1NjQ3NTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Encounter\",\n \"resourceID\": \"6ce98d7f-fe59-4773-be46-88b6e116bf55\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction-response\",\n \"total\": 44,\n }"
}
]
}
]
}
]
}
],
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"packages": {},
"exec": [
""
]
}
},
{
"listen": "test",
"script": {
"type": "text/javascript",
"packages": {},
"exec": [
""
]
}
}
]
}