Files
satusehat-worker/internal/interfaces/satusehat/json_postman/15. Use Case - Tumbuh Kembang.postman_collection.json
T
2026-04-14 01:21:54 +00:00

7656 lines
832 KiB
JSON
Executable File

{
"info": {
"_postman_id": "5d4d0101-c665-4cb4-9b19-3f9470f24eeb",
"name": "15. Use Case - Tumbuh Kembang",
"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| **Tanggal** | **Riwayat Perubahan** | **Penanggung Jawab** |\n| --- | --- | --- |\n| 24 Juni 2024 | Versi Pertama API sesuai dengan Playbook Usecase Tumbuh Kembang V3.0 | Thomas Chaidir <br> <br>Silvia Alvinia <br> <br>Luthfi Nabilah Qonitah <br> <br>Sania Fitria |\n| 15 Nov 2024 | Versi Pertama - API sesuai dengan Playbook Usecase Tumbuh Kembang V3.0 <br> <br>Pembaruan API resource QuestionnaireResponse dan Medication | Lutfhi Qonitah <br> <br>Thomas Chaidir |",
"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/n7chnuo/15-use-case-tumbuh-kembang?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": "00. Membuat Struktur Organisasi dan Lokasi",
"item": [
{
"name": "Organization - SMF Rawat Jalan",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Suborg_id\", 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\": \"SMF-RAJAL-001\"\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\": \"SMF Rawat Jalan PKM SatuSehat\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+621500567\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"work\"\n },\n {\n \"system\": \"url\",\n \"value\": \"dto.kemkes.go.id\",\n \"use\": \"work\"\n }\n ],\n \"address\": [\n {\n \"use\": \"work\",\n \"type\": \"both\",\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\": \"1010101101\"\n }\n ]\n }\n ]\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 - SMF Rawat Jalan",
"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\": \"SMF-RAJAL-001\"\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\": \"SMF Rawat Jalan PKM SatuSehat\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+621500567\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"work\"\n },\n {\n \"system\": \"url\",\n \"value\": \"dto.kemkes.go.id\",\n \"use\": \"work\"\n }\n ],\n \"address\": [\n {\n \"use\": \"work\",\n \"type\": \"both\",\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\": \"1010101101\"\n }\n ]\n }\n ]\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": [
{
"key": "last-modified",
"value": "Thu, 02 May 2024 14:05:10 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Organization/43cc00ef-c50f-44a5-8446-b0771cf211b3/_history/MTcxNDY1ODcxMDAwNjY2MzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNDY1ODcxMDAwNjY2MzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 14:05:10 GMT"
},
{
"key": "content-length",
"value": "1196"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "525ee65c-5c67-4fa4-bb03-a0b3dc9c8ca0"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"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\": \"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 \"type\": \"both\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"43cc00ef-c50f-44a5-8446-b0771cf211b3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"SMF-RAJAL-001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T14:05:10.006663+00:00\",\n \"versionId\": \"MTcxNDY1ODcxMDAwNjY2MzAwMA\"\n },\n \"name\": \"SMF Rawat Jalan PKM SatuSehat\",\n \"partOf\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000005\"\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 Tumbang(Org)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Org_Poli\", 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\": \"SS-UKP-TUMBANG\"\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\": \"Poli Tumbuh Kembang Puskesmas SatuSehat\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+621500567\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"work\"\n },\n {\n \"system\": \"url\",\n \"value\": \"dto.kemkes.go.id\",\n \"use\": \"work\"\n }\n ],\n \"address\": [\n {\n \"use\": \"work\",\n \"type\": \"both\",\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\": \"317405\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174051001\"\n }\n ]\n }\n ]\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_id}}\",\n \"display\": \"SMF Rawat Jalan\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Poli Tumbang(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\": \"SS-UKP-TUMBANG\"\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\": \"Poli Tumbuh Kembang Puskesmas SatuSehat\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+621500567\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"work\"\n },\n {\n \"system\": \"url\",\n \"value\": \"dto.kemkes.go.id\",\n \"use\": \"work\"\n }\n ],\n \"address\": [\n {\n \"use\": \"work\",\n \"type\": \"both\",\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\": \"317405\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174051001\"\n }\n ]\n }\n ]\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_id}}\",\n \"display\": \"SMF Rawat Jalan\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4MTc2NzE4ODUxMDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 04:42:47 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Organization/f954a543-c784-43c2-8d07-fd90dfcacbcc/_history/MTczMDc4MTc2NzE4ODUxMDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 04:42:47 GMT"
},
{
"key": "Content-Length",
"value": "1230"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "1499a1c7-eb2c-4224-9ad7-e3c9d58157ff"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"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\": \"31\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3174\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"317405\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174051001\"\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 \"type\": \"both\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"f954a543-c784-43c2-8d07-fd90dfcacbcc\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"SS-UKP-TUMBANG\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T04:42:47.188510+00:00\",\n \"versionId\": \"MTczMDc4MTc2NzE4ODUxMDAwMA\"\n },\n \"name\": \"Poli Tumbuh Kembang Puskesmas SatuSehat\",\n \"partOf\": {\n \"display\": \"SMF Rawat Jalan\",\n \"reference\": \"Organization/f9b5f84b-cd44-4944-9066-1e4d5b4601f2\"\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)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Location_Poli_id\", data.id);\r",
"pm.collectionVariables.set(\"Location_Poli_Name\", data.name)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"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\": \"SS-UKP-TUMBANG-ROOM\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Poli Tumbuh Kembang\",\n \"description\": \"Ruang Poli Tumbuh Kembang\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+621500567\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"work\"\n },\n {\n \"system\": \"url\",\n \"value\": \"dto.kemkes.go.id\",\n \"use\": \"work\"\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\": \"SS-UKP-TUMBANG-ROOM\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Poli Tumbuh Kembang\",\n \"description\": \"Ruang Poli Tumbuh Kembang\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+621500567\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"work\"\n },\n {\n \"system\": \"url\",\n \"value\": \"dto.kemkes.go.id\",\n \"use\": \"work\"\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"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4MTc4MzA0MTc5NTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 04:43:03 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Location/75c3f68e-460f-4a88-8905-5f9deabc37ce/_history/MTczMDc4MTc4MzA0MTc5NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 04:43:03 GMT"
},
{
"key": "Content-Length",
"value": "888"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "eda5d0e6-818a-4d1a-8018-2a60b8b9c6cf"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"description\": \"Ruang Poli Tumbuh Kembang\",\n \"id\": \"75c3f68e-460f-4a88-8905-5f9deabc37ce\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000005\",\n \"value\": \"SS-UKP-TUMBANG-ROOM\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/f954a543-c784-43c2-8d07-fd90dfcacbcc\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T04:43:03.041795+00:00\",\n \"versionId\": \"MTczMDc4MTc4MzA0MTc5NTAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Ruang Poli Tumbuh Kembang\",\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 Farmasi/Apotek (Org)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Org_Farmasi\", 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\": \"SS-UKP-FAR\"\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\": \"Koord Apotek\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+621500567\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"work\"\n },\n {\n \"system\": \"url\",\n \"value\": \"dto.kemkes.go.id\",\n \"use\": \"work\"\n }\n ],\n \"address\": [\n {\n \"use\": \"work\",\n \"type\": \"both\",\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\": \"317405\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174051001\"\n }\n ]\n }\n ]\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_id}}\",\n \"display\": \"UKP, Kefarmasian, Laboratorium\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Farmasi/Apotek (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\": \"SS-UKP-FAR\"\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\": \"Koord Apotek\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+621500567\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"work\"\n },\n {\n \"system\": \"url\",\n \"value\": \"dto.kemkes.go.id\",\n \"use\": \"work\"\n }\n ],\n \"address\": [\n {\n \"use\": \"work\",\n \"type\": \"both\",\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\": \"317405\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174051001\"\n }\n ]\n }\n ]\n }\n ],\n \"partOf\": {\n \"reference\": \"Organization/{{Suborg_id}}\",\n \"display\": \"UKP, Kefarmasian, Laboratorium\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Organization/0ab3bc5b-9b04-42f4-bff4-49e7b4e2242d/_history/MTczMDc4MTgyNDg5Nzg1NzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 04:43:44 UTC"
},
{
"key": "etag",
"value": "W/\"MTczMDc4MTgyNDg5Nzg1NzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 04:43:44 GMT"
},
{
"key": "Content-Length",
"value": "1214"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "a34da75b-cf47-4d7f-ac0b-00444930718b"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"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\": \"31\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3174\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"317405\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3174051001\"\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 \"type\": \"both\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"0ab3bc5b-9b04-42f4-bff4-49e7b4e2242d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"SS-UKP-FAR\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T04:43:44.897857+00:00\",\n \"versionId\": \"MTczMDc4MTgyNDg5Nzg1NzAwMA\"\n },\n \"name\": \"Koord Apotek\",\n \"partOf\": {\n \"display\": \"UKP, Kefarmasian, Laboratorium\",\n \"reference\": \"Organization/f9b5f84b-cd44-4944-9066-1e4d5b4601f2\"\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 Farmasi/Apotek (Room)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Location_farmasi_id\", data.id);\r",
"pm.collectionVariables.set(\"Location_farmasi_Name\", data.name)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"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\": \"SS-UKP-FAR-ROOM\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Apotek\",\n \"description\": \"Ruang Apotek\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+621500567\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"work\"\n },\n {\n \"system\": \"url\",\n \"value\": \"dto.kemkes.go.id\",\n \"use\": \"work\"\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 Farmasi/Apotek (Room)",
"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\": \"SS-UKP-FAR-ROOM\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Apotek\",\n \"description\": \"Ruang Apotek\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"+621500567\",\n \"use\": \"work\"\n },\n {\n \"system\": \"email\",\n \"value\": \"[email protected]\",\n \"use\": \"work\"\n },\n {\n \"system\": \"url\",\n \"value\": \"dto.kemkes.go.id\",\n \"use\": \"work\"\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"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 04:43:54 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Location/6910a49e-6295-4e58-afb6-ff2952fc02b3/_history/MTczMDc4MTgzNDIyMzA1NDAwMA"
},
{
"key": "etag",
"value": "W/\"MTczMDc4MTgzNDIyMzA1NDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 04:43:54 GMT"
},
{
"key": "Content-Length",
"value": "858"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "3a504eec-4bdc-48d1-9094-bbe9c28e4b85"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"description\": \"Ruang Apotek\",\n \"id\": \"6910a49e-6295-4e58-afb6-ff2952fc02b3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000005\",\n \"value\": \"SS-UKP-FAR-ROOM\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/f954a543-c784-43c2-8d07-fd90dfcacbcc\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T04:43:54.223054+00:00\",\n \"versionId\": \"MTczMDc4MTgzNDIyMzA1NDAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Ruang Apotek\",\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 - GET ALL suborgs",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var org_id= pm.environment.get('Org_id');\r",
"var org_list = pm.collectionVariables.get('Org_list');\r",
"org_list= [...new Set(org_list)]\r",
"var x = org_list.length;\r",
"console.log(x)\r",
"if(org_list.length == 0){var org_list = [org_id]};\r",
"bundle.entry.forEach(entry => {\r",
"\tlet data = entry.resource;\r",
"\tif(org_list.includes(data.id) == false){org_list.push(data.id)};\r",
"});\r",
"\r",
"var y = org_list.length;\r",
"org_list= [...new Set(org_list)]\r",
"console.log(y)\r",
"if(x >= y){console.log('max org_list_length reached')};\r",
"pm.collectionVariables.set('Org_list', org_list);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/Organization?partof={{Org_id}}&_revinclude=Organization:part-of&_revinclude=Location:organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
],
"query": [
{
"key": "partof",
"value": "{{Org_id}}"
},
{
"key": "_revinclude",
"value": "Organization:part-of"
},
{
"key": "_revinclude",
"value": "Location:organization"
}
]
}
},
"response": [
{
"name": "Organization - GET ALL suborgs",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/Organization?partof={{Org_id}}&_revinclude=Organization:part-of",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
],
"query": [
{
"key": "partof",
"value": "{{Org_id}}"
},
{
"key": "_revinclude",
"value": "Organization:part-of"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 04:44:03 GMT"
},
{
"key": "Content-Length",
"value": "29291"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "20665120-00ca-4355-9c24-e40d17c0c715"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/fe5b1447-ff4d-4b93-af0b-af24e73caaec\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"36\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3601\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"360115\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3601152002\"\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\": \"fe5b1447-ff4d-4b93-af0b-af24e73caaec\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-09-03T10:27:18.357331+00:00\",\n \"versionId\": \"MTcyNTM1OTIzODM1NzMzMTAwMA\"\n },\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"partOf\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000005\"\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 }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/f9b5f84b-cd44-4944-9066-1e4d5b4601f2\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\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\": \"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 \"type\": \"both\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"f9b5f84b-cd44-4944-9066-1e4d5b4601f2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"DIV-YANMED\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-09-02T07:51:42.659942+00:00\",\n \"versionId\": \"MTcyNTI2MzUwMjY1OTk0MjAwMA\"\n },\n \"name\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"partOf\": {\n \"display\": \"RS SatuSehat IHS\",\n \"reference\": \"Organization/10000005\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+6221-14045\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"www.SatSetHospital.com\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"dept\",\n \"display\": \"Hospital Department\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\"\n }\n ]\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/53160406-3d29-4572-afaa-24be54322fee\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Pandeglang\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"36\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3601\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"360101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"36010101\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Jl. Raya SatuSehat No.3, RT.009/RW.002, Kec. Sumur, Kab. Pandeglang, Banten 42283\"\n ],\n \"postalCode\": \"42283\",\n \"type\": \"both\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"53160406-3d29-4572-afaa-24be54322fee\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"POKJA-UKM\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-30T04:55:11.070199+00:00\",\n \"versionId\": \"MTcxNzA0NDkxMTA3MDE5OTAwMA\"\n },\n \"name\": \"Program Kerja Usaha Kesehatan Masyarakat\",\n \"partOf\": {\n \"display\": \"Puskesmas SatuSehat\",\n \"reference\": \"Organization/10000005\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+6221-14045\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"www.puskesmassatusehat.com\"\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 }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/55845fbd-5a70-42ae-8433-89e9072c01d0\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Pandeglang\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"36\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3601\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"360101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"36010101\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Jl. Raya Sangat Waras No.3, RT.009/RW.002, Kec. Sumur, Kab. Pandeglang, Banten 42283\"\n ],\n \"postalCode\": \"42283\",\n \"type\": \"both\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"55845fbd-5a70-42ae-8433-89e9072c01d0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"SW-KIA\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-29T07:03:04.309025+00:00\",\n \"versionId\": \"MTcxNjk2NjE4NDMwOTAyNTAwMA\"\n },\n \"name\": \"Divisi Kesehatan Ibu dan Anak\",\n \"partOf\": {\n \"display\": \"PUSKESMAS SATSET\",\n \"reference\": \"Organization/10000005\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+6221-14045\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"www.puskesmassatusehat.com\"\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 }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/43cc00ef-c50f-44a5-8446-b0771cf211b3\",\n \"resource\": {\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\": \"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 \"type\": \"both\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"43cc00ef-c50f-44a5-8446-b0771cf211b3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"SMF-RAJAL-001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T14:05:10.006663+00:00\",\n \"versionId\": \"MTcxNDY1ODcxMDAwNjY2MzAwMA\"\n },\n \"name\": \"SMF Rawat Jalan PKM SatuSehat\",\n \"partOf\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000005\"\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 }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/2c64deb0-4906-44a0-a3e7-012c815a6010\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Pandeglang\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"36\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3601\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"360101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"36010101\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Jl. Raya Sangat Waras No.3, RT.009/RW.002, Kec. Sumur, Kab. Pandeglang, Banten 42283\"\n ],\n \"postalCode\": \"42283\",\n \"type\": \"both\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"2c64deb0-4906-44a0-a3e7-012c815a6010\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"SMF-RAJAL\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-24T03:26:12.036157+00:00\",\n \"versionId\": \"MTcxMzkyOTE3MjAzNjE1NzAwMA\"\n },\n \"name\": \"SubMedical Faculty - Rawat Jalan\",\n \"partOf\": {\n \"display\": \"Puskesmas Satu Sehat\",\n \"reference\": \"Organization/10000005\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+6221-14045\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"www.puskesmasatusehat.com\"\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 }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/b2c312ac-b949-4cc4-9dbd-dfa597aecc6f\",\n \"resource\": {\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\": \"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 \"type\": \"both\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"b2c312ac-b949-4cc4-9dbd-dfa597aecc6f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"SS-UKP\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-17T07:55:28.608917+00:00\",\n \"versionId\": \"MTcxMzM0MDUyODYwODkxNzAwMA\"\n },\n \"name\": \"UKP, Kefarmasian, Laboratorium\",\n \"partOf\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000005\"\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 }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/3c42e3d4-42b1-4625-9190-b08a47a47632\",\n \"resource\": {\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\": \"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 \"type\": \"both\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"3c42e3d4-42b1-4625-9190-b08a47a47632\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"UKP\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-17T07:41:54.298590+00:00\",\n \"versionId\": \"MTcxMzMzOTcxNDI5ODU5MDAwMA\"\n },\n \"name\": \"UKP, Kefarmasian, Laboratorium\",\n \"partOf\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000005\"\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\": \"dept\",\n \"display\": \"Hospital Department\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\"\n }\n ]\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/734f43ee-ab39-4738-92a0-a95e4345f6ff\",\n \"resource\": {\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\": \"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 \"type\": \"both\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"734f43ee-ab39-4738-92a0-a95e4345f6ff\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"SMF-RAJAL\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-04T03:07:58.007630+00:00\",\n \"versionId\": \"MTcxMjIwMDA3ODAwNzYzMDAwMA\"\n },\n \"name\": \"SubMedical Faculty - Rawat Jalan\",\n \"partOf\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000005\"\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 }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/ee87ea38-a779-48dd-9e27-67e0a195eedc\",\n \"resource\": {\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\": \"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 \"type\": \"both\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"ee87ea38-a779-48dd-9e27-67e0a195eedc\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"UKP\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-16T14:34:06.571628+00:00\",\n \"versionId\": \"MTcxMDU5OTY0NjU3MTYyODAwMA\"\n },\n \"name\": \"Pelayananan Upaya Kesehatan Perseorangan\",\n \"partOf\": {\n \"display\": \"Puskesmas SATUSEHAT\",\n \"reference\": \"Organization/10000005\"\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 }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/dfaa357d-881d-44ac-bb0d-6a69d2399539\"\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/4af3a80a-3d3f-434e-842a-bcf772f1448d\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Pandeglang\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"36\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3601\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"360101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"36010101\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Jl. Raya Sangat Waras No.3, RT.009/RW.002, Kec. Sumur, Kab. Pandeglang, Banten 42283\"\n ],\n \"postalCode\": \"42283\",\n \"type\": \"both\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"4af3a80a-3d3f-434e-842a-bcf772f1448d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"SW-Keluarga\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-02-09T09:09:12.786083+00:00\",\n \"versionId\": \"MTcwNzQ2OTc1Mjc4NjA4MzAwMA\"\n },\n \"name\": \"Pelayanan Kesehatan Keluarga\",\n \"partOf\": {\n \"display\": \"Puskesmas Sangat Waras\",\n \"reference\": \"Organization/10000005\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+6221-14045\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"www.puskesmassangatwaras.com\"\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 }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/b6e6239e-4810-4e76-a81d-00657a88ee7a\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/248ba507-20b6-45b4-acc4-75ff5586efe2\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/c6dd9b1d-baee-49c6-8e1d-d53e55569364\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/abe7e4b7-46d2-42b9-9771-0d1c54730b07\"\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/f3da7a73-6a84-4547-90e8-c4880ee166fb\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"31\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3171\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"317101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"31710101\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Jalan Jati Asih\"\n ],\n \"postalCode\": \"55292\",\n \"type\": \"both\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"f3da7a73-6a84-4547-90e8-c4880ee166fb\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"PIM202401000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-02-05T09:18:02.363173+00:00\",\n \"versionId\": \"MTcwNzEyNDY4MjM2MzE3MzAwMA\"\n },\n \"name\": \"Pos Imunisasi Lubuk Batang\",\n \"partOf\": {\n \"reference\": \"Organization/10000005\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+6221-783042654\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"dept\",\n \"display\": \"Hospital Department\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\"\n }\n ]\n }\n ]\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/f49e130a-bff1-4641-a1f7-28d03b53282a\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"Pandeglang\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"36\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3601\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"360101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"36010101\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Jl. Raya Sangat Waras No.3, RT.009/RW.002, Kec. Sumur, Kab. Pandeglang, Banten 42283\"\n ],\n \"postalCode\": \"42283\",\n \"type\": \"both\",\n \"use\": \"work\"\n }\n ],\n \"id\": \"f49e130a-bff1-4641-a1f7-28d03b53282a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"SMF-RAJAL\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-01-31T10:17:45.946891+00:00\",\n \"versionId\": \"MTcwNjY5NjI2NTk0Njg5MTAwMA\"\n },\n \"name\": \"SubMedical Faculty - Rawat Jalan\",\n \"partOf\": {\n \"display\": \"Puskesmas Sangat Waras\",\n \"reference\": \"Organization/10000005\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+6221-14045\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"[email protected]\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"www.puskesmassangatwaras.com\"\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 }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/dc08b74f-9174-4945-954e-3580c4debe26\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/d2ae0c4e-c272-42ed-ae77-477b875f2fac\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/68c394b3-e354-47e0-a144-9f2a01a09dde\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/13e7ab6b-ccdc-408a-87c7-580d86e43526\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/0d4efb19-446d-470b-b7a1-07fddefad6b2\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/8bad5386-3e10-43fb-b812-7b7c5c333548\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/0bbeebbf-a7a0-43c7-b6b6-5a035105435e\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/cd7501eb-c0ab-4cee-bc96-4aaf9762d457\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/143b8721-1a43-450b-ac3d-717eb4845548\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/b2044d6b-cc10-46bd-a171-e9398029fc05\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/5d1b5ace-705d-4246-aa6f-714f38cad533\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/406187a5-2838-4f92-8f10-34c683d47056\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/e51d1e50-1071-4711-8aa1-a7f5a9e0547a\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/ebf92cef-994a-45cd-b9e3-cd1fe1c5bc7f\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/90100071-409e-4808-9782-a51a2ee97c4f\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/b8e1269b-f118-4f4c-bd6a-460e9477f801\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/6b478409-354f-4887-b04f-ec3247465bc9\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/faf89d3f-271d-440a-b706-c5e108d352c7\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/fd53a653-c7b9-4ced-8920-4b9edfac75ce\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/1bf73b57-c066-4adc-b4d6-7db4acf82004\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/16da0b73-27e4-41f4-802c-c88bb5d83a56\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/6ac6ac62-d8f2-4301-80c6-894a0f8906e8\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/7662565f-ea68-4bfa-a265-1d29184525fd\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/53292b6d-2cac-43a6-9507-45a06d207546\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/b60b2f1e-9c81-47e2-b02d-137dd12d05f2\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/d8beb887-fc3e-4722-852a-6c2262b04502\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/1ec377e5-f586-4bb8-b83d-bddc18122b1e\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/1a003c9c-fe3d-4c6d-9967-18a57e70f1bd\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/f7e6db1b-f2b0-4229-83d4-679b98609eb3\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/9796a27a-05cf-4406-805c-30b378f6a05a\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/92d7aa54-c3bb-4657-95a5-ae6f9a733e5b\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/8296c62e-9bc3-4c84-9374-84c5883d3243\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/cb49f86d-fbef-44be-8553-1218f41dc6fa\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for Organization/81714355-e650-4b3c-96c0-9198eda36c35\"\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/?_revinclude=Organization%3Apart-of&partof=10000005\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/?_revinclude=Organization%3Apart-of&partof=10000005\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Organization/?_revinclude=Organization%3Apart-of&partof=10000005\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 52,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Location - GET Locations from Suborgs",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/Location?organization={{Org_list}}&_revinclude=Location:part-of",
"host": [
"{{base_url}}"
],
"path": [
"Location"
],
"query": [
{
"key": "organization",
"value": "{{Org_list}}"
},
{
"key": "_revinclude",
"value": "Location:part-of"
}
]
}
},
"response": [
{
"name": "Location - GET Locations from Suborgs",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/Location?organization={{Org_list}}&_revinclude=Location:part-of",
"host": [
"{{base_url}}"
],
"path": [
"Location"
],
"query": [
{
"key": "organization",
"value": "{{Org_list}}"
},
{
"key": "_revinclude",
"value": "Location:part-of"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 04:44:34 GMT"
},
{
"key": "Content-Length",
"value": "3920"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "0401e583-fada-4e8b-bba9-c84dcc72df58"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Location/0174c4a4-fefe-42a7-bdfc-ced07300556c\",\n \"resource\": {\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 \"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 \"description\": \"Ruang 1A, Poliklinik Bedah Rawat Jalan Terpadu, Lantai 2, Gedung G\",\n \"id\": \"0174c4a4-fefe-42a7-bdfc-ced07300556c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000005\",\n \"value\": \"PIM001001\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-02-05T09:22:45.908846+00:00\",\n \"versionId\": \"MTcwNzEyNDk2NTkwODg0NjAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Ruang Pos Imunisasi Lubuk Batang\",\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\": \"2328\"\n },\n {\n \"system\": \"fax\",\n \"use\": \"work\",\n \"value\": \"2329\"\n },\n {\n \"system\": \"email\",\n \"value\": \"second wing admissions\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"http://sampleorg.com/southwing\"\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Location/?_revinclude=Location%3Apart-of&organization=10000005%2Cfe5b1447-ff4d-4b93-af0b-af24e73caaec%2Cf9b5f84b-cd44-4944-9066-1e4d5b4601f2%2C53160406-3d29-4572-afaa-24be54322fee%2C55845fbd-5a70-42ae-8433-89e9072c01d0%2C43cc00ef-c50f-44a5-8446-b0771cf211b3%2C2c64deb0-4906-44a0-a3e7-012c815a6010%2Cb2c312ac-b949-4cc4-9dbd-dfa597aecc6f%2C3c42e3d4-42b1-4625-9190-b08a47a47632%2C734f43ee-ab39-4738-92a0-a95e4345f6ff%2Cee87ea38-a779-48dd-9e27-67e0a195eedc%2C%2C4af3a80a-3d3f-434e-842a-bcf772f1448d%2C%2C%2C%2C%2Cf3da7a73-6a84-4547-90e8-c4880ee166fb%2Cf49e130a-bff1-4641-a1f7-28d03b53282a%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Location/?_revinclude=Location%3Apart-of&organization=10000005%2Cfe5b1447-ff4d-4b93-af0b-af24e73caaec%2Cf9b5f84b-cd44-4944-9066-1e4d5b4601f2%2C53160406-3d29-4572-afaa-24be54322fee%2C55845fbd-5a70-42ae-8433-89e9072c01d0%2C43cc00ef-c50f-44a5-8446-b0771cf211b3%2C2c64deb0-4906-44a0-a3e7-012c815a6010%2Cb2c312ac-b949-4cc4-9dbd-dfa597aecc6f%2C3c42e3d4-42b1-4625-9190-b08a47a47632%2C734f43ee-ab39-4738-92a0-a95e4345f6ff%2Cee87ea38-a779-48dd-9e27-67e0a195eedc%2C%2C4af3a80a-3d3f-434e-842a-bcf772f1448d%2C%2C%2C%2C%2Cf3da7a73-6a84-4547-90e8-c4880ee166fb%2Cf49e130a-bff1-4641-a1f7-28d03b53282a%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Location/?_revinclude=Location%3Apart-of&organization=10000005%2Cfe5b1447-ff4d-4b93-af0b-af24e73caaec%2Cf9b5f84b-cd44-4944-9066-1e4d5b4601f2%2C53160406-3d29-4572-afaa-24be54322fee%2C55845fbd-5a70-42ae-8433-89e9072c01d0%2C43cc00ef-c50f-44a5-8446-b0771cf211b3%2C2c64deb0-4906-44a0-a3e7-012c815a6010%2Cb2c312ac-b949-4cc4-9dbd-dfa597aecc6f%2C3c42e3d4-42b1-4625-9190-b08a47a47632%2C734f43ee-ab39-4738-92a0-a95e4345f6ff%2Cee87ea38-a779-48dd-9e27-67e0a195eedc%2C%2C4af3a80a-3d3f-434e-842a-bcf772f1448d%2C%2C%2C%2C%2Cf3da7a73-6a84-4547-90e8-c4880ee166fb%2Cf49e130a-bff1-4641-a1f7-28d03b53282a%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C%2C\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
}
]
},
{
"name": "01. Mencari Data Pasien dan Nakes",
"item": [
{
"name": "Patient - By NIK and Name",
"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",
"var Patient_Name = decodeURIComponent(pm.request.url.query.get('name'));\r",
"pm.collectionVariables.set('Patient_Name', Patient_Name);"
],
"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?identifier=https://fhir.kemkes.go.id/id/nik|9104224606000005&name=Ghina Assyifa",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|9104224606000005"
},
{
"key": "name",
"value": "Ghina Assyifa"
}
]
}
},
"response": [
{
"name": "Patient - By NIK and Name",
"originalRequest": {
"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|9104224606000005&name=Ghina Assyifa",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|9104224606000005"
},
{
"key": "name",
"value": "Ghina Assyifa"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:26:49 GMT"
},
{
"key": "Content-Length",
"value": "12746"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "3cbefc54-f7aa-437b-81dd-0bd13da06307"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/P01654557057\",\n \"resource\": {\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\": \"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. 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\": \"2004-08-21\",\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\": \"P01654557057\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"9104224606000005\"\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\": \"2024-11-01T04:38:31.328417+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\": \"MTczMDQzNTkxMTMyODQxNzAwMA\"\n },\n \"multipleBirthInteger\": 0,\n \"name\": [\n {\n \"text\": \"Ghina Assyifa\",\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 }\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%7C9104224606000005&name=Ghina+Assyifa\"\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%7C9104224606000005&name=Ghina+Assyifa\"\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%7C9104224606000005&name=Ghina+Assyifa\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Practitioner - By NIK and Name",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"pm.collectionVariables.set(\"Practitioner_id\", data.id);\r",
"var Practitioner_Name = decodeURIComponent(pm.request.url.query.get('name'));\r",
"pm.collectionVariables.set('Practitioner_Name', Practitioner_Name);"
],
"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?identifier=https://fhir.kemkes.go.id/id/nik|7209061211900001&name=dr. Alexander",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|7209061211900001"
},
{
"key": "name",
"value": "dr. Alexander"
}
]
}
},
"response": [
{
"name": "Practitioner - By NIK and Name",
"originalRequest": {
"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|7209061211900001&name=dr. Alexander",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/nik|7209061211900001"
},
{
"key": "name",
"value": "dr. Alexander"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:30:13 GMT"
},
{
"key": "Content-Length",
"value": "8718"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "01b7b8e2-bc38-42e1-a2ef-8a0fd3ab94ea"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/10009880728\",\n \"resource\": {\n \"address\": [\n {\n \"city\": \"Kab. Garut\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"32\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"3205\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"320519\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"3205192003\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"12\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Komplek Kesehatan\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1994-01-01\",\n \"gender\": \"male\",\n \"id\": \"10009880728\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"value\": \"10009880728\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"7209061211900001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-10-31T10:27:46.576926+00:00\",\n \"versionId\": \"MTczMDM3MDQ2NjU3NjkyNjAwMA\"\n },\n \"name\": [\n {\n \"text\": \"dr. Alexander\",\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\": \"https://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"value\": \"1234567887654321\"\n }\n ]\n }\n ],\n \"resourceType\": \"Practitioner\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C7209061211900001&name=dr.+Alexander\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C7209061211900001&name=dr.+Alexander\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Practitioner/?identifier=https%3A%2F%2Ffhir.kemkes.go.id%2Fid%2Fnik%7C7209061211900001&name=dr.+Alexander\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
}
]
},
{
"name": "02. Pendaftaran Kunjungan Pasien",
"item": [
{
"name": "Mendapatkan dan Mendaftarkan Orang Tua Pasien Sebagai RelatedPerson",
"item": [
{
"name": "RelatedPerson - by IHS",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"bundle.entry.forEach(entry => {\r",
"\tlet data = entry.resource;\r",
"\tif (data.resourceType == 'RelatedPerson') {\r",
"\t\tpm.collectionVariables.set('RelatedPerson_id', data.id);\r",
"\t\tpm.collectionVariables.set('Patient_Ibu_id', data.identifier.find(identifier => identifier.system == 'https://fhir.kemkes.go.id/id/ihs-number').value);\r",
"\t}\r",
"})"
],
"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}}/RelatedPerson?identifier=https://fhir.kemkes.go.id/id/ihs-number|P02029381697",
"host": [
"{{base_url}}"
],
"path": [
"RelatedPerson"
],
"query": [
{
"key": "identifier",
"value": "https://fhir.kemkes.go.id/id/ihs-number|P02029381697"
}
]
}
},
"response": [
{
"name": "RelatedPerson - by IHS",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "P02428473601"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": null,
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"PASAMAN\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"13\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1308\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"130805\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1308052001\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"0\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"0\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"JLN. PELITA JR III PERUMNASs\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1994-08-21\",\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\": true,\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\": \"2023-12-15T12:00:00.853968+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\": \"MTcwMjY0MTYwMDg1Mzk2ODAwMA\"\n },\n \"multipleBirthBoolean\": false,\n \"name\": [\n {\n \"text\": \"GIBRANDA\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n}"
}
]
},
{
"name": "RelatedPerson - by patient related to",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry.find(entry => entry.resource === 'RelatedPerson').resource;\r",
"pm.collectionVariables.set(\"RelatedPerson_id\", data.id);\r",
"pm.collectionVariables.set('Patient_Ibu_id', data.identifier.find(identifier => identifier.system == 'https://fhir.kemkes.go.id/id/ihs-number').value);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/RelatedPerson?patient={{Patient_id}}",
"host": [
"{{base_url}}"
],
"path": [
"RelatedPerson"
],
"query": [
{
"key": "patient",
"value": "{{Patient_id}}"
}
]
}
},
"response": [
{
"name": "RelatedPerson - by patient related to",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/RelatedPerson?patient={{Patient_MTBM_id}}",
"host": [
"{{base_url}}"
],
"path": [
"RelatedPerson"
],
"query": [
{
"key": "patient",
"value": "{{Patient_MTBM_id}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": null,
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/RelatedPerson/ed69b2ba-0181-48ef-9348-401a3874d797\",\n \"resource\": {\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\": \"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 \"PASIRJENGKOL, TELUKJAMBE BARAT, KARANGMULYA, KARAWANG\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1996-07-06\",\n \"gender\": \"female\",\n \"id\": \"ed69b2ba-0181-48ef-9348-401a3874d797\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029381697\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"3603154607960009\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-02-09T09:00:20.955040+00:00\",\n \"versionId\": \"MTcwNzQ2OTIyMDk1NTA0MDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"SRI SARTIKA DEWI\",\n \"use\": \"official\"\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/P02029385155\"\n },\n \"relationship\": [\n {\n \"coding\": [\n {\n \"code\": \"FAMMEMB\",\n \"display\": \"Family Member\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\"\n }\n ]\n }\n ],\n \"resourceType\": \"RelatedPerson\",\n \"telecom\": [\n {\n \"period\": {\n \"start\": \"2023-10-31T00:00:00+00:00\"\n },\n \"rank\": 1,\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for RelatedPerson/4b101177-a96a-4094-88c1-ddad37dc3129\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for RelatedPerson/29d2bdfc-04c7-464c-944e-6337856c1dfe\"\n }\n ]\n }\n },\n {\n \"resource\": {\n \"resourceType\": \"OperationOutcome\",\n \"issue\": [\n {\n \"severity\": \"information\",\n \"code\": \"suppressed\",\n \"details\": {\n \"text\": \"The operation did not return any information due to consent or privacy rules.\"\n },\n \"diagnostics\": \"No consent available for RelatedPerson/ec1a9641-0896-4b17-9471-816c9dfae3db\"\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/RelatedPerson/?patient=P02029385155\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/RelatedPerson/?patient=P02029385155\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/RelatedPerson/?patient=P02029385155\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 4,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "RelatedPerson - Create ibu pasien",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"RelatedPerson_id\", data.id);var bundle = pm.response.json();\r",
"pm.collectionVariables.set('Patient_Ibu_id', data.identifier.find(identifier => identifier.system == 'https://fhir.kemkes.go.id/id/ihs-number').value);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"RelatedPerson\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\r\n \"use\": \"official\",\r\n \"value\": \"P02029381697\"\r\n },\r\n {\r\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\r\n \"use\": \"official\",\r\n \"value\": \"3603154607960009\"\r\n }\r\n ],\r\n \"active\": true,\r\n \"patient\": {\r\n \"reference\": \"Patient/{{Patient_MTBM_id}}\"\r\n },\r\n \"relationship\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\r\n \"code\": \"FAMMEMB\",\r\n \"display\": \"Family Member\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"name\": [\r\n {\r\n \"use\": \"official\",\r\n \"text\": \"SRI SARTIKA DEWI\"\r\n }\r\n ],\r\n \"telecom\": [\r\n {\r\n \"system\": \"phone\",\r\n \"value\": \"08123456789\",\r\n \"use\": \"mobile\",\r\n \"rank\": 1,\r\n \"period\": {\r\n \"start\": \"2023-10-31T00:00:00+00:00\"\r\n }\r\n }\r\n ],\r\n \"gender\": \"female\",\r\n \"birthDate\": \"1996-07-06\",\r\n \"address\": [\r\n {\r\n \"city\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\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 \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\r\n }\r\n ],\r\n \"line\": [\r\n \"PASIRJENGKOL, TELUKJAMBE BARAT, KARANGMULYA, KARAWANG\"\r\n ],\r\n \"postalCode\": \"12950\",\r\n \"use\": \"home\"\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/RelatedPerson",
"host": [
"{{base_url}}"
],
"path": [
"RelatedPerson"
]
}
},
"response": [
{
"name": "RelatedPerson - Create ibu pasien",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"RelatedPerson\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029381697\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"3603154607960009\"\n }\n ],\n \"active\": true,\n \"patient\": {\n \"reference\": \"Patient/{{Patient_MTBM_id}}\"\n },\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"FAMMEMB\",\n \"display\": \"Family Member\"\n }\n ]\n }\n ],\n \"name\": [\n {\n \"use\": \"official\",\n \"text\": \"SRI SARTIKA DEWI\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"08123456789\",\n \"use\": \"mobile\",\n \"rank\": 1,\n \"period\": {\n \"start\": \"2023-10-31T00:00:00+00:00\"\n }\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1996-07-06\",\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\": \"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 \"PASIRJENGKOL, TELUKJAMBE BARAT, KARANGMULYA, KARAWANG\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/RelatedPerson",
"host": [
"{{base_url}}"
],
"path": [
"RelatedPerson"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": null,
"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\": \"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 \"PASIRJENGKOL, TELUKJAMBE BARAT, KARANGMULYA, KARAWANG\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1996-07-06\",\n \"gender\": \"female\",\n \"id\": \"{{RelatedPerson_id}}\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02029381697\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"3603154607960009\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-21T08:51:50.534190+00:00\",\n \"versionId\": \"MTcwMzE0ODcxMDUzNDE5MDAwMA\"\n },\n \"name\": [\n {\n \"text\": \"SRI SARTIKA DEWI\",\n \"use\": \"official\"\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/P02029385155\"\n },\n \"relationship\": [\n {\n \"coding\": [\n {\n \"code\": \"MTH\",\n \"display\": \"mother\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\"\n }\n ]\n }\n ],\n \"resourceType\": \"RelatedPerson\",\n \"telecom\": [\n {\n \"period\": {\n \"start\": \"2023-10-31T00:00:00+00:00\"\n },\n \"rank\": 1,\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n }\n ]\n}"
}
]
},
{
"name": "RelatedPerson - Create ayah pasien",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"RelatedPerson\",\r\n \"active\": true,\r\n \"patient\": {\r\n \"reference\": \"Patient/{{Patient_MTBM_id}}\"\r\n },\r\n \"relationship\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\r\n \"code\": \"FTH\",\r\n \"display\": \"father\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"address\": [\r\n {\r\n \"city\": \"MAYBRAT\",\r\n \"country\": \"ID\",\r\n \"extension\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"url\": \"province\",\r\n \"valueCode\": \"92\"\r\n },\r\n {\r\n \"url\": \"city\",\r\n \"valueCode\": \"10\"\r\n },\r\n {\r\n \"url\": \"district\",\r\n \"valueCode\": \"22\"\r\n },\r\n {\r\n \"url\": \"village\",\r\n \"valueCode\": \"2006\"\r\n },\r\n {\r\n \"url\": \"rw\",\r\n \"valueCode\": \"0\"\r\n },\r\n {\r\n \"url\": \"rt\",\r\n \"valueCode\": \"0\"\r\n }\r\n ],\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\r\n }\r\n ],\r\n \"line\": [\r\n \"KAMPUNG SABUN\"\r\n ],\r\n \"use\": \"home\"\r\n }\r\n ],\r\n \"birthDate\": \"1979-07-02\",\r\n \"communication\": [\r\n {\r\n \"language\": {\r\n \"coding\": [\r\n {\r\n \"code\": \"id-ID\",\r\n \"display\": \"Indonesian\",\r\n \"system\": \"urn:ietf:bcp:47\"\r\n }\r\n ],\r\n \"text\": \"Indonesian\"\r\n },\r\n \"preferred\": true\r\n }\r\n ],\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\r\n \"valueCode\": \"WNI\"\r\n }\r\n ],\r\n \"gender\": \"male\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\r\n \"use\": \"official\",\r\n \"value\": \"P02428473601\"\r\n },\r\n {\r\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\r\n \"use\": \"official\",\r\n \"value\": \"9210060207000010\"\r\n }\r\n ],\r\n \"name\": [\r\n {\r\n \"text\": \"Budi Santoso\",\r\n \"use\": \"official\"\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/RelatedPerson",
"host": [
"{{base_url}}"
],
"path": [
"RelatedPerson"
]
}
},
"response": [
{
"name": "RelatedPerson - Create ayah pasien",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"RelatedPerson\",\n \"active\": true,\n \"patient\": {\n \"reference\": \"Patient/{{Patient_MTBM_id}}\"\n },\n \"relationship\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"FTH\",\n \"display\": \"father\"\n }\n ]\n }\n ],\n \"address\": [\n {\n \"city\": \"MAYBRAT\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"92\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"22\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"2006\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"0\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"0\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"KAMPUNG SABUN\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1979-07-02\",\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 \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"male\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02428473601\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"9210060207000010\"\n }\n ],\n \"name\": [\n {\n \"text\": \"Budi Santoso\",\n \"use\": \"official\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/RelatedPerson",
"host": [
"{{base_url}}"
],
"path": [
"RelatedPerson"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": null,
"cookie": [],
"body": "{\n \"active\": true,\n \"address\": [\n {\n \"city\": \"MAYBRAT\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"92\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"22\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"2006\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"0\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"0\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"KAMPUNG SABUN\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1979-07-02\",\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 \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"male\",\n \"id\": \"4b101177-a96a-4094-88c1-ddad37dc3129\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P02428473601\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"9210060207000010\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-21T09:06:01.512967+00:00\",\n \"versionId\": \"MTcwMzE0OTU2MTUxMjk2NzAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Budi Santoso\",\n \"use\": \"official\"\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/P02029385155\"\n },\n \"relationship\": [\n {\n \"coding\": [\n {\n \"code\": \"FTH\",\n \"display\": \"father\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\"\n }\n ]\n }\n ],\n \"resourceType\": \"RelatedPerson\"\n}"
}
]
}
]
},
{
"name": "Pembuatan 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);\r",
"var string = '2024A';\r",
"string += Math.floor(10000 + Math.random() * 90000);"
],
"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\": \"AMB\",\n \"display\": \"ambulatory\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_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-08-31T00: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-08-31T00: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-08-31T00: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\": \"AMB\",\n \"display\": \"ambulatory\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_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-08-31T00: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-08-31T00: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-08-31T00: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": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb/_history/MTczMDc4ODY0NzEwNDMzMjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:37:27 UTC"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODY0NzEwNDMzMjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:37:27 GMT"
},
{
"key": "Content-Length",
"value": "1540"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "b51f85be-9a99-405a-871a-350e15e1e9b8"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"AMB\",\n \"display\": \"ambulatory\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"79889ecb-35d0-4106-bd2a-e96e39b453cb\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000005\",\n \"value\": \"2024110583607\"\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\": \"Ruang Poli Tumbuh Kembang\",\n \"reference\": \"Location/75c3f68e-460f-4a88-8905-5f9deabc37ce\"\n },\n \"period\": {\n \"start\": \"2023-08-31T00:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:37:27.104332+00:00\",\n \"versionId\": \"MTczMDc4ODY0NzEwNDMzMjAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\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-08-31T00:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000005\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2023-08-31T00:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
}
]
},
{
"name": "Masuk ke Ruang Pemeriksaan",
"item": [
{
"name": "Encounter - Masuk Ruang",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_id}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"ambulatory\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_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-08-31T01: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-08-31T00: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-08-31T00:00:00+00:00\",\n \"end\": \"2023-08-31T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-08-31T01: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_id}}"
}
]
}
},
"response": [
{
"name": "Encounter - Masuk Ruang",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_id}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"ambulatory\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_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-08-31T01: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-08-31T00: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-08-31T00:00:00+00:00\",\n \"end\": \"2023-08-31T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-08-31T01: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_id}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4ODY4NDQ3ODQ1MTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:38:04 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb/_history/MTczMDc4ODY4NDQ3ODQ1MTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:38:04 GMT"
},
{
"key": "Content-Length",
"value": "1650"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "0c6d71d2-8adb-40f4-a4b5-52a3b173970d"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"AMB\",\n \"display\": \"ambulatory\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"79889ecb-35d0-4106-bd2a-e96e39b453cb\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000005\",\n \"value\": \"2024110583607\"\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\": \"Ruang Poli Tumbuh Kembang\",\n \"reference\": \"Location/75c3f68e-460f-4a88-8905-5f9deabc37ce\"\n },\n \"period\": {\n \"start\": \"2023-08-31T00:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:38:04.478451+00:00\",\n \"versionId\": \"MTczMDc4ODY4NDQ3ODQ1MTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\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-08-31T01:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000005\"\n },\n \"status\": \"in-progress\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-08-31T01:00:00+00:00\",\n \"start\": \"2023-08-31T00:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"start\": \"2023-08-31T01:00:00+00:00\"\n },\n \"status\": \"in-progress\"\n }\n ],\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "03. Anamnesis",
"item": [
{
"name": "Keluhan Utama",
"item": [
{
"name": "Condition - Keluhan Utama - Penurunan Berat Badan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Condition\",\r\n \"clinicalStatus\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\r\n \"code\": \"active\",\r\n \"display\": \"Active\"\r\n }\r\n ]\r\n },\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\r\n \"code\": \"problem-list-item\",\r\n \"display\": \"Problem List Item\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"89362005\",\r\n \"display\": \"Weight Loss\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"onsetDateTime\": \"2023-02-02T00:00:00+00:00\",\r\n \"recordedDate\": \"2023-08-31T01:00:00+00:00\",\r\n \"recorder\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"note\": [\r\n {\r\n \"text\": \"Berat badan turun 3 kg dalam 1 bulan terakhir\"\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Keluhan Utama - Penurunan Berat Badan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Condition\",\r\n \"clinicalStatus\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\r\n \"code\": \"active\",\r\n \"display\": \"Active\"\r\n }\r\n ]\r\n },\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\r\n \"code\": \"problem-list-item\",\r\n \"display\": \"Problem List Item\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"89362005\",\r\n \"display\": \"Weight Loss\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"onsetDateTime\": \"2023-02-02T00:00:00+00:00\",\r\n \"recordedDate\": \"2023-08-31T01:00:00+00:00\",\r\n \"recorder\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"note\": [\r\n {\r\n \"text\": \"Berat badan turun 3 kg dalam 1 bulan terakhir\"\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4ODY5MzU2NTY4MTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/88fb4cd0-4865-429b-9465-0b7ce9b8a37e/_history/MTczMDc4ODY5MzU2NTY4MTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:38:13 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:38:13 GMT"
},
{
"key": "Content-Length",
"value": "952"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "3244f3ce-c4d2-4bda-bbb8-d42bbf10373a"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\",\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\": \"89362005\",\n \"display\": \"Weight Loss\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"88fb4cd0-4865-429b-9465-0b7ce9b8a37e\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:38:13.565681+00:00\",\n \"versionId\": \"MTczMDc4ODY5MzU2NTY4MTAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Berat badan turun 3 kg dalam 1 bulan terakhir\"\n }\n ],\n \"onsetDateTime\": \"2023-02-02T00:00:00+00:00\",\n \"recordedDate\": \"2023-08-31T01:00:00+00:00\",\n \"recorder\": {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n },\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
},
{
"name": "Condition - Keluhan Utama - Gangguan Bicara",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Condition\",\r\n \"clinicalStatus\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\r\n \"code\": \"active\",\r\n \"display\": \"Active\"\r\n }\r\n ]\r\n },\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\r\n \"code\": \"problem-list-item\",\r\n \"display\": \"Problem List Item\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"267095009\",\r\n \"display\": \"Speech Problem\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"onsetDateTime\": \"2023-02-02T00:00:00+00:00\",\r\n \"recordedDate\": \"2023-08-31T01:00:00+00:00\",\r\n \"recorder\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"note\": [\r\n {\r\n \"text\": \"Kesulitan bicara sejak lahir\"\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Keluhan Utama - Gangguan Bicara",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Condition\",\r\n \"clinicalStatus\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\r\n \"code\": \"active\",\r\n \"display\": \"Active\"\r\n }\r\n ]\r\n },\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\r\n \"code\": \"problem-list-item\",\r\n \"display\": \"Problem List Item\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"267095009\",\r\n \"display\": \"Speech Problem\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"onsetDateTime\": \"2023-02-02T00:00:00+00:00\",\r\n \"recordedDate\": \"2023-08-31T01:00:00+00:00\",\r\n \"recorder\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"note\": [\r\n {\r\n \"text\": \"Kesulitan bicara sejak lahir\"\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/fc227a15-79f8-43c0-8760-46488bb21dd2/_history/MTczMDc4ODcwNTcwMzEzNzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:38:25 UTC"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODcwNTcwMzEzNzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:38:25 GMT"
},
{
"key": "Content-Length",
"value": "939"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "c9b0de8b-3e90-4472-becc-7447bfe68afd"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\",\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\": \"267095009\",\n \"display\": \"Speech Problem\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"fc227a15-79f8-43c0-8760-46488bb21dd2\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:38:25.703137+00:00\",\n \"versionId\": \"MTczMDc4ODcwNTcwMzEzNzAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Kesulitan bicara sejak lahir\"\n }\n ],\n \"onsetDateTime\": \"2023-02-02T00:00:00+00:00\",\n \"recordedDate\": \"2023-08-31T01:00:00+00:00\",\n \"recorder\": {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n },\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "04. Antropometri",
"item": [
{
"name": "Pengukuran Antropometri",
"item": [
{
"name": "Berat Badan",
"item": [
{
"name": "Observation - Berat Badan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009712\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"vital-signs\",\r\n\t \"display\": \"Vital Signs\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://loinc.org\",\r\n\t \"code\": \"29463-7\",\r\n\t \"display\": \"Body weight\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:02:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:02:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": 15,\r\n\t \"unit\": \"kg\",\r\n\t \"code\": \"kg\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t }\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Berat Badan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009712\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"vital-signs\",\r\n\t \"display\": \"Vital Signs\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://loinc.org\",\r\n\t \"code\": \"29463-7\",\r\n\t \"display\": \"Body weight\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:02:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:02:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": 15,\r\n\t \"unit\": \"kg\",\r\n\t \"code\": \"kg\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t }\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4ODcyNTczODY3MDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/35d62e93-1c3c-49e0-a404-54a3b148f157/_history/MTczMDc4ODcyNTczODY3MDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:38:45 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:38:45 GMT"
},
{
"key": "Content-Length",
"value": "991"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "3754688c-c268-4124-8b7d-585c1753c9a5"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"29463-7\",\n \"display\": \"Body weight\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-09-02T00:02:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"35d62e93-1c3c-49e0-a404-54a3b148f157\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"202403A0009712\"\n }\n ],\n \"issued\": \"2023-09-02T00:02:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:38:45.738670+00:00\",\n \"versionId\": \"MTczMDc4ODcyNTczODY3MDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueQuantity\": {\n \"code\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"kg\",\n \"value\": 15\n }\n}"
}
]
}
]
},
{
"name": "Riwayat Perubahan Berat Badan",
"item": [
{
"name": "Observation - Kenaikan Berat Badan Adekuat",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009713\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n\t \"code\": \"OC000012\",\r\n\t \"display\": \"Kenaikan Berat Badan Adekuat\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:03:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:03:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueBoolean\": false\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kenaikan Berat Badan Adekuat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009713\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n\t \"code\": \"OC000012\",\r\n\t \"display\": \"Kenaikan Berat Badan Adekuat\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:03:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:03:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueBoolean\": false\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4ODczMDgxNDc1NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:38:50 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/a22664a1-2c36-47c6-b54d-fe97570cd9cf/_history/MTczMDc4ODczMDgxNDc1NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:38:50 GMT"
},
{
"key": "Content-Length",
"value": "966"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "aec3b593-3960-4188-b028-f5f0eeb880d3"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"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\": \"OC000012\",\n \"display\": \"Kenaikan Berat Badan Adekuat\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-09-02T00:03:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"a22664a1-2c36-47c6-b54d-fe97570cd9cf\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"202403A0009713\"\n }\n ],\n \"issued\": \"2023-09-02T00:03:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:38:50.814756+00:00\",\n \"versionId\": \"MTczMDc4ODczMDgxNDc1NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueBoolean\": false\n}"
}
]
}
]
},
{
"name": "Tinggi Badan",
"item": [
{
"name": "Observation - Tinggi Badan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009717\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"vital-signs\",\r\n\t \"display\": \"Vital Signs\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://loinc.org\",\r\n\t \"code\": \"8302-2\",\r\n\t \"display\": \"Body height\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:07:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:07:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": 80,\r\n\t \"unit\": \"cm\",\r\n\t \"code\": \"cm\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t }\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tinggi Badan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009717\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"vital-signs\",\r\n\t \"display\": \"Vital Signs\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://loinc.org\",\r\n\t \"code\": \"8302-2\",\r\n\t \"display\": \"Body height\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:07:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:07:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": 80,\r\n\t \"unit\": \"cm\",\r\n\t \"code\": \"cm\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t }\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4ODczNTU0ODE1ODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:38:55 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/3ca9708b-c413-4d5b-bd95-9d435b20f19f/_history/MTczMDc4ODczNTU0ODE1ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:38:55 GMT"
},
{
"key": "Content-Length",
"value": "990"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "acbce1c1-ec4a-4956-8efa-a9af81f198a7"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\",\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-09-02T00:07:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"3ca9708b-c413-4d5b-bd95-9d435b20f19f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"202403A0009717\"\n }\n ],\n \"issued\": \"2023-09-02T00:07:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:38:55.548158+00:00\",\n \"versionId\": \"MTczMDc4ODczNTU0ODE1ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueQuantity\": {\n \"code\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"cm\",\n \"value\": 80\n }\n}"
}
]
}
]
},
{
"name": "Tinggi Badan Berdasarkan Cara Pengukuran",
"item": [
{
"name": "Observation - Tinggi Badan Telentang/Panjang Badan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009719\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"vital-signs\",\r\n\t \"display\": \"Vital Signs\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://loinc.org\",\r\n\t \"code\": \"8306-3\",\r\n\t \"display\": \"Body height --lying\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:09:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:09:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": 77,\r\n\t \"unit\": \"cm\",\r\n\t \"code\": \"cm\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t }\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tinggi Badan Telentang/Panjang Badan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009719\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"vital-signs\",\r\n\t \"display\": \"Vital Signs\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://loinc.org\",\r\n\t \"code\": \"8306-3\",\r\n\t \"display\": \"Body height --lying\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:09:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:09:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": 77,\r\n\t \"unit\": \"cm\",\r\n\t \"code\": \"cm\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t }\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4ODc0MDQ1MjcyMDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:39:00 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/f1c3e79c-7c37-45f7-b931-422c386c615f/_history/MTczMDc4ODc0MDQ1MjcyMDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:39:00 GMT"
},
{
"key": "Content-Length",
"value": "998"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "68ec4320-4ea0-47a0-a48a-96ae6990a09b"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"8306-3\",\n \"display\": \"Body height --lying\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-09-02T00:09:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"f1c3e79c-7c37-45f7-b931-422c386c615f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"202403A0009719\"\n }\n ],\n \"issued\": \"2023-09-02T00:09:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:39:00.452720+00:00\",\n \"versionId\": \"MTczMDc4ODc0MDQ1MjcyMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueQuantity\": {\n \"code\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"cm\",\n \"value\": 77\n }\n}"
}
]
},
{
"name": "Observation - Tinggi Badan Berdiri",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009719\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"vital-signs\",\r\n\t \"display\": \"Vital Signs\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://loinc.org\",\r\n\t \"code\": \"8308-9\",\r\n\t \"display\": \"Body height --standing\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:09:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:09:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": 77,\r\n\t \"unit\": \"cm\",\r\n\t \"code\": \"cm\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t }\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tinggi Badan Berdiri",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009719\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"vital-signs\",\r\n\t \"display\": \"Vital Signs\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://loinc.org\",\r\n\t \"code\": \"8308-9\",\r\n\t \"display\": \"Body height --standing\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:09:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:09:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": 77,\r\n\t \"unit\": \"cm\",\r\n\t \"code\": \"cm\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t }\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:39:07 UTC"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODc0NzI1MDg5NDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/b3768d10-d72c-4acb-ac59-ce7687880e1a/_history/MTczMDc4ODc0NzI1MDg5NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:39:07 GMT"
},
{
"key": "Content-Length",
"value": "1001"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "23a9671c-2a8d-4475-a0c9-4dad5ba46c60"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"8308-9\",\n \"display\": \"Body height --standing\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-09-02T00:09:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"b3768d10-d72c-4acb-ac59-ce7687880e1a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"202403A0009719\"\n }\n ],\n \"issued\": \"2023-09-02T00:09:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:39:07.250894+00:00\",\n \"versionId\": \"MTczMDc4ODc0NzI1MDg5NDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueQuantity\": {\n \"code\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"cm\",\n \"value\": 77\n }\n}"
}
]
}
]
},
{
"name": "Lingkar Tubuh",
"item": [
{
"name": "Observation - Lingkar Lengan Atas (LiLA)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009730\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"284473002\",\r\n\t \"display\": \"Mid upper arm circumference\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:20:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:20:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": 14,\r\n\t \"unit\": \"cm\",\r\n\t \"code\": \"cm\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t },\r\n\t \"interpretation\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\r\n\t \"code\": \"N\",\r\n\t \"display\": \"Normal\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ]\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lingkar Lengan Atas (LiLA)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009730\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"284473002\",\r\n\t \"display\": \"Mid upper arm circumference\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:20:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:20:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": 14,\r\n\t \"unit\": \"cm\",\r\n\t \"code\": \"cm\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t },\r\n\t \"interpretation\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\r\n\t \"code\": \"N\",\r\n\t \"display\": \"Normal\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ]\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4ODc1NDYwMTIzNDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/4a67d552-c2c6-4909-8fc4-da290233b3f3/_history/MTczMDc4ODc1NDYwMTIzNDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:39:14 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:39:14 GMT"
},
{
"key": "Content-Length",
"value": "1143"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "0dbfcfea-176e-4bbc-8c9b-c656dac2e1c3"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"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\": \"284473002\",\n \"display\": \"Mid upper arm circumference\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-09-02T00:20:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"4a67d552-c2c6-4909-8fc4-da290233b3f3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"202403A0009730\"\n }\n ],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"N\",\n \"display\": \"Normal\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\"\n }\n ]\n }\n ],\n \"issued\": \"2023-09-02T00:20:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:39:14.601234+00:00\",\n \"versionId\": \"MTczMDc4ODc1NDYwMTIzNDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueQuantity\": {\n \"code\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"cm\",\n \"value\": 14\n }\n}"
}
]
},
{
"name": "Observation - Lingkar Kepala (LK)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009726\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"vital-signs\",\r\n\t \"display\": \"Vital Signs\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://loinc.org\",\r\n\t \"code\": \"9843-4\",\r\n\t \"display\": \"Head Occipital-frontal circumference\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:16:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:16:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": 50,\r\n\t \"unit\": \"cm\",\r\n\t \"code\": \"cm\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t }\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lingkar Kepala (LK)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009726\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"vital-signs\",\r\n\t \"display\": \"Vital Signs\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://loinc.org\",\r\n\t \"code\": \"9843-4\",\r\n\t \"display\": \"Head Occipital-frontal circumference\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:16:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:16:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": 50,\r\n\t \"unit\": \"cm\",\r\n\t \"code\": \"cm\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t }\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:39:23 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODc2MzE3MTIzNDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/69d82cc9-6691-47f0-ae8b-dbb93addd724/_history/MTczMDc4ODc2MzE3MTIzNDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:39:23 GMT"
},
{
"key": "Content-Length",
"value": "1015"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "fe22479e-aa19-4269-a001-f2fcea55d33f"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\",\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-09-02T00:16:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"69d82cc9-6691-47f0-ae8b-dbb93addd724\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"202403A0009726\"\n }\n ],\n \"issued\": \"2023-09-02T00:16:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:39:23.171234+00:00\",\n \"versionId\": \"MTczMDc4ODc2MzE3MTIzNDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueQuantity\": {\n \"code\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"cm\",\n \"value\": 50\n }\n}"
}
]
}
]
}
]
},
{
"name": "Indeks Antopometri",
"item": [
{
"name": "Observation - BB/U",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009715\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1153593003\",\r\n\t \"display\": \"Weight for age z-score\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:05:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:05:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": -2,\r\n\t \"unit\": \"{Zscore}\",\r\n\t \"code\": \"{Zscore}\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t },\r\n\t \"interpretation\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"43664005\",\r\n\t \"display\": \"Normal weight\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ]\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - BB/U",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009715\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1153593003\",\r\n\t \"display\": \"Weight for age z-score\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:05:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:05:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": -2,\r\n\t \"unit\": \"{Zscore}\",\r\n\t \"code\": \"{Zscore}\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t },\r\n\t \"interpretation\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"43664005\",\r\n\t \"display\": \"Normal weight\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ]\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/61534c41-8194-4ec3-9167-19160bb07787/_history/MTczMDc4ODc2OTI2ODQ2NjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:39:29 UTC"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODc2OTI2ODQ2NjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:39:29 GMT"
},
{
"key": "Content-Length",
"value": "1121"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "7a7e1a3d-b037-48e8-9f85-649bbe020b96"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"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\": \"1153593003\",\n \"display\": \"Weight for age z-score\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-09-02T00:05:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"61534c41-8194-4ec3-9167-19160bb07787\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"202403A0009715\"\n }\n ],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"43664005\",\n \"display\": \"Normal weight\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"issued\": \"2023-09-02T00:05:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:39:29.268466+00:00\",\n \"versionId\": \"MTczMDc4ODc2OTI2ODQ2NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueQuantity\": {\n \"code\": \"{Zscore}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{Zscore}\",\n \"value\": -2\n }\n}"
}
]
},
{
"name": "Observation - PB/U",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009720\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1153590000\",\r\n\t \"display\": \"Length for age z score\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:10:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:10:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": -2.5,\r\n\t \"unit\": \"{Zscore}\",\r\n\t \"code\": \"{Zscore}\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t },\r\n\t \"interpretation\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"444000005\",\r\n\t \"display\": \"Short stature for age\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ]\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - PB/U",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009720\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1153590000\",\r\n\t \"display\": \"Length for age z score\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:10:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:10:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": -2.5,\r\n\t \"unit\": \"{Zscore}\",\r\n\t \"code\": \"{Zscore}\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t },\r\n\t \"interpretation\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"444000005\",\r\n\t \"display\": \"Short stature for age\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ]\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODc3NDY1NTM4MzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/b98342d2-dc80-4faf-ab95-ba03d36b012f/_history/MTczMDc4ODc3NDY1NTM4MzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:39:34 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:39:34 GMT"
},
{
"key": "Content-Length",
"value": "1132"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "4c2366d3-5b0b-475b-93dc-2f3623259585"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"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\": \"1153590000\",\n \"display\": \"Length for age z score\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-09-02T00:10:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"b98342d2-dc80-4faf-ab95-ba03d36b012f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"202403A0009720\"\n }\n ],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"444000005\",\n \"display\": \"Short stature for age\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"issued\": \"2023-09-02T00:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:39:34.655383+00:00\",\n \"versionId\": \"MTczMDc4ODc3NDY1NTM4MzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueQuantity\": {\n \"code\": \"{Zscore}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{Zscore}\",\n \"value\": -2.5\n }\n}"
}
]
},
{
"name": "Observation - TB/U",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009720\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1153604005\",\r\n\t \"display\": \"Body height for age z-score\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:10:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:10:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": -2.5,\r\n\t \"unit\": \"{Zscore}\",\r\n\t \"code\": \"{Zscore}\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t },\r\n\t \"interpretation\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"444000005\",\r\n\t \"display\": \"Short stature for age\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ]\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - TB/U",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009720\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1153604005\",\r\n\t \"display\": \"Body height for age z-score\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:10:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:10:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": -2.5,\r\n\t \"unit\": \"{Zscore}\",\r\n\t \"code\": \"{Zscore}\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t },\r\n\t \"interpretation\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"444000005\",\r\n\t \"display\": \"Short stature for age\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ]\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:39:43 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/fa1fe65b-c6a1-4d04-925e-3d112529b295/_history/MTczMDc4ODc4MzY5Mzk5MzAwMA"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODc4MzY5Mzk5MzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:39:43 GMT"
},
{
"key": "Content-Length",
"value": "1137"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "ba032112-73d0-440f-86bd-78b31a778642"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"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\": \"1153604005\",\n \"display\": \"Body height for age z-score\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-09-02T00:10:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"fa1fe65b-c6a1-4d04-925e-3d112529b295\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"202403A0009720\"\n }\n ],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"444000005\",\n \"display\": \"Short stature for age\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"issued\": \"2023-09-02T00:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:39:43.693993+00:00\",\n \"versionId\": \"MTczMDc4ODc4MzY5Mzk5MzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueQuantity\": {\n \"code\": \"{Zscore}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{Zscore}\",\n \"value\": -2.5\n }\n}"
}
]
},
{
"name": "Observation - BB/TB",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009721\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1153600001\",\r\n\t \"display\": \"Weight for height z-score\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:11:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:11:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": -2.5,\r\n\t \"unit\": \"{Zscore}\",\r\n\t \"code\": \"{Zscore}\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t },\r\n\t \"interpretation\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"248325000\",\r\n\t \"display\": \"Undernourished\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ]\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - BB/TB",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009721\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1153600001\",\r\n\t \"display\": \"Weight for height z-score\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:11:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:11:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": -2.5,\r\n\t \"unit\": \"{Zscore}\",\r\n\t \"code\": \"{Zscore}\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t },\r\n\t \"interpretation\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"248325000\",\r\n\t \"display\": \"Undernourished\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ]\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/ab6843fa-79aa-4b77-82c8-5aa092e4cd94/_history/MTczMDc4ODc4ODQ4NDU0NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODc4ODQ4NDU0NTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:39:48 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:39:48 GMT"
},
{
"key": "Content-Length",
"value": "1128"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "14d0f8d9-7279-41e2-86af-6d7b7e1a27a4"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"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\": \"1153600001\",\n \"display\": \"Weight for height z-score\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-09-02T00:11:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"ab6843fa-79aa-4b77-82c8-5aa092e4cd94\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"202403A0009721\"\n }\n ],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"248325000\",\n \"display\": \"Undernourished\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"issued\": \"2023-09-02T00:11:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:39:48.484545+00:00\",\n \"versionId\": \"MTczMDc4ODc4ODQ4NDU0NTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueQuantity\": {\n \"code\": \"{Zscore}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{Zscore}\",\n \"value\": -2.5\n }\n}"
}
]
},
{
"name": "Observation - BB/PB",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009721\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1153598007\",\r\n\t \"display\": \"Weight for length z score\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:11:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:11:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": -2.5,\r\n\t \"unit\": \"{Zscore}\",\r\n\t \"code\": \"{Zscore}\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t },\r\n\t \"interpretation\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"248325000\",\r\n\t \"display\": \"Undernourished\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ]\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - BB/PB",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009721\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1153598007\",\r\n\t \"display\": \"Weight for length z score\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:11:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:11:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": -2.5,\r\n\t \"unit\": \"{Zscore}\",\r\n\t \"code\": \"{Zscore}\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t },\r\n\t \"interpretation\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"248325000\",\r\n\t \"display\": \"Undernourished\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ]\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODc5MjE0MDEzNDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:39:52 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/4641fdbc-3e6c-4993-be11-238a85eb87a4/_history/MTczMDc4ODc5MjE0MDEzNDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:39:52 GMT"
},
{
"key": "Content-Length",
"value": "1128"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "ff1ceb74-3141-461c-82a2-0cb47f36b6fb"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"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\": \"1153598007\",\n \"display\": \"Weight for length z score\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-09-02T00:11:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"4641fdbc-3e6c-4993-be11-238a85eb87a4\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"202403A0009721\"\n }\n ],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"248325000\",\n \"display\": \"Undernourished\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"issued\": \"2023-09-02T00:11:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:39:52.140134+00:00\",\n \"versionId\": \"MTczMDc4ODc5MjE0MDEzNDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueQuantity\": {\n \"code\": \"{Zscore}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{Zscore}\",\n \"value\": -2.5\n }\n}"
}
]
},
{
"name": "Observation - LK/U",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009727\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1153594009\",\r\n\t \"display\": \"Head circumference for age z-score\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:17:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:17:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": -3,\r\n\t \"unit\": \"{Zscore}\",\r\n\t \"code\": \"{Zscore}\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t },\r\n\t \"interpretation\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1148757008\",\r\n\t \"display\": \"Microcephaly\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ]\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - LK/U",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009727\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"exam\",\r\n\t \"display\": \"Exam\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1153594009\",\r\n\t \"display\": \"Head circumference for age z-score\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T00:17:00+00:00\",\r\n\t \"issued\": \"2023-09-02T00:17:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueQuantity\": {\r\n\t \"value\": -3,\r\n\t \"unit\": \"{Zscore}\",\r\n\t \"code\": \"{Zscore}\",\r\n\t \"system\": \"http://unitsofmeasure.org\"\r\n\t },\r\n\t \"interpretation\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1148757008\",\r\n\t \"display\": \"Microcephaly\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ]\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:39:56 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/36f0f11b-23d2-47f2-8fd6-52ba9b6f2031/_history/MTczMDc4ODc5NjQ0MTE4MTAwMA"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODc5NjQ0MTE4MTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:39:56 GMT"
},
{
"key": "Content-Length",
"value": "1134"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "77a0f354-830c-4677-8204-623993727ded"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"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\": \"1153594009\",\n \"display\": \"Head circumference for age z-score\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-09-02T00:17:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"36f0f11b-23d2-47f2-8fd6-52ba9b6f2031\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"202403A0009727\"\n }\n ],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"1148757008\",\n \"display\": \"Microcephaly\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"issued\": \"2023-09-02T00:17:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:39:56.441181+00:00\",\n \"versionId\": \"MTczMDc4ODc5NjQ0MTE4MTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueQuantity\": {\n \"code\": \"{Zscore}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{Zscore}\",\n \"value\": -3\n }\n}"
}
]
}
]
}
]
},
{
"name": "05.Kuesioner Tumbuh Kembang",
"item": [
{
"name": "QuestionnaireResponse - Stimulasi, Deteksi, dan Intervensi Dini Tumbuh Kembang (SDIDTK)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n\t\"resourceType\": \"QuestionnaireResponse\",\r\n\t\"identifier\": {\r\n\t\t\"system\": \"http://sys-ids.kemkes.go.id/QuestionnaireResponse/{{Org_id}}\",\r\n\t\t\"value\": \"202403A0004275\"\r\n\t},\r\n\t\"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0003\",\r\n\t\"status\": \"completed\",\r\n\t\"subject\": {\r\n\t\t\"reference\": \"Patient/{{Patient_id}}\",\r\n\t\t\"display\": \"{{Patient_Name}}\"\r\n\t},\r\n\t\"encounter\": {\r\n\t\t\"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t\t\"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t},\r\n\t\"authored\": \"2023-09-02T00:05:00+00:00\",\r\n\t\"author\": {\r\n\t\t\"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t\t\"display\": \"{{Practitioner_Name}}\"\r\n\t},\r\n\t\"source\": {\r\n\t\t\"reference\": \"RelatedPerson/{{RelatedPerson_id}}\",\r\n\t\t\"display\": \"Orang Tua Pasien\"\r\n\t},\r\n\t\"item\": [\r\n\t\t{\r\n\t\t\t\"linkId\": \"1\",\r\n\t\t\t\"text\": \"Stimulasi, Deteksi, dan Intervensi Dini Tumbuh Kembang (SDIDTK)\",\r\n\t\t\t\"item\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"1.1\",\r\n\t\t\t\t\t\"text\": \"Apakah diperiksa SDIDTK?\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueBoolean\": true\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"1.2\",\r\n\t\t\t\t\t\"text\": \"Kuesioner Pra Skrining (KPSP)\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://terminology.kemkes.go.id/Codesystem/kpsp\",\r\n\t\t\t\t\t\t\t\t\"code\": \"Dm\",\r\n\t\t\t\t\t\t\t\t\"display\": \"Perkembangan meragukan\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"1.3\",\r\n\t\t\t\t\t\"text\": \"Tes Daya Dengar (TDD)\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\r\n\t\t\t\t\t\t\t\t\"code\": \"410519009\",\r\n\t\t\t\t\t\t\t\t\"display\": \"At risk\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"1.4\",\r\n\t\t\t\t\t\"text\": \"Tes Daya Lihat (TDL)\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\r\n\t\t\t\t\t\t\t\t\"code\": \"410519009\",\r\n\t\t\t\t\t\t\t\t\"display\": \"At risk\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"1.5\",\r\n\t\t\t\t\t\"text\": \"Kuesioner Masalah Perilaku dan Emosional (KMPE)\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\r\n\t\t\t\t\t\t\t\t\"code\": \"410519009\",\r\n\t\t\t\t\t\t\t\t\"display\": \"At risk\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"1.6\",\r\n\t\t\t\t\t\"text\": \"Autisme (M-CHAT-REVISED)\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\r\n\t\t\t\t\t\t\t\t\"code\": \"410519009\",\r\n\t\t\t\t\t\t\t\t\"display\": \"At risk\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"1.7\",\r\n\t\t\t\t\t\"text\": \"GPPH (Gangguan Pemusatan Perhatian dan Hiperaktivitas)\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\r\n\t\t\t\t\t\t\t\t\"code\": \"410519009\",\r\n\t\t\t\t\t\t\t\t\"display\": \"At risk\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"linkId\": \"2\",\r\n\t\t\t\"text\": \"Lainnya\",\r\n\t\t\t\"item\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"2.1\",\r\n\t\t\t\t\t\"text\": \"Status Pertumbuhan\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n\t\t\t\t\t\t\t\t\"code\": \"OI000017\",\r\n\t\t\t\t\t\t\t\t\"display\": \"Tidak Sesuai Usia\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"2.2\",\r\n\t\t\t\t\t\"text\": \"Status Perkembangan\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n\t\t\t\t\t\t\t\t\"code\": \"OI000017\",\r\n\t\t\t\t\t\t\t\t\"display\": \"Tidak Sesuai Usia\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"2.3\",\r\n\t\t\t\t\t\"text\": \"Keterangan Tambahan\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueString\": \"Anak memiliki masalah dalam bersosialisasi\"\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"response": [
{
"name": "QuestionnaireResponse - Stimulasi, Deteksi, dan Intervensi Dini Tumbuh Kembang (SDIDTK)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n\t\"resourceType\": \"QuestionnaireResponse\",\r\n\t\"identifier\": {\r\n\t\t\"system\": \"http://sys-ids.kemkes.go.id/QuestionnaireResponse/{{Org_id}}\",\r\n\t\t\"value\": \"202403A0004275\"\r\n\t},\r\n\t\"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0003\",\r\n\t\"status\": \"completed\",\r\n\t\"subject\": {\r\n\t\t\"reference\": \"Patient/{{Patient_id}}\",\r\n\t\t\"display\": \"{{Patient_Name}}\"\r\n\t},\r\n\t\"encounter\": {\r\n\t\t\"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t\t\"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t},\r\n\t\"authored\": \"2023-09-02T00:05:00+00:00\",\r\n\t\"author\": {\r\n\t\t\"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t\t\"display\": \"{{Practitioner_Name}}\"\r\n\t},\r\n\t\"source\": {\r\n\t\t\"reference\": \"RelatedPerson/{{RelatedPerson_id}}\",\r\n\t\t\"display\": \"Orang Tua Pasien\"\r\n\t},\r\n\t\"item\": [\r\n\t\t{\r\n\t\t\t\"linkId\": \"1\",\r\n\t\t\t\"text\": \"Stimulasi, Deteksi, dan Intervensi Dini Tumbuh Kembang (SDIDTK)\",\r\n\t\t\t\"item\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"1.1\",\r\n\t\t\t\t\t\"text\": \"Apakah diperiksa SDIDTK?\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueBoolean\": true\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"1.2\",\r\n\t\t\t\t\t\"text\": \"Kuesioner Pra Skrining (KPSP)\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://terminology.kemkes.go.id/Codesystem/kpsp\",\r\n\t\t\t\t\t\t\t\t\"code\": \"Dm\",\r\n\t\t\t\t\t\t\t\t\"display\": \"Perkembangan meragukan\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"1.3\",\r\n\t\t\t\t\t\"text\": \"Tes Daya Dengar (TDD)\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\r\n\t\t\t\t\t\t\t\t\"code\": \"410519009\",\r\n\t\t\t\t\t\t\t\t\"display\": \"At risk\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"1.4\",\r\n\t\t\t\t\t\"text\": \"Tes Daya Lihat (TDL)\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\r\n\t\t\t\t\t\t\t\t\"code\": \"410519009\",\r\n\t\t\t\t\t\t\t\t\"display\": \"At risk\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"1.5\",\r\n\t\t\t\t\t\"text\": \"Kuesioner Masalah Perilaku dan Emosional (KMPE)\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\r\n\t\t\t\t\t\t\t\t\"code\": \"410519009\",\r\n\t\t\t\t\t\t\t\t\"display\": \"At risk\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"1.6\",\r\n\t\t\t\t\t\"text\": \"Autisme (M-CHAT-REVISED)\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\r\n\t\t\t\t\t\t\t\t\"code\": \"410519009\",\r\n\t\t\t\t\t\t\t\t\"display\": \"At risk\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"1.7\",\r\n\t\t\t\t\t\"text\": \"GPPH (Gangguan Pemusatan Perhatian dan Hiperaktivitas)\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\r\n\t\t\t\t\t\t\t\t\"code\": \"410519009\",\r\n\t\t\t\t\t\t\t\t\"display\": \"At risk\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"linkId\": \"2\",\r\n\t\t\t\"text\": \"Lainnya\",\r\n\t\t\t\"item\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"2.1\",\r\n\t\t\t\t\t\"text\": \"Status Pertumbuhan\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n\t\t\t\t\t\t\t\t\"code\": \"OI000017\",\r\n\t\t\t\t\t\t\t\t\"display\": \"Tidak Sesuai Usia\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"2.2\",\r\n\t\t\t\t\t\"text\": \"Status Perkembangan\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueCoding\": {\r\n\t\t\t\t\t\t\t\t\"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n\t\t\t\t\t\t\t\t\"code\": \"OI000017\",\r\n\t\t\t\t\t\t\t\t\"display\": \"Tidak Sesuai Usia\"\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"linkId\": \"2.3\",\r\n\t\t\t\t\t\"text\": \"Keterangan Tambahan\",\r\n\t\t\t\t\t\"answer\": [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"valueString\": \"Anak memiliki masalah dalam bersosialisasi\"\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODcxODkwMDYwNTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:38:38 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/QuestionnaireResponse/5ac3a472-9e8d-47ff-9e23-f0ac6e8e94f4/_history/MTczMDc4ODcxODkwMDYwNTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:38:38 GMT"
},
{
"key": "Content-Length",
"value": "2510"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "79f89fe1-c3dd-4855-9a4a-4a9792faa366"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"author\": {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n },\n \"authored\": \"2023-09-02T00:05:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"5ac3a472-9e8d-47ff-9e23-f0ac6e8e94f4\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/creator\",\n \"value\": \"10000005\"\n },\n \"item\": [\n {\n \"item\": [\n {\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ],\n \"linkId\": \"1.1\",\n \"text\": \"Apakah diperiksa SDIDTK?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"Dm\",\n \"display\": \"Perkembangan meragukan\",\n \"system\": \"http://terminology.kemkes.go.id/Codesystem/kpsp\"\n }\n }\n ],\n \"linkId\": \"1.2\",\n \"text\": \"Kuesioner Pra Skrining (KPSP)\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"410519009\",\n \"display\": \"At risk\",\n \"system\": \"http://snomed.info/sct\"\n }\n }\n ],\n \"linkId\": \"1.3\",\n \"text\": \"Tes Daya Dengar (TDD)\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"410519009\",\n \"display\": \"At risk\",\n \"system\": \"http://snomed.info/sct\"\n }\n }\n ],\n \"linkId\": \"1.4\",\n \"text\": \"Tes Daya Lihat (TDL)\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"410519009\",\n \"display\": \"At risk\",\n \"system\": \"http://snomed.info/sct\"\n }\n }\n ],\n \"linkId\": \"1.5\",\n \"text\": \"Kuesioner Masalah Perilaku dan Emosional (KMPE)\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"410519009\",\n \"display\": \"At risk\",\n \"system\": \"http://snomed.info/sct\"\n }\n }\n ],\n \"linkId\": \"1.6\",\n \"text\": \"Autisme (M-CHAT-REVISED)\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"410519009\",\n \"display\": \"At risk\",\n \"system\": \"http://snomed.info/sct\"\n }\n }\n ],\n \"linkId\": \"1.7\",\n \"text\": \"GPPH (Gangguan Pemusatan Perhatian dan Hiperaktivitas)\"\n }\n ],\n \"linkId\": \"1\",\n \"text\": \"Stimulasi, Deteksi, dan Intervensi Dini Tumbuh Kembang (SDIDTK)\"\n },\n {\n \"item\": [\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"OI000017\",\n \"display\": \"Tidak Sesuai Usia\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"2.1\",\n \"text\": \"Status Pertumbuhan\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"OI000017\",\n \"display\": \"Tidak Sesuai Usia\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"2.2\",\n \"text\": \"Status Perkembangan\"\n },\n {\n \"answer\": [\n {\n \"valueString\": \"Anak memiliki masalah dalam bersosialisasi\"\n }\n ],\n \"linkId\": \"2.3\",\n \"text\": \"Keterangan Tambahan\"\n }\n ],\n \"linkId\": \"2\",\n \"text\": \"Lainnya\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:38:38.900605+00:00\",\n \"versionId\": \"MTczMDc4ODcxODkwMDYwNTAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0003\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"display\": \"Orang Tua Pasien\",\n \"reference\": \"RelatedPerson/25a7f210-94de-4f68-8f6c-4005fdd2447f\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
}
]
},
{
"name": "06. Riwayat Terkait Gizi dan Konsumsi Makanan",
"item": [
{
"name": "Observation - ASI Eksklusif",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009756\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"survey\",\r\n\t \"display\": \"Survey\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1145307003\",\r\n\t \"display\": \"Exclusively breastfed\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T01:12:00+00:00\",\r\n\t \"issued\": \"2023-09-02T01:12:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueBoolean\": true\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - ASI Eksklusif",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009756\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"survey\",\r\n\t \"display\": \"Survey\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://snomed.info/sct\",\r\n\t \"code\": \"1145307003\",\r\n\t \"display\": \"Exclusively breastfed\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T01:12:00+00:00\",\r\n\t \"issued\": \"2023-09-02T01:12:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueBoolean\": true\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODgwNDkzMzQ3NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:40:04 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/8ab96baa-3740-4d9c-a135-43143dc07215/_history/MTczMDc4ODgwNDkzMzQ3NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:40:04 GMT"
},
{
"key": "Content-Length",
"value": "930"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "ee31e6e9-ab18-4ce4-b1e7-2a0a6580db1b"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"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\": \"1145307003\",\n \"display\": \"Exclusively breastfed\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-09-02T01:12:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"8ab96baa-3740-4d9c-a135-43143dc07215\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"202403A0009756\"\n }\n ],\n \"issued\": \"2023-09-02T01:12:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:40:04.933476+00:00\",\n \"versionId\": \"MTczMDc4ODgwNDkzMzQ3NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Mendapat Makanan Pendamping ASI",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009757\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"survey\",\r\n\t \"display\": \"Survey\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n\t \"code\": \"OC000009\",\r\n\t \"display\": \"Makanan Pendamping ASI (MPASI)\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T01:13:00+00:00\",\r\n\t \"issued\": \"2023-09-02T01:13:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueBoolean\": false\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Mendapat Makanan Pendamping ASI",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "\t{\r\n\t \"resourceType\": \"Observation\",\r\n\t \"identifier\": [\r\n\t {\r\n\t \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n\t \"value\": \"202403A0009757\"\r\n\t }\r\n\t ],\r\n\t \"status\": \"final\",\r\n\t \"category\": [\r\n\t {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n\t \"code\": \"survey\",\r\n\t \"display\": \"Survey\"\r\n\t }\r\n\t ]\r\n\t }\r\n\t ],\r\n\t \"code\": {\r\n\t \"coding\": [\r\n\t {\r\n\t \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n\t \"code\": \"OC000009\",\r\n\t \"display\": \"Makanan Pendamping ASI (MPASI)\"\r\n\t }\r\n\t ]\r\n\t },\r\n\t \"subject\": {\r\n\t \"reference\": \"Patient/{{Patient_id}}\",\r\n\t \"display\": \"{{Patient_Name}}\"\r\n\t },\r\n\t \"encounter\": {\r\n\t \"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n\t },\r\n\t \"effectiveDateTime\": \"2023-09-02T01:13:00+00:00\",\r\n\t \"issued\": \"2023-09-02T01:13:00+00:00\",\r\n\t \"performer\": [\r\n\t {\r\n\t \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t \"display\": \"{{Practitioner_Name}}\"\r\n\t }\r\n\t ],\r\n\t \"valueBoolean\": false\r\n\t}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/de38a02f-29e4-4f58-9d29-eb5f86390aa2/_history/MTczMDc4ODgxMDA1Njk1NzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:40:10 UTC"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODgxMDA1Njk1NzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:40:10 GMT"
},
{
"key": "Content-Length",
"value": "972"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "e78a19b5-dcb7-4c8e-8fd2-5d621376fce1"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"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\": \"OC000009\",\n \"display\": \"Makanan Pendamping ASI (MPASI)\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-09-02T01:13:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa pada tanggal 02 Sep 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"de38a02f-29e4-4f58-9d29-eb5f86390aa2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"202403A0009757\"\n }\n ],\n \"issued\": \"2023-09-02T01:13:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:40:10.056957+00:00\",\n \"versionId\": \"MTczMDc4ODgxMDA1Njk1NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueBoolean\": false\n}"
}
]
}
]
},
{
"name": "07. Pemeriksaan Penunjang",
"item": [
{
"name": "Laboratorium",
"item": [
{
"name": "Permintaan Pemeriksaan Laboratorium",
"item": [
{
"name": "ServiceRequest - Create",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
"//Generating 4 digits of stringified random integer to make Registration_ID number (for test use cases)\r",
"var randomInt = Math.floor(Math.random() * 10000);\r",
"var randomIntPadded = String(randomInt).padStart(4, '0');\r",
"var Registration_ID = pm.collectionVariables.get(\"Registration_ID\")\r",
"var SRID = Registration_ID + \"_SR\" + randomIntPadded + \"Lab\"\r",
"//Setting CollectionVariable Encounter_Registration_ID to be used\r",
"pm.collectionVariables.set(\"Lab_SRID_Ordinal\", SRID)"
],
"type": "text/javascript",
"packages": {}
}
},
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_BTA\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}_BTA\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11477-7\",\n \"display\": \"Microscopic observation [Identifier] in Sputum by Acid fast stain\"\n }\n ],\n \"text\": \"Pemeriksaan Sputum BTA \"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan BTA Sputum {{Patient_Name}} di hari Selasa, 31 Agustus 2023 pukul 09:30 WIB\"\n },\n \"occurrenceDateTime\": \"2023-08-31T02:30:00+00:00\",\n \"authoredOn\": \"2023-08-31T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000005\",\n \"display\": \"Fatma\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Tuberculosis\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Create",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}_BTA\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11477-7\",\n \"display\": \"Microscopic observation [Identifier] in Sputum by Acid fast stain\"\n }\n ],\n \"text\": \"Pemeriksaan Sputum BTA \"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan BTA Sputum {{Patient_Name}} di hari Selasa, 31 Agustus 2023 pukul 09:30 WIB\"\n },\n \"occurrenceDateTime\": \"2023-08-31T02:30:00+00:00\",\n \"authoredOn\": \"2023-08-31T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000005\",\n \"display\": \"Fatma\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Tuberculosis\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Thu, 02 May 2024 14:17:09 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNDY1OTQyOTY1OTQ4NjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/a33908c1-d8b3-48cf-9333-e404d70a0a44/_history/MTcxNDY1OTQyOTY1OTQ4NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 14:17:09 GMT"
},
{
"key": "content-length",
"value": "1168"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "f0695110-c837-4ed3-9377-4bf5432278de"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"authoredOn\": \"2023-08-31T02:30:00+00:00\",\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11477-7\",\n \"display\": \"Microscopic observation [Identifier] in Sputum by Acid fast stain\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Sputum BTA \"\n },\n \"encounter\": {\n \"display\": \"Permintaan BTA Sputum patient 8 di hari Selasa, 31 Agustus 2023 pukul 09:30 WIB\",\n \"reference\": \"Encounter/a83c705e-f6fc-4fb2-8894-e5b4b3ad860b\"\n },\n \"id\": \"a33908c1-d8b3-48cf-9333-e404d70a0a44\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"2024050214500_BTA\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T14:17:09.659486+00:00\",\n \"versionId\": \"MTcxNDY1OTQyOTY1OTQ4NjAwMA\"\n },\n \"occurrenceDateTime\": \"2023-08-31T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Fatma\",\n \"reference\": \"Practitioner/N10000005\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Tuberculosis\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voigt, MARS.\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/P00883356749\"\n }\n}"
}
]
}
]
},
{
"name": "Data Spesimen",
"item": [
{
"name": "Specimen - Create",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_BTA\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Specimen\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}-specBTA\"\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"45710003\",\n \"display\": \"Sputum\"\n }\n ]\n },\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"386089008\",\n \"display\": \"Collection of coughed sputum\"\n }\n ]\n },\n \"collectedDateTime\": \"2023-08-31T15:15:00+00:00\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_Name}}\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_BTA}}\"\n }\n ],\n \"receivedTime\": \"2023-08-31T15:25:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Create",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Specimen\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/{{Org_id}}\",\n \"value\": \"{{Registration_ID}}-specBTA\"\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"45710003\",\n \"display\": \"Sputum\"\n }\n ]\n },\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"386089008\",\n \"display\": \"Collection of coughed sputum\"\n }\n ]\n },\n \"collectedDateTime\": \"2023-08-31T15:15:00+00:00\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_Name}}\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_BTA}}\"\n }\n ],\n \"receivedTime\": \"2023-08-31T15:25:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/e7d1e3bf-3fca-4d6b-acab-71c703294de3/_history/MTcxNDY1OTQ2Mjc0NjEwMDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 14:17:42 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNDY1OTQ2Mjc0NjEwMDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 14:17:42 GMT"
},
{
"key": "content-length",
"value": "763"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "39d1943a-441e-49cf-a5e6-9458de7cd315"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"collection\": {\n \"collectedDateTime\": \"2023-08-31T15:15:00+00:00\",\n \"method\": {\n \"coding\": [\n {\n \"code\": \"386089008\",\n \"display\": \"Collection of coughed sputum\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n },\n \"id\": \"e7d1e3bf-3fca-4d6b-acab-71c703294de3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"2024050214500-specBTA\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T14:17:42.746100+00:00\",\n \"versionId\": \"MTcxNDY1OTQ2Mjc0NjEwMDAwMA\"\n },\n \"receivedTime\": \"2023-08-31T15:25:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/a33908c1-d8b3-48cf-9333-e404d70a0a44\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"patient 8\",\n \"reference\": \"Patient/P00883356749\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"45710003\",\n \"display\": \"Sputum\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Hasil Pemeriksaan Laboratorium",
"item": [
{
"name": "Observation BTA+1 - Create",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_BTA\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"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\": \"{{Registration_ID}}_obsBTA\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"laboratory\",\n \"display\": \"Laboratory\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11477-7\",\n \"display\": \"Microscopic observation [Identifier] in Sputum by Acid fast stain\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-08-31T15:25:00+00:00\",\n \"issued\": \"2023-08-31T15:25:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"specimen\": {\n \"reference\": \"Specimen/{{Specimen_BTA}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_BTA}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"260347006\",\n \"display\": \"+\"\n }\n ]\n },\n \"referenceRange\": [\n {\n \"text\": \"Negative\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation BTA+1 - Create",
"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\": \"{{Registration_ID}}_obsBTA\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"laboratory\",\n \"display\": \"Laboratory\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11477-7\",\n \"display\": \"Microscopic observation [Identifier] in Sputum by Acid fast stain\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-08-31T15:25:00+00:00\",\n \"issued\": \"2023-08-31T15:25:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"specimen\": {\n \"reference\": \"Specimen/{{Specimen_BTA}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_BTA}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"260347006\",\n \"display\": \"+\"\n }\n ]\n },\n \"referenceRange\": [\n {\n \"text\": \"Negative\"\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": [
{
"key": "last-modified",
"value": "Thu, 02 May 2024 14:18:36 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNDY1OTUxNjA4ODQzOTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/311893ff-31d8-46ca-95eb-43ecf054252e/_history/MTcxNDY1OTUxNjA4ODQzOTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 14:18:36 GMT"
},
{
"key": "content-length",
"value": "1179"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "e4374e66-2021-4258-82cd-db1d998fb1d9"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/a33908c1-d8b3-48cf-9333-e404d70a0a44\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"laboratory\",\n \"display\": \"Laboratory\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11477-7\",\n \"display\": \"Microscopic observation [Identifier] in Sputum by Acid fast stain\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-08-31T15:25:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/a83c705e-f6fc-4fb2-8894-e5b4b3ad860b\"\n },\n \"id\": \"311893ff-31d8-46ca-95eb-43ecf054252e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"2024050214500_obsBTA\"\n }\n ],\n \"issued\": \"2023-08-31T15:25:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T14:18:36.088439+00:00\",\n \"versionId\": \"MTcxNDY1OTUxNjA4ODQzOTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"referenceRange\": [\n {\n \"text\": \"Negative\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/e7d1e3bf-3fca-4d6b-acab-71c703294de3\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/P00883356749\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"260347006\",\n \"display\": \"+\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Laporan Hasil Pemeriksaan Laboratorium",
"item": [
{
"name": "DiagnosticReport BTA+1 - Create",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"DiagnosticReport_BTA\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"DiagnosticReport\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/{{Org_id}}/lab\",\n \"use\": \"official\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"MB\",\n \"display\": \"Microbiology\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11477-7\",\n \"display\": \"Microscopic observation [Identifier] in Sputum by Acid fast stain\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-08-31T15:25:00+00:00\",\n \"issued\": \"2023-08-31T15:25:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_BTA}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_BTA}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_BTA}}\"\n }\n ],\n \"conclusionCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"260347006\",\n \"display\": \"+\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport BTA+1 - Create",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"DiagnosticReport\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/{{Org_id}}/lab\",\n \"use\": \"official\",\n \"value\": \"{{Registration_ID}}\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"MB\",\n \"display\": \"Microbiology\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11477-7\",\n \"display\": \"Microscopic observation [Identifier] in Sputum by Acid fast stain\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-08-31T15:25:00+00:00\",\n \"issued\": \"2023-08-31T15:25:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_BTA}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_BTA}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_BTA}}\"\n }\n ],\n \"conclusionCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"260347006\",\n \"display\": \"+\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Thu, 02 May 2024 14:19:52 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNDY1OTU5MjU3MjcwNTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/8afd3a1f-2090-4c34-8e98-337001f6215c/_history/MTcxNDY1OTU5MjU3MjcwNTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 14:19:52 GMT"
},
{
"key": "content-length",
"value": "1213"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "68f57c6c-3dc5-413c-855c-4d72374a2ce3"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/a33908c1-d8b3-48cf-9333-e404d70a0a44\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"MB\",\n \"display\": \"Microbiology\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"11477-7\",\n \"display\": \"Microscopic observation [Identifier] in Sputum by Acid fast stain\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusionCode\": [\n {\n \"coding\": [\n {\n \"code\": \"260347006\",\n \"display\": \"+\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"effectiveDateTime\": \"2023-08-31T15:25:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/a83c705e-f6fc-4fb2-8894-e5b4b3ad860b\"\n },\n \"id\": \"8afd3a1f-2090-4c34-8e98-337001f6215c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"2024050214500\"\n }\n ],\n \"issued\": \"2023-08-31T15:25:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T14:19:52.572705+00:00\",\n \"versionId\": \"MTcxNDY1OTU5MjU3MjcwNTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/311893ff-31d8-46ca-95eb-43ecf054252e\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/e7d1e3bf-3fca-4d6b-acab-71c703294de3\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/P00883356749\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "Radiologi",
"item": [
{
"name": "Permintaan Pemeriksaan X-Ray",
"item": [
{
"name": "ServiceRequest - Create - For SATUSEHAT",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Rad\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
},
{
"listen": "prerequest",
"script": {
"exec": [
"var randomInt = Math.floor(Math.random() * 10000);\r",
"var randomIntPadded = String(randomInt).padStart(4, '0');\r",
"var Registration_ID = pm.collectionVariables.get(\"Registration_ID\")\r",
"var SRID = Registration_ID + \"SR\" + randomIntPadded;\r",
"\r",
"//Setting CollectionVariable Encounter_Registration_ID to be used\r",
"pm.collectionVariables.set(\"Rad_SRID_CXR\", SRID);\r",
"\r",
"var randomInt = Math.floor(Math.random() * 100000);\r",
"var randomIntPadded = String(randomInt).padStart(5, '0');\r",
"pm.collectionVariables.set(\"ACSN\", randomIntPadded);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n\t\"resourceType\": \"ServiceRequest\",\r\n\t\"identifier\": [\r\n\t\t{\r\n\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\r\n\t\t\t\"value\": \"{{Registration_ID}}-CXR\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"use\": \"usual\",\r\n\t\t\t\"type\": {\r\n\t\t\t\t\"coding\": [\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\r\n\t\t\t\t\t\t\"code\": \"ACSN\"\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t},\r\n\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\r\n\t\t\t\"value\": \"{{ACSN}}\"\r\n\t\t}\r\n\t],\r\n\t\"status\": \"active\",\r\n\t\"intent\": \"original-order\",\r\n\t\"priority\": \"routine\",\r\n\t\"category\": [\r\n\t\t{\r\n\t\t\t\"coding\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\r\n\t\t\t\t\t\"code\": \"363679005\",\r\n\t\t\t\t\t\"display\": \"Imaging\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t\"code\": {\r\n\t\t\"coding\": [\r\n\t\t\t{\r\n\t\t\t\t\"system\": \"http://loinc.org\",\r\n\t\t\t\t\"code\": \"24648-8\",\r\n\t\t\t\t\"display\": \"XR Chest PA upr\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"text\": \"Pemeriksaan CXR PA\"\r\n\t},\r\n\t\"orderDetail\": [\r\n\t\t{\r\n\t\t\t\"coding\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\r\n\t\t\t\t\t\"code\": \"RG\"\r\n\t\t\t\t}\r\n\t\t\t],\r\n\t\t\t\"text\": \"Modality Code: RG\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"coding\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\r\n\t\t\t\t\t\"display\": \"XR0001\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t\"subject\": {\r\n\t\t\"reference\": \"Patient/{{Patient_id}}\"\r\n\t},\r\n\t\"encounter\": {\r\n\t\t\"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t\t\"display\": \"Permintaan pemeriksaan CXR PA untuk tuberculosis\"\r\n\t},\r\n\t\"occurrenceDateTime\": \"2023-08-31T02:05:00+00:00\",\r\n\t\"requester\": {\r\n\t\t\"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t\t\"display\": \"{{Practitioner_Name}}\"\r\n\t},\r\n\t\"performer\": [\r\n\t\t{\r\n\t\t\t\"reference\": \"Practitioner/10012572188\",\r\n\t\t\t\"display\": \"Dokter Radiologist\"\r\n\t\t}\r\n\t],\r\n\t\"reasonCode\": [\r\n\t\t{\r\n\t\t\t\"text\": \"Periksa rutin\"\r\n\t\t}\r\n\t]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Create - For SATUSEHAT",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n\t\"resourceType\": \"ServiceRequest\",\r\n\t\"identifier\": [\r\n\t\t{\r\n\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\r\n\t\t\t\"value\": \"{{Registration_ID}}-CXR\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"use\": \"usual\",\r\n\t\t\t\"type\": {\r\n\t\t\t\t\"coding\": [\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\r\n\t\t\t\t\t\t\"code\": \"ACSN\"\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t},\r\n\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\r\n\t\t\t\"value\": \"{{ACSN}}\"\r\n\t\t}\r\n\t],\r\n\t\"status\": \"active\",\r\n\t\"intent\": \"original-order\",\r\n\t\"priority\": \"routine\",\r\n\t\"category\": [\r\n\t\t{\r\n\t\t\t\"coding\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\r\n\t\t\t\t\t\"code\": \"363679005\",\r\n\t\t\t\t\t\"display\": \"Imaging\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t\"code\": {\r\n\t\t\"coding\": [\r\n\t\t\t{\r\n\t\t\t\t\"system\": \"http://loinc.org\",\r\n\t\t\t\t\"code\": \"24648-8\",\r\n\t\t\t\t\"display\": \"XR Chest PA upr\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"text\": \"Pemeriksaan CXR PA\"\r\n\t},\r\n\t\"orderDetail\": [\r\n\t\t{\r\n\t\t\t\"coding\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\r\n\t\t\t\t\t\"code\": \"RG\"\r\n\t\t\t\t}\r\n\t\t\t],\r\n\t\t\t\"text\": \"Modality Code: RG\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"coding\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\r\n\t\t\t\t\t\"display\": \"XR0001\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t\"subject\": {\r\n\t\t\"reference\": \"Patient/{{Patient_id}}\"\r\n\t},\r\n\t\"encounter\": {\r\n\t\t\"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t\t\"display\": \"Permintaan pemeriksaan CXR PA untuk tuberculosis\"\r\n\t},\r\n\t\"occurrenceDateTime\": \"2023-08-31T02:05:00+00:00\",\r\n\t\"requester\": {\r\n\t\t\"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t\t\"display\": \"{{Practitioner_Name}}\"\r\n\t},\r\n\t\"performer\": [\r\n\t\t{\r\n\t\t\t\"reference\": \"Practitioner/10012572188\",\r\n\t\t\t\"display\": \"Dokter Radiologist\"\r\n\t\t}\r\n\t],\r\n\t\"reasonCode\": [\r\n\t\t{\r\n\t\t\t\"text\": \"Periksa rutin\"\r\n\t\t}\r\n\t]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/4505da11-2469-4e15-84a9-1d337e0c5a5b/_history/MTczMDc4ODgzNDQyNDg1NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:40:34 UTC"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODgzNDQyNDg1NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:40:34 GMT"
},
{
"key": "Content-Length",
"value": "1396"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "4e46b4d6-2388-44a4-ba96-22fc6de0ec1a"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"363679005\",\n \"display\": \"Imaging\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"24648-8\",\n \"display\": \"XR Chest PA upr\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan CXR PA\"\n },\n \"encounter\": {\n \"display\": \"Permintaan pemeriksaan CXR PA untuk tuberculosis\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"4505da11-2469-4e15-84a9-1d337e0c5a5b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"2024110583607-CXR\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000005\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"ACSN\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\"\n }\n ]\n },\n \"use\": \"usual\",\n \"value\": \"79934\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:40:34.424855+00:00\",\n \"versionId\": \"MTczMDc4ODgzNDQyNDg1NTAwMA\"\n },\n \"occurrenceDateTime\": \"2023-08-31T02:05:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"RG\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: RG\"\n },\n {\n \"coding\": [\n {\n \"display\": \"XR0001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dokter Radiologist\",\n \"reference\": \"Practitioner/10012572188\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa rutin\"\n }\n ],\n \"requester\": {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Create - For MWL di dalam DICOM Router",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Rad\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
},
{
"listen": "prerequest",
"script": {
"exec": [
"var randomInt = Math.floor(Math.random() * 10000);\r",
"var randomIntPadded = String(randomInt).padStart(4, '0');\r",
"var Registration_ID = pm.collectionVariables.get(\"Registration_ID\")\r",
"var SRID = Registration_ID + \"SR\" + randomIntPadded;\r",
"\r",
"//Setting CollectionVariable Encounter_Registration_ID to be used\r",
"pm.collectionVariables.set(\"Rad_SRID_CXR\", SRID);\r",
"\r",
"var randomInt = Math.floor(Math.random() * 100000);\r",
"var randomIntPadded = String(randomInt).padStart(5, '0');\r",
"pm.collectionVariables.set(\"ACSN\", randomIntPadded);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n\t\"resourceType\": \"ServiceRequest\",\r\n\t\"identifier\": [\r\n\t\t{\r\n\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\r\n\t\t\t\"value\": \"{{Registration_ID}}-CXR\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"use\": \"usual\",\r\n\t\t\t\"type\": {\r\n\t\t\t\t\"coding\": [\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\r\n\t\t\t\t\t\t\"code\": \"ACSN\"\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t},\r\n\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\r\n\t\t\t\"value\": \"{{ACSN}}\"\r\n\t\t}\r\n\t],\r\n\t\"contained\": [\r\n\t\t{\r\n\t\t\t\"resourceType\": \"Patient\",\r\n\t\t\t\"id\": \"P00883356749\",\r\n\t\t\t\"identifier\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/mrn/{{Org_id}}\",\r\n\t\t\t\t\t\"value\": \"{{mrnPrivate}}\"\r\n\t\t\t\t}\r\n\t\t\t],\r\n\t\t\t\"active\": true,\r\n\t\t\t\"name\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"use\": \"official\",\r\n\t\t\t\t\t\"text\": \"Jane Smith\"\r\n\t\t\t\t}\r\n\t\t\t],\r\n\t\t\t\"gender\": \"female\",\r\n\t\t\t\"birthDate\": \"2015-01-09\"\r\n\t\t}\r\n\t],\r\n\t\"status\": \"active\",\r\n\t\"intent\": \"original-order\",\r\n\t\"priority\": \"routine\",\r\n\t\"category\": [\r\n\t\t{\r\n\t\t\t\"coding\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\r\n\t\t\t\t\t\"code\": \"363679005\",\r\n\t\t\t\t\t\"display\": \"Imaging\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t\"code\": {\r\n\t\t\"coding\": [\r\n\t\t\t{\r\n\t\t\t\t\"system\": \"http://loinc.org\",\r\n\t\t\t\t\"code\": \"24648-8\",\r\n\t\t\t\t\"display\": \"XR Chest PA upr\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"text\": \"Pemeriksaan CXR PA\"\r\n\t},\r\n\t\"orderDetail\": [\r\n\t\t{\r\n\t\t\t\"coding\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\r\n\t\t\t\t\t\"code\": \"RG\"\r\n\t\t\t\t}\r\n\t\t\t],\r\n\t\t\t\"text\": \"Modality Code: RG\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"coding\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\r\n\t\t\t\t\t\"display\": \"XR0001\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t\"subject\": {\r\n\t\t\"reference\": \"Patient/{{Patient_id}}\"\r\n\t},\r\n\t\"encounter\": {\r\n\t\t\"reference\": \"Encounter/{{Encounter_id}}\",\r\n\t\t\"display\": \"Permintaan pemeriksaan CXR PA untuk tuberculosis\"\r\n\t},\r\n\t\"occurrenceDateTime\": \"2023-08-31T02:05:00+00:00\",\r\n\t\"requester\": {\r\n\t\t\"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n\t\t\"display\": \"{{Practitioner_Name}}\"\r\n\t},\r\n\t\"performer\": [\r\n\t\t{\r\n\t\t\t\"reference\": \"Practitioner/10012572188\",\r\n\t\t\t\"display\": \"Dokter Radiologist\"\r\n\t\t}\r\n\t],\r\n\t\"reasonCode\": [\r\n\t\t{\r\n\t\t\t\"text\": \"Periksa rutin\"\r\n\t\t}\r\n\t]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{privateHost}}/fhir/ServiceRequest",
"host": [
"{{privateHost}}"
],
"path": [
"fhir",
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Create - For MWL di dalam DICOM Router",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"ServiceRequest\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\r\n \"value\": \"{{Rad_SRID_CXR}}\"\r\n },\r\n {\r\n \"use\": \"usual\",\r\n \"type\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\r\n \"code\": \"ACSN\"\r\n }\r\n ]\r\n },\r\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\r\n \"value\": \"{{ACSN}}\"\r\n }\r\n ],\r\n \"contained\": [\r\n {\r\n \"resourceType\": \"Patient\",\r\n \"id\": \"P00883356749\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/mrn/{{Org_id}}\",\r\n \"value\": \"{{mrnPrivate}}\"\r\n }\r\n ],\r\n \"active\": true,\r\n \"name\": [\r\n {\r\n \"use\": \"official\",\r\n \"text\": \"Jane Smith\"\r\n }\r\n ],\r\n \"gender\": \"female\",\r\n \"birthDate\": \"2015-01-09\"\r\n }\r\n ],\r\n \"status\": \"active\",\r\n \"intent\": \"original-order\",\r\n \"priority\": \"routine\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://loinc.org\",\r\n \"code\": \"24648-8\",\r\n \"display\": \"XR Chest PA upr\"\r\n }\r\n ],\r\n \"text\": \"Pemeriksaan CXR PA\"\r\n },\r\n \"orderDetail\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\r\n \"code\": \"RG\"\r\n }\r\n ],\r\n \"text\": \"Modality Code: RG\"\r\n },\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\r\n \"display\": \"XR0001\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Permintaan pemeriksaan CXR PA untuk tuberculosis\"\r\n },\r\n \"occurrenceDateTime\": \"2023-08-31T02:05:00+00:00\",\r\n \"requester\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/10012572188\",\r\n \"display\": \"Dokter Radiologist\"\r\n }\r\n ],\r\n \"reasonCode\": [\r\n {\r\n \"text\": \"Periksa rutin\"\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{privateHost}}/fhir/ServiceRequest",
"host": [
"{{privateHost}}"
],
"path": [
"fhir",
"ServiceRequest"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMzUxODA4ODMwMzY3NTAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 19 Apr 2024 09:14:48 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/227dee84-4052-49df-a901-2f726c1038de/_history/MTcxMzUxODA4ODMwMzY3NTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Fri, 19 Apr 2024 09:14:48 GMT"
},
{
"key": "Content-Length",
"value": "1373"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "14ac20ab-05be-4212-ac82-b0e81646953b"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"code\": {\n \"coding\": [\n {\n \"code\": \"24648-8\",\n \"display\": \"XR Chest PA upr\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan CXR PA\"\n },\n \"contained\": [\n {\n \"active\": true,\n \"birthDate\": \"2015-01-09\",\n \"gender\": \"female\",\n \"id\": \"P00883356749\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/mrn/10000004\",\n \"value\": \"MR2301000234\"\n }\n ],\n \"name\": [\n {\n \"text\": \"Jane Smith\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n ],\n \"encounter\": {\n \"display\": \"Permintaan pemeriksaan CXR PA untuk tuberculosis\",\n \"reference\": \"Encounter/81888bcb-44ff-4504-bac4-7226e9a9a144\"\n },\n \"id\": \"227dee84-4052-49df-a901-2f726c1038de\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"2024041815966SR3268\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000005\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"ACSN\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\"\n }\n ]\n },\n \"use\": \"usual\",\n \"value\": \"49565\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-04-19T09:14:48.303675+00:00\",\n \"versionId\": \"MTcxMzUxODA4ODMwMzY3NTAwMA\"\n },\n \"occurrenceDateTime\": \"2023-08-31T02:05:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"RG\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: RG\"\n },\n {\n \"coding\": [\n {\n \"display\": \"XR0001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dokter Radiologist\",\n \"reference\": \"Practitioner/10012572188\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa rutin\"\n }\n ],\n \"requester\": {\n \"display\": \"Practitioner 8\",\n \"reference\": \"Practitioner/10018452434\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/P00883356749\"\n }\n}"
}
]
}
]
},
{
"name": "ImagingStudy",
"item": [
{
"name": "ImagingStudy - Get ID based on Accession Number",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource\r",
"pm.collectionVariables.set(\"ImagingStudy_id\", data.id)"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/{{Org_id}}|{{ACSN}}",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/{{Org_id}}|{{ACSN}}"
}
]
}
},
"response": [
{
"name": "ImagingStudy - Get ID based on Accession Number",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/{{Org_id}}|{{ACSN}}",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/{{Org_id}}|{{ACSN}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sun, 21 Apr 2024 14:29:46 GMT"
},
{
"key": "Content-Length",
"value": "1934"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "2b385bbf-b4e9-4bf5-bd87-43060b4fdbb5"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ImagingStudy/354e1828-b094-493a-b393-2c18a28476ea\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/227dee84-4052-49df-a901-2f726c1038de\"\n }\n ],\n \"id\": \"354e1828-b094-493a-b393-2c18a28476ea\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000005\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"ACSN\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\"\n }\n ]\n },\n \"use\": \"usual\",\n \"value\": \"200020052\"\n },\n {\n \"system\": \"urn:dicom:uid\",\n \"value\": \"urn:oid:2.16.380.31256.1.2449191199178232.20210610114926906\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-04-21T14:29:37.668096+00:00\",\n \"versionId\": \"MTcxMzcwOTc3NzY2ODA5NjAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"RG\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"numberOfInstances\": 1,\n \"numberOfSeries\": 1,\n \"resourceType\": \"ImagingStudy\",\n \"series\": [\n {\n \"instance\": [\n {\n \"number\": 7,\n \"sopClass\": {\n \"code\": \"urn:oid:1.2.840.10008.5.1.4.1.1.77.1.5.1\",\n \"system\": \"urn:ietf:rfc:3986\"\n },\n \"title\": \"ORIGINAL\\\\PRIMARY\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114930875.1.1\"\n }\n ],\n \"modality\": {\n \"code\": \"RG\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2023-11-07T09:15:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2023-08-31T02:05:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/P00883356749\"\n }\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ImagingStudy/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Facsn%2F10000005%7C200020052\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ImagingStudy/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Facsn%2F10000005%7C200020052\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ImagingStudy/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Facsn%2F10000005%7C200020052\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
}
]
},
{
"name": "Hasil Pemeriksaan X-Ray",
"item": [
{
"name": "Observation - CXR",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Rad\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"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\": \"imaging\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"24648-8\",\n \"display\": \"XR Chest PA upr\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_Name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-08-31T02:35:00+00:00\",\n \"issued\": \"2023-08-31T02:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/10012572188\",\n \"display\": \"Dokter Radiologist\"\n }\n ],\n \"valueString\": \"Left upper and middle lung zones show reticulonodular opacities.\\nThe left apical lung zone shows a cavitary lesion( active TB).\\nLeft apical pleural thickening\\nMild mediastinum widening is noted\\nNormal heart size.\\nFree costophrenic angles.\",\n \"basedOn\" : [\n {\n \"reference\" : \"ServiceRequest/{{ServiceRequest_Rad}}\"\n }\n ],\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_id}}\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - CXR",
"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\": \"imaging\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"24648-8\",\n \"display\": \"XR Chest PA upr\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_Name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-08-31T02:35:00+00:00\",\n \"issued\": \"2023-08-31T02:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/10012572188\",\n \"display\": \"Dokter Radiologist\"\n }\n ],\n \"valueString\": \"Left upper and middle lung zones show reticulonodular opacities.\\nThe left apical lung zone shows a cavitary lesion( active TB).\\nLeft apical pleural thickening\\nMild mediastinum widening is noted\\nNormal heart size.\\nFree costophrenic angles.\",\n \"basedOn\" : [\n {\n \"reference\" : \"ServiceRequest/{{ServiceRequest_Rad}}\"\n }\n ],\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_id}}\"\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": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/ec4e371d-12cd-4ad9-b61a-94cdb2fca445/_history/MTczMDc4ODkzOTczOTEwMjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:42:19 UTC"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODkzOTczOTEwMjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:42:19 GMT"
},
{
"key": "Content-Length",
"value": "1177"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "a4a79b6c-2291-4f3c-aa75-e97d8a65f1ba"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/4505da11-2469-4e15-84a9-1d337e0c5a5b\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"imaging\",\n \"display\": \"Imaging\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"24648-8\",\n \"display\": \"XR Chest PA upr\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/354e1828-b094-493a-b393-2c18a28476ea\"\n }\n ],\n \"effectiveDateTime\": \"2023-08-31T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"ec4e371d-12cd-4ad9-b61a-94cdb2fca445\",\n \"identifier\": [],\n \"issued\": \"2023-08-31T02:35:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:42:19.739102+00:00\",\n \"versionId\": \"MTczMDc4ODkzOTczOTEwMjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dokter Radiologist\",\n \"reference\": \"Practitioner/10012572188\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"valueString\": \"Left upper and middle lung zones show reticulonodular opacities.\\nThe left apical lung zone shows a cavitary lesion( active TB).\\nLeft apical pleural thickening\\nMild mediastinum widening is noted\\nNormal heart size.\\nFree costophrenic angles.\"\n}"
}
]
}
]
},
{
"name": "Laporan Hasil Pemeriksaan X-Ray",
"item": [
{
"name": "DiagnosticReport - Create",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"DiagnosticReport\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/{{Org_id}}/rad\",\n \"use\": \"official\",\n \"value\": \"52343522\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"RAD\",\n \"display\": \"Radiology\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"24648-8\",\n \"display\": \"XR Chest PA upr\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-08-31T05:00:00+00:00\",\n \"issued\": \"2023-08-31T05:00:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_id}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_Rad}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Rad}}\"\n }\n ],\n \"conclusion\": \"Active Tuberculosis indicated\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Create",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"DiagnosticReport\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/{{Org_id}}/rad\",\n \"use\": \"official\",\n \"value\": \"52343522\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"RAD\",\n \"display\": \"Radiology\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"24648-8\",\n \"display\": \"XR Chest PA upr\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-08-31T05:00:00+00:00\",\n \"issued\": \"2023-08-31T05:00:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_id}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_Rad}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Rad}}\"\n }\n ],\n \"conclusion\": \"Active Tuberculosis indicated\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/3850c4e4-769a-4f88-bb05-c012a666155d/_history/MTczMDc4ODk0NjMxNTcxOTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:42:26 UTC"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODk0NjMxNTcxOTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:42:26 GMT"
},
{
"key": "Content-Length",
"value": "1110"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "2531cc92-a5ff-4eb1-ac34-fac09902516c"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/4505da11-2469-4e15-84a9-1d337e0c5a5b\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"RAD\",\n \"display\": \"Radiology\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"24648-8\",\n \"display\": \"XR Chest PA upr\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Active Tuberculosis indicated\",\n \"effectiveDateTime\": \"2023-08-31T05:00:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"3850c4e4-769a-4f88-bb05-c012a666155d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/rad\",\n \"use\": \"official\",\n \"value\": \"52343522\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/354e1828-b094-493a-b393-2c18a28476ea\"\n }\n ],\n \"issued\": \"2023-08-31T05:00:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:42:26.315719+00:00\",\n \"versionId\": \"MTczMDc4ODk0NjMxNTcxOTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/10009880728\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/ec4e371d-12cd-4ad9-b61a-94cdb2fca445\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
}
]
}
]
}
]
},
{
"name": "08. Diagnosis",
"item": [
{
"name": "Condition - Gangguan Tumbuh Kembang",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);\r",
"var Diagnosis_Name= data.code.coding[0].display;\r",
"pm.collectionVariables.set(\"DiagnosisPrimer_Text\". Diagnosis_Name);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"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\": \"R62.9\",\n \"display\": \"Lack of expected normal physiologic development unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_Name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2023-08-31T04:10:00+00:00\",\n \"recordedDate\": \"2023-08-31T04:10:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Gangguan Tumbuh Kembang",
"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\": \"R62.9\",\n \"display\": \"Lack of expected normal physiologic development unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_Name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2023-08-31T04:10:00+00:00\",\n \"recordedDate\": \"2023-08-31T04:10:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:42:35 UTC"
},
{
"key": "etag",
"value": "W/\"MTczMDc4ODk1NTA2NzM3NDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/463c5bb2-50aa-478e-a3b4-2d9b2abfea68/_history/MTczMDc4ODk1NTA2NzM3NDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:42:35 GMT"
},
{
"key": "Content-Length",
"value": "865"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "33664848-f1f2-43ba-9dbc-1efa68f1075a"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"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\": \"R62.9\",\n \"display\": \"Lack of expected normal physiologic development unspecified\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"463c5bb2-50aa-478e-a3b4-2d9b2abfea68\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:42:35.067374+00:00\",\n \"versionId\": \"MTczMDc4ODk1NTA2NzM3NDAwMA\"\n },\n \"onsetDateTime\": \"2023-08-31T04:10:00+00:00\",\n \"recordedDate\": \"2023-08-31T04:10:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
},
{
"name": "Condition - Tuberkulosis",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Sekunder\", data.id);\r",
"var Diagnosis_Name= data.code.coding[0].display;\r",
"pm.collectionVariables.set(\"DiagnosisSekunder_Text\". Diagnosis_Name);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"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\": \"A15.7\",\n \"display\": \"Primary respiratory tuberculosis, confirmed bacteriologically and histologically\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_Name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2023-08-31T04:10:00+00:00\",\n \"recordedDate\": \"2023-08-31T04:10:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Tuberkulosis",
"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\": \"A15.7\",\n \"display\": \"Primary respiratory tuberculosis, confirmed bacteriologically and histologically\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_Name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2023-08-31T04:10:00+00:00\",\n \"recordedDate\": \"2023-08-31T04:10:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4ODk2MDk4MjQ2MjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/6a6e0608-80a5-4d7c-9e41-0eaf9ebb2b5d/_history/MTczMDc4ODk2MDk4MjQ2MjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:42:40 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:42:40 GMT"
},
{
"key": "Content-Length",
"value": "886"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "d1731c7a-ca22-4388-abc4-9d9ab6244ef4"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"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\": \"A15.7\",\n \"display\": \"Primary respiratory tuberculosis, confirmed bacteriologically and histologically\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"6a6e0608-80a5-4d7c-9e41-0eaf9ebb2b5d\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:42:40.982462+00:00\",\n \"versionId\": \"MTczMDc4ODk2MDk4MjQ2MjAwMA\"\n },\n \"onsetDateTime\": \"2023-08-31T04:10:00+00:00\",\n \"recordedDate\": \"2023-08-31T04:10:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
}
]
},
{
"name": "09. Tindakan/Prosedur Medis",
"item": [
{
"name": "Tindakan/Prosedur Medis Diagnostik",
"item": [
{
"name": "Radiologi Thoraks (CXR)",
"item": [
{
"name": "Procedure - X-Ray Thoraks Rutin",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"103693007\",\n \"display\": \"Diagnostic procedure\"\n }\n ],\n \"text\": \"Prosedur Diagnostik\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\n \"code\": \"87.44\",\n \"display\": \"Routine chest x-ray, so described\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_Name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"end\": \"2023-08-31T02:27:00+00:00\",\n \"start\": \"2023-08-31T02:27:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - X-Ray Thoraks Rutin",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"103693007\",\n \"display\": \"Diagnostic procedure\"\n }\n ],\n \"text\": \"Prosedur Diagnostik\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\n \"code\": \"87.44\",\n \"display\": \"Routine chest x-ray, so described\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_Name}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"end\": \"2023-08-31T02:27:00+00:00\",\n \"start\": \"2023-08-31T02:27:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"{{Practitioner_Name}}\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4ODk2OTUyODAyNTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Procedure/649e4e18-a9f5-4f1d-87fb-b147f39cd7a5/_history/MTczMDc4ODk2OTUyODAyNTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:42:49 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:42:49 GMT"
},
{
"key": "Content-Length",
"value": "805"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "54a8acdc-9d3f-46d7-9723-b0006324ebac"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"category\": {\n \"coding\": [\n {\n \"code\": \"103693007\",\n \"display\": \"Diagnostic procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Prosedur Diagnostik\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"87.44\",\n \"display\": \"Routine chest x-ray, so described\",\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"649e4e18-a9f5-4f1d-87fb-b147f39cd7a5\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:42:49.528025+00:00\",\n \"versionId\": \"MTczMDc4ODk2OTUyODAyNTAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2023-08-31T02:27:00+00:00\",\n \"start\": \"2023-08-31T02:27:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "Tindakan/Prosedur Medis Terapetik",
"item": [
{
"name": "Procedure - Terapetik - Nebulisasi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Procedure\",\r\n \"status\": \"completed\",\r\n \"category\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"277132007\",\r\n \"display\": \"Therapeutic procedure\"\r\n }\r\n ],\r\n \"text\": \"Therapeutic procedure\"\r\n },\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\r\n \"code\": \"93.74\",\r\n \"display\": \"Speech defect training\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Tindakan terapi wicara {{Patient_Name}} pada Selasa tanggal 31 Agustus 2023\"\r\n },\r\n \"performedPeriod\": {\r\n \"start\": \"2023-08-31T02:27:00+00:00\",\r\n \"end\": \"2023-08-31T02:27:00+00:00\"\r\n },\r\n \"performer\": [\r\n {\r\n \"actor\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n }\r\n ],\r\n \"reasonCode\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\r\n \"code\": \"R62.9\",\r\n \"display\": \"Lack of expected normal physiologic development\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"note\": [\r\n {\r\n \"text\": \"Terapi wicara untuk masalah tumbuh kembang anak\"\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - Terapetik - Nebulisasi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Procedure\",\r\n \"status\": \"completed\",\r\n \"category\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"277132007\",\r\n \"display\": \"Therapeutic procedure\"\r\n }\r\n ],\r\n \"text\": \"Therapeutic procedure\"\r\n },\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\r\n \"code\": \"93.74\",\r\n \"display\": \"Speech defect training\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Tindakan terapi wicara {{Patient_Name}} pada Selasa tanggal 31 Agustus 2023\"\r\n },\r\n \"performedPeriod\": {\r\n \"start\": \"2023-08-31T02:27:00+00:00\",\r\n \"end\": \"2023-08-31T02:27:00+00:00\"\r\n },\r\n \"performer\": [\r\n {\r\n \"actor\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n }\r\n ],\r\n \"reasonCode\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\r\n \"code\": \"R62.9\",\r\n \"display\": \"Lack of expected normal physiologic development\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"note\": [\r\n {\r\n \"text\": \"Terapi wicara untuk masalah tumbuh kembang anak\"\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4ODk3NzEwMDM2NjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:42:57 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Procedure/9be240ef-a8c9-45b1-a0e0-53f7dc3acc4d/_history/MTczMDc4ODk3NzEwMDM2NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:42:57 GMT"
},
{
"key": "Content-Length",
"value": "1097"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "ffd7c2cf-3c58-4d5a-b968-98a911f35348"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"category\": {\n \"coding\": [\n {\n \"code\": \"277132007\",\n \"display\": \"Therapeutic procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Therapeutic procedure\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93.74\",\n \"display\": \"Speech defect training\",\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\"\n }\n ]\n },\n \"encounter\": {\n \"display\": \"Tindakan terapi wicara Ghina Assyifa pada Selasa tanggal 31 Agustus 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"9be240ef-a8c9-45b1-a0e0-53f7dc3acc4d\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:42:57.100366+00:00\",\n \"versionId\": \"MTczMDc4ODk3NzEwMDM2NjAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Terapi wicara untuk masalah tumbuh kembang anak\"\n }\n ],\n \"performedPeriod\": {\n \"end\": \"2023-08-31T02:27:00+00:00\",\n \"start\": \"2023-08-31T02:27:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"R62.9\",\n \"display\": \"Lack of expected normal physiologic development\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
},
{
"name": "Procedure - Counselling",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Procedure\",\r\n \"status\": \"completed\",\r\n \"category\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"409063005\",\r\n \"display\": \"Counselling\"\r\n }\r\n ],\r\n \"text\": \"Counselling\"\r\n },\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\r\n \"code\": \"94.4\",\r\n \"display\": \"Other psychotherapy and counselling\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Konseling {{Patient_Name}} pada Selasa tanggal 31 Agustus 2023\"\r\n },\r\n \"performedPeriod\": {\r\n \"start\": \"2023-08-31T02:27:00+00:00\",\r\n \"end\": \"2023-08-31T02:27:00+00:00\"\r\n },\r\n \"performer\": [\r\n {\r\n \"actor\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n }\r\n ],\r\n \"reasonCode\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\r\n \"code\": \"A15.0\",\r\n \"display\": \"Tuberculosis of lung, confirmed by sputum microscopy with or without culture\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"note\": [\r\n {\r\n \"text\": \"Konseling keresahan pasien karena diagnosis TB\"\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - Counselling",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Procedure\",\r\n \"status\": \"completed\",\r\n \"category\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"409063005\",\r\n \"display\": \"Counselling\"\r\n }\r\n ],\r\n \"text\": \"Counselling\"\r\n },\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\r\n \"code\": \"94.4\",\r\n \"display\": \"Other psychotherapy and counselling\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Konseling {{Patient_Name}} pada Selasa tanggal 31 Agustus 2023\"\r\n },\r\n \"performedPeriod\": {\r\n \"start\": \"2023-08-31T02:27:00+00:00\",\r\n \"end\": \"2023-08-31T02:27:00+00:00\"\r\n },\r\n \"performer\": [\r\n {\r\n \"actor\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n }\r\n ],\r\n \"reasonCode\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\r\n \"code\": \"A15.0\",\r\n \"display\": \"Tuberculosis of lung, confirmed by sputum microscopy with or without culture\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"note\": [\r\n {\r\n \"text\": \"Konseling keresahan pasien karena diagnosis TB\"\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4ODk4MjY5Mzg2NTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Procedure/f8510b1e-6ba1-4758-80cc-9621beb3523d/_history/MTczMDc4ODk4MjY5Mzg2NTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:43:02 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:43:02 GMT"
},
{
"key": "Content-Length",
"value": "1104"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "18961758-2fe7-46f1-90cc-6889937f306f"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"category\": {\n \"coding\": [\n {\n \"code\": \"409063005\",\n \"display\": \"Counselling\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Counselling\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"94.4\",\n \"display\": \"Other psychotherapy and counselling\",\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\"\n }\n ]\n },\n \"encounter\": {\n \"display\": \"Konseling Ghina Assyifa pada Selasa tanggal 31 Agustus 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"f8510b1e-6ba1-4758-80cc-9621beb3523d\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:43:02.693865+00:00\",\n \"versionId\": \"MTczMDc4ODk4MjY5Mzg2NTAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Konseling keresahan pasien karena diagnosis TB\"\n }\n ],\n \"performedPeriod\": {\n \"end\": \"2023-08-31T02:27:00+00:00\",\n \"start\": \"2023-08-31T02:27:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n }\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"A15.0\",\n \"display\": \"Tuberculosis of lung, confirmed by sputum microscopy with or without culture\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "10. Farmasi",
"item": [
{
"name": "Peresepan Obat",
"item": [
{
"name": "MedicationRequest - Create",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"MedicationRequest_id\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n\t\"resourceType\": \"MedicationRequest\",\n\t\"contained\": [\n\t\t{\n\t\t\t\"resourceType\": \"Medication\",\n\t\t\t\"meta\": {\n\t\t\t\t\"profile\": [\n\t\t\t\t\t\"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"identifier\": [\n\t\t\t\t{\n\t\t\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/medication/{{Org_id}}\",\n\t\t\t\t\t\"use\": \"official\",\n\t\t\t\t\t\"value\": \"123456789\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"id\": \"123456789\",\n\t\t\t\"code\": {\n\t\t\t\t\"coding\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n\t\t\t\t\t\t\"code\": \"93000143\",\n\t\t\t\t\t\t\"display\": \"Albendazole 400 mg Tablet Kunyah (HOLI PHARMA)\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"status\": \"active\",\n\t\t\t\"form\": {\n\t\t\t\t\"coding\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n\t\t\t\t\t\t\"code\": \"BS069\",\n\t\t\t\t\t\t\"display\": \"Tablet Kunyah\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n \"manufacturer\": {\n \"reference\": \"Organization/90000001\"\n },\n\t\t\t\"ingredient\": [\n\t\t\t\t{\n\t\t\t\t\t\"itemCodeableConcept\": {\n\t\t\t\t\t\t\"coding\": [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n\t\t\t\t\t\t\t\t\"code\": \"91000146\",\n\t\t\t\t\t\t\t\t\"display\": \"ALBENDAZOLE\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]\n\t\t\t\t\t},\n\t\t\t\t\t\"isActive\": true,\n\t\t\t\t\t\"strength\": {\n\t\t\t\t\t\t\"numerator\": {\n\t\t\t\t\t\t\t\"value\": 400,\n\t\t\t\t\t\t\t\"system\": \"http://unitsofmeasure.org\",\n\t\t\t\t\t\t\t\"code\": \"mg\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"denominator\": {\n\t\t\t\t\t\t\t\"value\": 1,\n\t\t\t\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n\t\t\t\t\t\t\t\"code\": \"CHEWTAB\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"extension\": [\n\t\t\t\t{\n\t\t\t\t\t\"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n\t\t\t\t\t\"valueCodeableConcept\": {\n\t\t\t\t\t\t\"coding\": [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\",\n\t\t\t\t\t\t\t\t\"code\": \"NC\",\n\t\t\t\t\t\t\t\t\"display\": \"Non-compound\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n \"identifier\": [\n\t\t{\n\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/prescription/{{Org_id}}\",\n\t\t\t\"use\": \"official\",\n\t\t\t\"value\": \"123456788\"\n\t\t},\n\t\t{\n\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/prescription-item/{{Org_id}}\",\n\t\t\t\"use\": \"official\",\n\t\t\t\"value\": \"123456788-1\"\n\t\t}\n\t],\n\t\"status\": \"completed\",\n\t\"intent\": \"order\",\n\t\"category\": [\n\t\t{\n\t\t\t\"coding\": [\n\t\t\t\t{\n\t\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n\t\t\t\t\t\"code\": \"outpatient\",\n\t\t\t\t\t\"display\": \"Outpatient\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"priority\": \"routine\",\n\t\"medicationReference\": {\n\t\t\"reference\": \"#123456789\",\n\t\t\"display\": \"{{Medication_Name}}\"\n\t},\n\t\"subject\": {\n\t\t\"reference\": \"Patient/{{Patient_id}}\",\n\t\t\"display\": \"{{Patient_Name}}\"\n\t},\n\t\"encounter\": {\n\t\t\"reference\": \"Encounter/{{Encounter_id}}\"\n\t},\n\t\"authoredOn\": \"2023-08-31T03:27:00+00:00\",\n\t\"requester\": {\n\t\t\"reference\": \"Practitioner/{{Practitioner_id}}\",\n\t\t\"display\": \"{{Practitioner_Name}}\"\n\t},\n\t\"reasonReference\": [\n\t\t{\n\t\t\t\"reference\": \"Condition/{{Diagnosis_Primer}}\",\n\t\t\t\"display\": \"{{DiagnosisPrimer_Text}}\"\n\t\t}\n\t],\n\t\"courseOfTherapyType\": {\n\t\t\"coding\": [\n\t\t\t{\n\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\",\n\t\t\t\t\"code\": \"acute\",\n\t\t\t\t\"display\": \"Short course (acute) therapy\"\n\t\t\t}\n\t\t]\n\t},\n\t\"dosageInstruction\": [\n\t\t{\n\t\t\t\"sequence\": 1,\n\t\t\t\"additionalInstruction\": [\n\t\t\t\t{\n\t\t\t\t\t\"coding\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\n\t\t\t\t\t\t\t\"code\": \"418991002\",\n\t\t\t\t\t\t\t\"display\": \"Sucked or chewed\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"patientInstruction\": \"Albendazole 400 mg single dose\",\n\t\t\t\"timing\": {\n\t\t\t\t\"repeat\": {\n\t\t\t\t\t\"count\": 1\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"route\": {\n\t\t\t\t\"coding\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"system\": \"http://www.whocc.no/atc\",\n\t\t\t\t\t\t\"code\": \"O\",\n\t\t\t\t\t\t\"display\": \"Oral\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"doseAndRate\": [\n\t\t\t\t{\n\t\t\t\t\t\"type\": {\n\t\t\t\t\t\t\"coding\": [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\n\t\t\t\t\t\t\t\t\"code\": \"ordered\",\n\t\t\t\t\t\t\t\t\"display\": \"Ordered\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]\n\t\t\t\t\t},\n\t\t\t\t\t\"doseQuantity\": {\n\t\t\t\t\t\t\"value\": 1,\n\t\t\t\t\t\t\"unit\": \"CHEWTAB\",\n\t\t\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n\t\t\t\t\t\t\"code\": \"CHEWTAB\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"dispenseRequest\": {\n\t\t\"dispenseInterval\": {\n\t\t\t\"value\": 1,\n\t\t\t\"unit\": \"days\",\n\t\t\t\"system\": \"http://unitsofmeasure.org\",\n\t\t\t\"code\": \"d\"\n\t\t},\n\t\t\"validityPeriod\": {\n\t\t\t\"start\": \"2023-08-31T03:27:00+00:00\",\n\t\t\t\"end\": \"2024-07-22T14:27:00+00:00\"\n\t\t},\n\t\t\"numberOfRepeatsAllowed\": 0,\n\t\t\"quantity\": {\n\t\t\t\"value\": 1,\n\t\t\t\"unit\": \"CHEWTAB\",\n\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n\t\t\t\"code\": \"CHEWTAB\"\n\t\t},\n\t\t\"performer\": {\n\t\t\t\"reference\": \"Organization/{{Org_id}}\"\n\t\t}\n\t}\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationRequest",
"host": [
"{{base_url}}"
],
"path": [
"MedicationRequest"
]
}
},
"response": [
{
"name": "MedicationRequest - Create",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n\t\"resourceType\": \"MedicationRequest\",\n\t\"contained\": [\n\t\t{\n\t\t\t\"resourceType\": \"Medication\",\n\t\t\t\"meta\": {\n\t\t\t\t\"profile\": [\n\t\t\t\t\t\"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"identifier\": [\n\t\t\t\t{\n\t\t\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/medication/{{Org_id}}\",\n\t\t\t\t\t\"use\": \"official\",\n\t\t\t\t\t\"value\": \"123456789\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"id\": \"123456789\",\n\t\t\t\"code\": {\n\t\t\t\t\"coding\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n\t\t\t\t\t\t\"code\": \"93000143\",\n\t\t\t\t\t\t\"display\": \"Albendazole 400 mg Tablet Kunyah (HOLI PHARMA)\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"status\": \"active\",\n\t\t\t\"manufacturer\": {\n\t\t\t\t\"reference\": \"Organization/90000001\"\n\t\t\t},\n\t\t\t\"form\": {\n\t\t\t\t\"coding\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n\t\t\t\t\t\t\"code\": \"BS069\",\n\t\t\t\t\t\t\"display\": \"Tablet Kunyah\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"ingredient\": [\n\t\t\t\t{\n\t\t\t\t\t\"itemCodeableConcept\": {\n\t\t\t\t\t\t\"coding\": [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n\t\t\t\t\t\t\t\t\"code\": \"91000146\",\n\t\t\t\t\t\t\t\t\"display\": \"ALBENDAZOLE\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]\n\t\t\t\t\t},\n\t\t\t\t\t\"isActive\": true,\n\t\t\t\t\t\"strength\": {\n\t\t\t\t\t\t\"numerator\": {\n\t\t\t\t\t\t\t\"value\": 400,\n\t\t\t\t\t\t\t\"system\": \"http://unitsofmeasure.org\",\n\t\t\t\t\t\t\t\"code\": \"mg\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"denominator\": {\n\t\t\t\t\t\t\t\"value\": 1,\n\t\t\t\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n\t\t\t\t\t\t\t\"code\": \"CHEWTAB\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"extension\": [\n\t\t\t\t{\n\t\t\t\t\t\"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n\t\t\t\t\t\"valueCodeableConcept\": {\n\t\t\t\t\t\t\"coding\": [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\",\n\t\t\t\t\t\t\t\t\"code\": \"NC\",\n\t\t\t\t\t\t\t\t\"display\": \"Non-compound\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n \"identifier\": [\n\t\t{\n\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/prescription/{{Org_id}}\",\n\t\t\t\"use\": \"official\",\n\t\t\t\"value\": \"123456788\"\n\t\t},\n\t\t{\n\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/prescription-item/{{Org_id}}\",\n\t\t\t\"use\": \"official\",\n\t\t\t\"value\": \"123456788-1\"\n\t\t}\n\t],\n\t\"status\": \"completed\",\n\t\"intent\": \"order\",\n\t\"category\": [\n\t\t{\n\t\t\t\"coding\": [\n\t\t\t\t{\n\t\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n\t\t\t\t\t\"code\": \"outpatient\",\n\t\t\t\t\t\"display\": \"Outpatient\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"priority\": \"routine\",\n\t\"medicationReference\": {\n\t\t\"reference\": \"#123456789\",\n\t\t\"display\": \"{{Medication_Name}}\"\n\t},\n\t\"subject\": {\n\t\t\"reference\": \"Patient/{{Patient_id}}\",\n\t\t\"display\": \"{{Patient_Name}}\"\n\t},\n\t\"encounter\": {\n\t\t\"reference\": \"Encounter/{{Encounter_id}}\"\n\t},\n\t\"authoredOn\": \"2023-08-31T03:27:00+00:00\",\n\t\"requester\": {\n\t\t\"reference\": \"Practitioner/{{Practitioner_id}}\",\n\t\t\"display\": \"{{Practitioner_Name}}\"\n\t},\n\t\"reasonReference\": [\n\t\t{\n\t\t\t\"reference\": \"Condition/{{Diagnosis_Primer}}\",\n\t\t\t\"display\": \"{{DiagnosisPrimer_Text}}\"\n\t\t}\n\t],\n\t\"courseOfTherapyType\": {\n\t\t\"coding\": [\n\t\t\t{\n\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\",\n\t\t\t\t\"code\": \"acute\",\n\t\t\t\t\"display\": \"Short course (acute) therapy\"\n\t\t\t}\n\t\t]\n\t},\n\t\"dosageInstruction\": [\n\t\t{\n\t\t\t\"sequence\": 1,\n\t\t\t\"additionalInstruction\": [\n\t\t\t\t{\n\t\t\t\t\t\"coding\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\n\t\t\t\t\t\t\t\"code\": \"418991002\",\n\t\t\t\t\t\t\t\"display\": \"Sucked or chewed\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"patientInstruction\": \"Albendazole 400 mg single dose\",\n\t\t\t\"timing\": {\n\t\t\t\t\"repeat\": {\n\t\t\t\t\t\"count\": 1\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"route\": {\n\t\t\t\t\"coding\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"system\": \"http://www.whocc.no/atc\",\n\t\t\t\t\t\t\"code\": \"O\",\n\t\t\t\t\t\t\"display\": \"Oral\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"doseAndRate\": [\n\t\t\t\t{\n\t\t\t\t\t\"type\": {\n\t\t\t\t\t\t\"coding\": [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\n\t\t\t\t\t\t\t\t\"code\": \"ordered\",\n\t\t\t\t\t\t\t\t\"display\": \"Ordered\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]\n\t\t\t\t\t},\n\t\t\t\t\t\"doseQuantity\": {\n\t\t\t\t\t\t\"value\": 1,\n\t\t\t\t\t\t\"unit\": \"CHEWTAB\",\n\t\t\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n\t\t\t\t\t\t\"code\": \"CHEWTAB\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"dispenseRequest\": {\n\t\t\"dispenseInterval\": {\n\t\t\t\"value\": 1,\n\t\t\t\"unit\": \"days\",\n\t\t\t\"system\": \"http://unitsofmeasure.org\",\n\t\t\t\"code\": \"d\"\n\t\t},\n\t\t\"validityPeriod\": {\n\t\t\t\"start\": \"2023-08-31T03:27:00+00:00\",\n\t\t\t\"end\": \"2024-07-22T14:27:00+00:00\"\n\t\t},\n\t\t\"numberOfRepeatsAllowed\": 0,\n\t\t\"quantity\": {\n\t\t\t\"value\": 1,\n\t\t\t\"unit\": \"CHEWTAB\",\n\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n\t\t\t\"code\": \"CHEWTAB\"\n\t\t},\n\t\t\"performer\": {\n\t\t\t\"reference\": \"Organization/{{Org_id}}\"\n\t\t}\n\t}\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationRequest",
"host": [
"{{base_url}}"
],
"path": [
"MedicationRequest"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTczMDc4OTAxNjM5NDY5MzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/MedicationRequest/e363ee48-d993-4bc9-b038-53c9f9d0e39b/_history/MTczMDc4OTAxNjM5NDY5MzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:43:36 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:43:36 GMT"
},
{
"key": "Content-Length",
"value": "3518"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "39766130-3184-4ba0-b2bd-9dab3eb47dd4"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"authoredOn\": \"2023-08-31T03:27:00+00:00\",\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\"\n }\n ]\n }\n ],\n \"contained\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93000143\",\n \"display\": \"Albendazole 400 mg Tablet Kunyah (HOLI PHARMA)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NC\",\n \"display\": \"Non-compound\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS069\",\n \"display\": \"Tablet Kunyah\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"123456789\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000005\",\n \"use\": \"official\",\n \"value\": \"123456789\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000146\",\n \"display\": \"ALBENDAZOLE\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CHEWTAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"value\": 1\n },\n \"numerator\": {\n \"code\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"value\": 400\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/90000001\"\n },\n \"meta\": {\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\n ]\n },\n \"resourceType\": \"Medication\",\n \"status\": \"active\"\n }\n ],\n \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"code\": \"acute\",\n \"display\": \"Short course (acute) therapy\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\"\n }\n ]\n },\n \"dispenseRequest\": {\n \"dispenseInterval\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 1\n },\n \"numberOfRepeatsAllowed\": 0,\n \"performer\": {\n \"reference\": \"Organization/10000005\"\n },\n \"quantity\": {\n \"code\": \"CHEWTAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CHEWTAB\",\n \"value\": 1\n },\n \"validityPeriod\": {\n \"end\": \"2024-07-22T14:27:00+00:00\",\n \"start\": \"2023-08-31T03:27:00+00:00\"\n }\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"coding\": [\n {\n \"code\": \"418991002\",\n \"display\": \"Sucked or chewed\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CHEWTAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CHEWTAB\",\n \"value\": 1\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"ordered\",\n \"display\": \"Ordered\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\"\n }\n ]\n }\n }\n ],\n \"patientInstruction\": \"Albendazole 400 mg single dose\",\n \"route\": {\n \"coding\": [\n {\n \"code\": \"O\",\n \"display\": \"Oral\",\n \"system\": \"http://www.whocc.no/atc\"\n }\n ]\n },\n \"sequence\": 1,\n \"timing\": {\n \"repeat\": {\n \"count\": 1\n }\n }\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"e363ee48-d993-4bc9-b038-53c9f9d0e39b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000005\",\n \"use\": \"official\",\n \"value\": \"123456788\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000005\",\n \"use\": \"official\",\n \"value\": \"123456788-1\"\n }\n ],\n \"intent\": \"order\",\n \"medicationReference\": {\n \"display\": \"Albendazole 400 mg Tablet Kunyah (HOLI PHARMA)\",\n \"reference\": \"#123456789\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:43:36.394693+00:00\",\n \"versionId\": \"MTczMDc4OTAxNjM5NDY5MzAwMA\"\n },\n \"priority\": \"routine\",\n \"reasonReference\": [\n {\n \"display\": \"Lack of expected normal physiologic development unspecified\",\n \"reference\": \"Condition/6a6e0608-80a5-4d7c-9e41-0eaf9ebb2b5d\"\n }\n ],\n \"requester\": {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n },\n \"resourceType\": \"MedicationRequest\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
}
]
},
{
"name": "Pengkajian Resep",
"item": [
{
"name": "QuestionnaireResponse - Pengkajian Resep",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"QuestionnaireResponse\",\r\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\r\n \"status\": \"completed\",\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"authored\": \"2023-08-31T03:00:00+00:00\",\r\n \"author\": {\r\n \"reference\": \"Practitioner/10009880728\",\r\n \"display\": \"Apoteker A\"\r\n },\r\n \"source\": {\r\n \"reference\": \"Patient/{{Patient_id}}\"\r\n },\r\n \"item\": [\r\n {\r\n \"linkId\": \"1\",\r\n \"text\": \"Persyaratan Administrasi\",\r\n \"item\": [\r\n {\r\n \"linkId\": \"1.1\",\r\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.2\",\r\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.3\",\r\n \"text\": \"Apakah tanggal resep sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.4\",\r\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2\",\r\n \"text\": \"Persyaratan Farmasetik\",\r\n \"item\": [\r\n {\r\n \"linkId\": \"2.1\",\r\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2.2\",\r\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2.3\",\r\n \"text\": \"Apakah stabilitas obat sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2.4\",\r\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"3\",\r\n \"text\": \"Persyaratan Klinis\",\r\n \"item\": [\r\n {\r\n \"linkId\": \"3.1\",\r\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"3.2\",\r\n \"text\": \"Apakah terdapat duplikasi pengobatan?\",\r\n \"answer\": [\r\n {\r\n \"valueBoolean\": false\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"3.3\",\r\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\",\r\n \"answer\": [\r\n {\r\n \"valueBoolean\": false\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"3.4\",\r\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\",\r\n \"answer\": [\r\n {\r\n \"valueBoolean\": false\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"3.5\",\r\n \"text\": \"Apakah terdapat dampak interaksi obat?\",\r\n \"answer\": [\r\n {\r\n \"valueBoolean\": false\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"4\",\r\n \"text\": \"Resep yang dilakukan pengkajian resep\",\r\n \"answer\": [\r\n {\r\n \"valueReference\": {\r\n \"reference\": \"MedicationRequest/{{MedicationRequest_id}}\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"response": [
{
"name": "QuestionnaireResponse - Pengkajian Resep",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"QuestionnaireResponse\",\r\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\r\n \"status\": \"completed\",\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"authored\": \"2023-08-31T03:00:00+00:00\",\r\n \"author\": {\r\n \"reference\": \"Practitioner/10009880728\",\r\n \"display\": \"Apoteker A\"\r\n },\r\n \"source\": {\r\n \"reference\": \"Patient/{{Patient_id}}\"\r\n },\r\n \"item\": [\r\n {\r\n \"linkId\": \"1\",\r\n \"text\": \"Persyaratan Administrasi\",\r\n \"item\": [\r\n {\r\n \"linkId\": \"1.1\",\r\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.2\",\r\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.3\",\r\n \"text\": \"Apakah tanggal resep sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.4\",\r\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2\",\r\n \"text\": \"Persyaratan Farmasetik\",\r\n \"item\": [\r\n {\r\n \"linkId\": \"2.1\",\r\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2.2\",\r\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2.3\",\r\n \"text\": \"Apakah stabilitas obat sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2.4\",\r\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"3\",\r\n \"text\": \"Persyaratan Klinis\",\r\n \"item\": [\r\n {\r\n \"linkId\": \"3.1\",\r\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"3.2\",\r\n \"text\": \"Apakah terdapat duplikasi pengobatan?\",\r\n \"answer\": [\r\n {\r\n \"valueBoolean\": false\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"3.3\",\r\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\",\r\n \"answer\": [\r\n {\r\n \"valueBoolean\": false\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"3.4\",\r\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\",\r\n \"answer\": [\r\n {\r\n \"valueBoolean\": false\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"3.5\",\r\n \"text\": \"Apakah terdapat dampak interaksi obat?\",\r\n \"answer\": [\r\n {\r\n \"valueBoolean\": false\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"4\",\r\n \"text\": \"Resep yang dilakukan pengkajian resep\",\r\n \"answer\": [\r\n {\r\n \"valueReference\": {\r\n \"reference\": \"MedicationRequest/{{MedicationRequest_id}}\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTczMDc4OTE4NDcyNDkwNjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/QuestionnaireResponse/8d00b8a9-b9bf-4463-b7fc-e9ff95fdd8d3/_history/MTczMDc4OTE4NDcyNDkwNjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:46:24 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:46:24 GMT"
},
{
"key": "Content-Length",
"value": "3357"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "3af60f31-add3-4685-9485-27a153634b64"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"author\": {\n \"display\": \"Apoteker A\",\n \"reference\": \"Practitioner/10009880728\"\n },\n \"authored\": \"2023-08-31T03:00:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"8d00b8a9-b9bf-4463-b7fc-e9ff95fdd8d3\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/creator\",\n \"value\": \"10000005\"\n },\n \"item\": [\n {\n \"item\": [\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.1\",\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.2\",\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.3\",\n \"text\": \"Apakah tanggal resep sudah sesuai?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.4\",\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\"\n }\n ],\n \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\"\n },\n {\n \"item\": [\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"2.1\",\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"2.2\",\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"2.3\",\n \"text\": \"Apakah stabilitas obat sudah sesuai?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"2.4\",\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\"\n }\n ],\n \"linkId\": \"2\",\n \"text\": \"Persyaratan Farmasetik\"\n },\n {\n \"item\": [\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"3.1\",\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"3.2\",\n \"text\": \"Apakah terdapat duplikasi pengobatan?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"3.3\",\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"3.4\",\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"3.5\",\n \"text\": \"Apakah terdapat dampak interaksi obat?\"\n }\n ],\n \"linkId\": \"3\",\n \"text\": \"Persyaratan Klinis\"\n },\n {\n \"answer\": [\n {\n \"valueReference\": {\n \"reference\": \"MedicationRequest/e363ee48-d993-4bc9-b038-53c9f9d0e39b\"\n }\n }\n ],\n \"linkId\": \"4\",\n \"text\": \"Resep yang dilakukan pengkajian resep\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:46:24.724906+00:00\",\n \"versionId\": \"MTczMDc4OTE4NDcyNDkwNjAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"reference\": \"Patient/P01654557057\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
}
]
},
{
"name": "Pengeluaran Obat",
"item": [
{
"name": "MedicationDispense - Create",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationDispense\",\n \"contained\": [\n {\n \"resourceType\": \"Medication\",\n \"meta\": {\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\n ]\n },\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"123456789\"\n }\n ],\n \"id\": \"123456789\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93000143\",\n \"display\": \"Albendazole 400 mg Tablet Kunyah (HOLI PHARMA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS069\",\n \"display\": \"Tablet Kunyah\"\n }\n ]\n },\n \"manufacturer\": {\n \"reference\": \"Organization/90000001\"\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000146\",\n \"display\": \"ALBENDAZOLE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 400,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"CHEWTAB\"\n }\n }\n }\n ],\n \"batch\": {\n \"lotNumber\": \"1625042A\",\n \"expirationDate\": \"2025-07-22T14:27:00+00:00\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\",\n \"code\": \"NC\",\n \"display\": \"Non-compound\"\n }\n ]\n }\n }\n ]\n }\n ],\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"123456788\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"123456788-1\"\n }\n ],\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"#123456789\",\n \"display\": \"{{Medication_Name}}\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_Name}}\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/N10000003\",\n \"display\": \"Apoteker Miller\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{Location_farmasi_id}}\",\n \"display\": \"{{Location_farmasi_Name}}\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/{{MedicationRequest_id}}\"\n }\n ],\n \"quantity\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"CHEWTAB\",\n \"value\": 1\n },\n \"whenPrepared\": \"2023-08-31T03:27:00+00:00\",\n \"whenHandedOver\": \"2023-08-31T03:27:00+00:00\",\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"additionalInstruction\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"418991002\",\n \"display\": \"Sucked or chewed\"\n }\n ]\n }\n ],\n \"patientInstruction\": \"Albendazole 400 mg single dose\",\n \"timing\": {\n \"repeat\": {\n \"count\": 1\n }\n },\n \"doseAndRate\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\n \"code\": \"ordered\",\n \"display\": \"Ordered\"\n }\n ]\n },\n \"doseQuantity\": {\n \"value\": 1,\n \"unit\": \"CHEWTAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"CHEWTAB\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
]
}
},
"response": [
{
"name": "MedicationDispense - Create",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n\t\"resourceType\": \"MedicationDispense\",\n\t\"contained\": [\n\t\t{\n\t\t\t\"resourceType\": \"Medication\",\n\t\t\t\"meta\": {\n\t\t\t\t\"profile\": [\n\t\t\t\t\t\"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"identifier\": [\n\t\t\t\t{\n\t\t\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/medication/{{Org_id}}\",\n\t\t\t\t\t\"use\": \"official\",\n\t\t\t\t\t\"value\": \"123456789\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"id\": \"123456789\",\n\t\t\t\"code\": {\n\t\t\t\t\"coding\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n\t\t\t\t\t\t\"code\": \"93000143\",\n\t\t\t\t\t\t\"display\": \"Albendazole 400 mg Tablet Kunyah (HOLI PHARMA)\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"status\": \"active\",\n\t\t\t\"manufacturer\": {\n\t\t\t\t\"reference\": \"Organization/90000001\"\n\t\t\t},\n\t\t\t\"form\": {\n\t\t\t\t\"coding\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n\t\t\t\t\t\t\"code\": \"BS069\",\n\t\t\t\t\t\t\"display\": \"Tablet Kunyah\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t\"ingredient\": [\n\t\t\t\t{\n\t\t\t\t\t\"itemCodeableConcept\": {\n\t\t\t\t\t\t\"coding\": [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n\t\t\t\t\t\t\t\t\"code\": \"91000146\",\n\t\t\t\t\t\t\t\t\"display\": \"ALBENDAZOLE\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]\n\t\t\t\t\t},\n\t\t\t\t\t\"isActive\": true,\n\t\t\t\t\t\"strength\": {\n\t\t\t\t\t\t\"numerator\": {\n\t\t\t\t\t\t\t\"value\": 400,\n\t\t\t\t\t\t\t\"system\": \"http://unitsofmeasure.org\",\n\t\t\t\t\t\t\t\"code\": \"mg\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"denominator\": {\n\t\t\t\t\t\t\t\"value\": 1,\n\t\t\t\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n\t\t\t\t\t\t\t\"code\": \"CHEWTAB\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"batch\": {\n\t\t\t\t\"lotNumber\": \"1625042A\",\n\t\t\t\t\"expirationDate\": \"2025-07-22T14:27:00+00:00\"\n\t\t\t},\n\t\t\t\"extension\": [\n\t\t\t\t{\n\t\t\t\t\t\"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n\t\t\t\t\t\"valueCodeableConcept\": {\n\t\t\t\t\t\t\"coding\": [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\",\n\t\t\t\t\t\t\t\t\"code\": \"NC\",\n\t\t\t\t\t\t\t\t\"display\": \"Non-compound\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"identifier\": [\n\t\t{\n\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/prescription/{{Org_id}}\",\n\t\t\t\"use\": \"official\",\n\t\t\t\"value\": \"123456788\"\n\t\t},\n\t\t{\n\t\t\t\"system\": \"http://sys-ids.kemkes.go.id/prescription-item/{{Org_id}}\",\n\t\t\t\"use\": \"official\",\n\t\t\t\"value\": \"123456788-1\"\n\t\t}\n\t],\n\t\"status\": \"completed\",\n\t\"category\": {\n\t\t\"coding\": [\n\t\t\t{\n\t\t\t\t\"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\",\n\t\t\t\t\"code\": \"outpatient\",\n\t\t\t\t\"display\": \"Outpatient\"\n\t\t\t}\n\t\t]\n\t},\n\t\"medicationReference\": {\n\t\t\"reference\": \"#123456789\",\n\t\t\"display\": \"{{Medication_Name}}\"\n\t},\n\t\"subject\": {\n\t\t\"reference\": \"Patient/{{Patient_id}}\",\n\t\t\"display\": \"{{Patient_Name}}\"\n\t},\n\t\"context\": {\n\t\t\"reference\": \"Encounter/{{Encounter_id}}\"\n\t},\n\t\"performer\": [\n\t\t{\n\t\t\t\"actor\": {\n\t\t\t\t\"reference\": \"Practitioner/N10000003\",\n\t\t\t\t\"display\": \"Apoteker Miller\"\n\t\t\t}\n\t\t}\n\t],\n\t\"location\": {\n\t\t\"reference\": \"Location/{{Location_farmasi_id}}\",\n\t\t\"display\": \"{{Location_farmasi_Name}}\"\n\t},\n\t\"authorizingPrescription\": [\n\t\t{\n\t\t\t\"reference\": \"MedicationRequest/{{MedicationRequest_id}}\"\n\t\t}\n\t],\n\t\"quantity\": {\n\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n\t\t\"code\": \"CHEWTAB\",\n\t\t\"value\": 1\n\t},\n\t\"whenPrepared\": \"2023-08-31T03:27:00+00:00\",\n\t\"whenHandedOver\": \"2023-08-31T03:27:00+00:00\",\n\t\"dosageInstruction\": [\n\t\t{\n\t\t\t\"sequence\": 1,\n\t\t\t\"additionalInstruction\": [\n\t\t\t\t{\n\t\t\t\t\t\"coding\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"system\": \"http://snomed.info/sct\",\n\t\t\t\t\t\t\t\"code\": \"418991002\",\n\t\t\t\t\t\t\t\"display\": \"Sucked or chewed\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"patientInstruction\": \"Albendazole 400 mg single dose\",\n\t\t\t\"timing\": {\n\t\t\t\t\"repeat\": {\n\t\t\t\t\t\"count\": 1\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"doseAndRate\": [\n\t\t\t\t{\n\t\t\t\t\t\"type\": {\n\t\t\t\t\t\t\"coding\": [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\n\t\t\t\t\t\t\t\t\"code\": \"ordered\",\n\t\t\t\t\t\t\t\t\"display\": \"Ordered\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]\n\t\t\t\t\t},\n\t\t\t\t\t\"doseQuantity\": {\n\t\t\t\t\t\t\"value\": 1,\n\t\t\t\t\t\t\"unit\": \"CHEWTAB\",\n\t\t\t\t\t\t\"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n\t\t\t\t\t\t\"code\": \"CHEWTAB\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4OTIxMzc1MTcyMzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:46:53 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/MedicationDispense/466cb159-9d69-4eeb-910c-8908d6657680/_history/MTczMDc4OTIxMzc1MTcyMzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:46:53 GMT"
},
{
"key": "Content-Length",
"value": "3102"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "62c085f3-5e16-4959-ae28-47edc55f02ef"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/e363ee48-d993-4bc9-b038-53c9f9d0e39b\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"batch\": {\n \"expirationDate\": \"2025-07-22T14:27:00+00:00\",\n \"lotNumber\": \"1625042A\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93000143\",\n \"display\": \"Albendazole 400 mg Tablet Kunyah (HOLI PHARMA)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NC\",\n \"display\": \"Non-compound\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS069\",\n \"display\": \"Tablet Kunyah\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"123456789\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000005\",\n \"use\": \"official\",\n \"value\": \"123456789\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000146\",\n \"display\": \"ALBENDAZOLE\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CHEWTAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"value\": 1\n },\n \"numerator\": {\n \"code\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"value\": 400\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/90000001\"\n },\n \"meta\": {\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\n ]\n },\n \"resourceType\": \"Medication\",\n \"status\": \"active\"\n }\n ],\n \"context\": {\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"coding\": [\n {\n \"code\": \"418991002\",\n \"display\": \"Sucked or chewed\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CHEWTAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CHEWTAB\",\n \"value\": 1\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"ordered\",\n \"display\": \"Ordered\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\"\n }\n ]\n }\n }\n ],\n \"patientInstruction\": \"Albendazole 400 mg single dose\",\n \"sequence\": 1,\n \"timing\": {\n \"repeat\": {\n \"count\": 1\n }\n }\n }\n ],\n \"id\": \"466cb159-9d69-4eeb-910c-8908d6657680\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000005\",\n \"use\": \"official\",\n \"value\": \"123456788\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000005\",\n \"use\": \"official\",\n \"value\": \"123456788-1\"\n }\n ],\n \"location\": {\n \"display\": \"Ruang Apotek\",\n \"reference\": \"Location/6910a49e-6295-4e58-afb6-ff2952fc02b3\"\n },\n \"medicationReference\": {\n \"display\": \"Albendazole 400 mg Tablet Kunyah (HOLI PHARMA)\",\n \"reference\": \"#123456789\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:46:53.751723+00:00\",\n \"versionId\": \"MTczMDc4OTIxMzc1MTcyMzAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker Miller\",\n \"reference\": \"Practitioner/N10000003\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CHEWTAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"value\": 1\n },\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n },\n \"whenHandedOver\": \"2023-08-31T03:27:00+00:00\",\n \"whenPrepared\": \"2023-08-31T03:27:00+00:00\"\n}"
}
]
}
]
}
]
},
{
"name": "11. Rencana Tindak Lanjut",
"item": [
{
"name": "ServiceRequest - Kontrol Kembali",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Kontrol\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"00001\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3457005\",\n \"display\": \"Patient referral\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"185389009\",\n \"display\": \"Follow-up visit\"\n }\n ],\n \"text\": \"Kontrol rutin regimen TB bulan ke-2\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan {{Patient_Name}} di hari Kamis, 31 Agustus 2023\"\n },\n \"occurrenceDateTime\": \"2023-08-31T04:25:00+00:00\",\n \"authoredOn\": \"2023-08-31T04:25:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000005\",\n \"display\": \"Fatma\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"A15.0\",\n \"display\": \"Tuberculosis of lung, confirmed by sputum microscopy with or without culture\"\n }\n ],\n \"text\": \"Kontrol rutin bulanan\"\n }\n ],\n \"locationCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"OF\",\n \"display\": \"Outpatient Facility\"\n }\n ]\n }\n ],\n \"locationReference\": [\n {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n }\n ],\n \"patientInstruction\": \"Kontrol setelah 1 bulan minum obat anti tuberkulosis. Dalam keadaan darurat dapat menghubungi hotlineFasyankesdi nomor 14045\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Kontrol Kembali",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"00001\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3457005\",\n \"display\": \"Patient referral\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"185389009\",\n \"display\": \"Follow-up visit\"\n }\n ],\n \"text\": \"Kontrol rutin regimen TB bulan ke-2\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan {{Patient_Name}} di hari Kamis, 31 Agustus 2023\"\n },\n \"occurrenceDateTime\": \"2023-08-31T04:25:00+00:00\",\n \"authoredOn\": \"2023-08-31T04:25:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"{{Practitioner_Name}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000005\",\n \"display\": \"Fatma\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"A15.0\",\n \"display\": \"Tuberculosis of lung, confirmed by sputum microscopy with or without culture\"\n }\n ],\n \"text\": \"Kontrol rutin bulanan\"\n }\n ],\n \"locationCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"OF\",\n \"display\": \"Outpatient Facility\"\n }\n ]\n }\n ],\n \"locationReference\": [\n {\n \"reference\": \"Location/{{Location_Poli_id}}\",\n \"display\": \"{{Location_Poli_Name}}\"\n }\n ],\n \"patientInstruction\": \"Kontrol setelah 1 bulan minum obat anti tuberkulosis. Dalam keadaan darurat dapat menghubungi hotlineFasyankesdi nomor 14045\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4OTIyNDgwODIxODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/e35d0934-9914-4eef-981d-749acd1f9c76/_history/MTczMDc4OTIyNDgwODIxODAwMA"
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:47:04 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:47:04 GMT"
},
{
"key": "Content-Length",
"value": "1636"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "2c9dfa22-1e42-4879-9707-3ca544c3db88"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"authoredOn\": \"2023-08-31T04:25:00+00:00\",\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"3457005\",\n \"display\": \"Patient referral\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"185389009\",\n \"display\": \"Follow-up visit\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Kontrol rutin regimen TB bulan ke-2\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"e35d0934-9914-4eef-981d-749acd1f9c76\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"00001\"\n }\n ],\n \"intent\": \"original-order\",\n \"locationCode\": [\n {\n \"coding\": [\n {\n \"code\": \"OF\",\n \"display\": \"Outpatient Facility\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\"\n }\n ]\n }\n ],\n \"locationReference\": [\n {\n \"display\": \"Ruang Poli Tumbuh Kembang\",\n \"reference\": \"Location/75c3f68e-460f-4a88-8905-5f9deabc37ce\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:47:04.808218+00:00\",\n \"versionId\": \"MTczMDc4OTIyNDgwODIxODAwMA\"\n },\n \"occurrenceDateTime\": \"2023-08-31T04:25:00+00:00\",\n \"patientInstruction\": \"Kontrol setelah 1 bulan minum obat anti tuberkulosis. Dalam keadaan darurat dapat menghubungi hotlineFasyankesdi nomor 14045\",\n \"performer\": [\n {\n \"display\": \"Fatma\",\n \"reference\": \"Practitioner/N10000005\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"A15.0\",\n \"display\": \"Tuberculosis of lung, confirmed by sputum microscopy with or without culture\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ],\n \"text\": \"Kontrol rutin bulanan\"\n }\n ],\n \"requester\": {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
}
]
},
{
"name": "12. Kondisi Saat Meninggalkan Fasyankes",
"item": [
{
"name": "Condition - Stabil",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Condition\",\r\n \"clinicalStatus\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\r\n \"code\": \"active\",\r\n \"display\": \"Active\"\r\n }\r\n ]\r\n },\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\r\n \"code\": \"problem-list-item\",\r\n \"display\": \"Problem List Item\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"162668006\",\r\n \"display\": \"Patient's condition stable\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} di hari Kamis, 31 Agustus 2023\"\r\n }\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Stabil",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Condition\",\r\n \"clinicalStatus\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\r\n \"code\": \"active\",\r\n \"display\": \"Active\"\r\n }\r\n ]\r\n },\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\r\n \"code\": \"problem-list-item\",\r\n \"display\": \"Problem List Item\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"359746009\",\r\n \"display\": \"Patient's condition stable\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} di hari Kamis, 31 Agustus 2023\"\r\n }\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTczMDc4OTIzNDkxMTM5OTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:47:14 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/232afba4-aa0f-490e-8eb2-f08d34521d8a/_history/MTczMDc4OTIzNDkxMTM5OTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:47:14 GMT"
},
{
"key": "Content-Length",
"value": "804"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "e5d1d01c-c379-4b4b-be17-0270d3ff14a8"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\",\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\": \"359746009\",\n \"display\": \"Patient's condition stable\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"display\": \"Kunjungan Ghina Assyifa di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb\"\n },\n \"id\": \"232afba4-aa0f-490e-8eb2-f08d34521d8a\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:47:14.911399+00:00\",\n \"versionId\": \"MTczMDc4OTIzNDkxMTM5OTAwMA\"\n },\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
}
]
},
{
"name": "13. Pasien Pulang",
"item": [
{
"name": "Encounter - Update (Pulang dan Kontrol Kembali)",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_id}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Encounter_Registration_ID}}\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"ambulatory\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_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-08-31T00:00:00+00:00\",\n \"end\": \"2023-08-31T04:10: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-08-31T00:00:00+00:00\",\n \"end\": \"2023-08-31T04: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 \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Primer}}\",\n \"display\": \"{{DiagnosisPrimer_Text}}\"\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 \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\",\n \"display\": \"{{DiagnosisSekunder_Text}}\"\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\": 2\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-08-31T00:00:00+00:00\",\n \"end\": \"2023-08-31T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-08-31T01:00:00+00:00\",\n \"end\": \"2023-08-31T04:05:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-08-31T04:05:00+00:00\",\n \"end\": \"2023-08-31T04:10:00+00:00\"\n }\n }\n ],\n \"hospitalization\": {\n \"dischargeDisposition\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/discharge-disposition\",\n \"code\": \"home\",\n \"display\": \"Home\"\n }\n ],\n \"text\": \"Anjuran dokter untuk pulang dan kontrol kembali 1 bulan setelah minum obat\"\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_id}}"
}
]
}
},
"response": [
{
"name": "Encounter - Update (Pulang dan Kontrol Kembali)",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"{{Encounter_id}}\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"{{Encounter_Registration_ID}}\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"ambulatory\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"{{Patient_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-08-31T00:00:00+00:00\",\n \"end\": \"2023-08-31T04:10: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-08-31T00: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 \"diagnosis\": [\n {\n \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Primer}}\",\n \"display\": \"{{DiagnosisPrimer_Text}}\"\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 \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\",\n \"display\": \"{{DiagnosisSekunder_Text}}\"\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\": 2\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2023-08-31T00:00:00+00:00\",\n \"end\": \"2023-08-31T01:00:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-08-31T01:00:00+00:00\",\n \"end\": \"2023-08-31T04:05:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2023-08-31T04:05:00+00:00\",\n \"end\": \"2023-08-31T04:10:00+00:00\"\n }\n }\n ],\n \"hospitalization\": {\n \"dischargeDisposition\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/discharge-disposition\",\n \"code\": \"home\",\n \"display\": \"Home\"\n }\n ],\n \"text\": \"Anjuran dokter untuk pulang dan kontrol kembali 1 bulan setelah minum obat\"\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_id}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 05 Nov 2024 06:49:14 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Encounter/79889ecb-35d0-4106-bd2a-e96e39b453cb/_history/MTczMDc4OTM1NDA0OTAyMTAwMA"
},
{
"key": "etag",
"value": "W/\"MTczMDc4OTM1NDA0OTAyMTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 05 Nov 2024 06:49:14 GMT"
},
{
"key": "Content-Length",
"value": "2687"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "4c952f70-b0e3-4f1d-b21a-5d1f675a82ab"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"class\": {\n \"code\": \"AMB\",\n \"display\": \"ambulatory\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"diagnosis\": [\n {\n \"condition\": {\n \"display\": \"Lack of expected normal physiologic development unspecified\",\n \"reference\": \"Condition/463c5bb2-50aa-478e-a3b4-2d9b2abfea68\"\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 \"condition\": {\n \"display\": \"Primary respiratory tuberculosis, confirmed bacteriologically and histologically\",\n \"reference\": \"Condition/6a6e0608-80a5-4d7c-9e41-0eaf9ebb2b5d\"\n },\n \"rank\": 2,\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 \"hospitalization\": {\n \"dischargeDisposition\": {\n \"coding\": [\n {\n \"code\": \"home\",\n \"display\": \"Home\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/discharge-disposition\"\n }\n ],\n \"text\": \"Anjuran dokter untuk pulang dan kontrol kembali 1 bulan setelah minum obat\"\n }\n },\n \"id\": \"79889ecb-35d0-4106-bd2a-e96e39b453cb\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000005\",\n \"value\": \"{{Encounter_Registration_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\": \"Ruang Poli Tumbuh Kembang\",\n \"reference\": \"Location/75c3f68e-460f-4a88-8905-5f9deabc37ce\"\n },\n \"period\": {\n \"start\": \"2023-08-31T00:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-11-05T06:49:14.049021+00:00\",\n \"versionId\": \"MTczMDc4OTM1NDA0OTAyMTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"dr. Alexander\",\n \"reference\": \"Practitioner/10009880728\"\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-08-31T04:10:00+00:00\",\n \"start\": \"2023-08-31T00:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000005\"\n },\n \"status\": \"finished\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-08-31T01:00:00+00:00\",\n \"start\": \"2023-08-31T00:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"end\": \"2023-08-31T04:05:00+00:00\",\n \"start\": \"2023-08-31T01:00:00+00:00\"\n },\n \"status\": \"in-progress\"\n },\n {\n \"period\": {\n \"end\": \"2023-08-31T04:10:00+00:00\",\n \"start\": \"2023-08-31T04:05:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ],\n \"subject\": {\n \"display\": \"Ghina Assyifa\",\n \"reference\": \"Patient/P01654557057\"\n }\n}"
}
]
}
]
},
{
"name": "Bundle - Tumbuh Kembang",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
"//defining uuid as a function of uuid module\r",
"var uuid = require('uuid');\r",
"\r",
"//setting up multiple uuids for use inside the bundle\r",
"var Encounter_id = uuid.v4();\r",
"pm.collectionVariables.set(\"Encounter_id\", Encounter_id);\r",
"\r",
"var Keluhan_Utama = uuid.v4();\r",
"pm.collectionVariables.set(\"Keluhan_Utama\", Keluhan_Utama);\r",
"\r",
"var Antrop_BB = uuid.v4();\r",
"pm.collectionVariables.set(\"Antrop_BB\", Antrop_BB);\r",
"\r",
"var Antrop_KenaikanBB = uuid.v4();\r",
"pm.collectionVariables.set(\"Antrop_KenaikanBB\", Antrop_KenaikanBB);\r",
"\r",
"var Antrop_TB = uuid.v4();\r",
"pm.collectionVariables.set(\"Antrop_TB\", Antrop_TB);\r",
"\r",
"var Antrop_LiLA = uuid.v4();\r",
"pm.collectionVariables.set(\"Antrop_LiLA\", Antrop_LiLA);\r",
"\r",
"var Antrop_BBU = uuid.v4();\r",
"pm.collectionVariables.set(\"Antrop_BBU\", Antrop_BBU);\r",
"\r",
"var Antrop_TBU = uuid.v4();\r",
"pm.collectionVariables.set(\"Antrop_TBU\", Antrop_TBU);\r",
"\r",
"var Antrop_BBTB = uuid.v4();\r",
"pm.collectionVariables.set(\"Antrop_BBTB\", Antrop_BBTB);\r",
"\r",
"var QuestResp_SDIDTK = uuid.v4();\r",
"pm.collectionVariables.set(\"QuestResp_SDIDTK\", QuestResp_SDIDTK);\r",
"\r",
"var Diagnosis_Primer = uuid.v4();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", Diagnosis_Primer);\r",
"\r",
"var Riwayat_ASIEksklusif = uuid.v4();\r",
"pm.collectionVariables.set(\"Riwayat_ASIEksklusif\", Riwayat_ASIEksklusif);\r",
"\r",
"var Riwayat_MPASI = uuid.v4();\r",
"pm.collectionVariables.set(\"Riwayat_MPASI\", Riwayat_MPASI);\r",
"\r",
"var Status_Lainnya = uuid.v4();\r",
"pm.collectionVariables.set(\"Status_Lainnya\", Status_Lainnya);\r",
"\r",
"var Procedure_Counselling = uuid.v4();\r",
"pm.collectionVariables.set(\"Procedure_Counselling\", Procedure_Counselling);\r",
"\r",
"var ServiceRequest_RTL = uuid.v4();\r",
"pm.collectionVariables.set(\"ServiceRequest_RTL\", ServiceRequest_RTL);\r",
"\r",
"var Condition_Stabil = uuid.v4();\r",
"pm.collectionVariables.set(\"Condition_Stabil\", Condition_Stabil);\r",
"\r",
"\r",
"\r",
"\r",
"\r",
"//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 MRID number (for test use cases)\r",
"var randomInt = Math.floor(Math.random() * 100000);\r",
"var randomIntPadded = String(randomInt).padStart(5, '0');\r",
"var MRID = yyyymmdd + randomIntPadded;\r",
"\r",
"//Setting CollectionVariable Encounter_MRID to be used\r",
"pm.collectionVariables.set(\"Registration_ID\", MRID)"
],
"type": "text/javascript",
"packages": {}
}
},
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Bundle\",\r\n \"type\": \"transaction\",\r\n \"entry\": [\r\n {\r\n \"fullUrl\": \"urn:uuid:fce6b922-f328-4f89-9ef1-5c9f341dfab4\",\r\n \"resource\": {\r\n \"resourceType\": \"Encounter\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\r\n \"value\": \"{{Encounter_Registration_ID}}\"\r\n }\r\n ],\r\n \"status\": \"finished\",\r\n \"statusHistory\": [\r\n {\r\n \"status\": \"arrived\",\r\n \"period\": {\r\n \"start\": \"2023-08-31T00:00:00+00:00\",\r\n \"end\": \"2023-08-31T01:00:00+00:00\"\r\n }\r\n },\r\n {\r\n \"status\": \"in-progress\",\r\n \"period\": {\r\n \"start\": \"2023-08-31T01:00:00+00:00\",\r\n \"end\": \"2023-08-31T04:05:00+00:00\"\r\n }\r\n },\r\n {\r\n \"status\": \"finished\",\r\n \"period\": {\r\n \"start\": \"2023-08-31T04:05:00+00:00\",\r\n \"end\": \"2023-08-31T04:10:00+00:00\"\r\n }\r\n }\r\n ],\r\n \"class\": {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\r\n \"code\": \"AMB\",\r\n \"display\": \"ambulatory\"\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"participant\": [\r\n {\r\n \"type\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\r\n \"code\": \"ATND\",\r\n \"display\": \"attender\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"individual\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n }\r\n ],\r\n \"period\": {\r\n \"start\": \"2023-08-31T00:00:00+00:00\",\r\n \"end\": \"2023-08-31T04:10:00+00:00\"\r\n },\r\n \"diagnosis\": [\r\n {\r\n \"condition\": {\r\n \"reference\": \"Condition/{{Diagnosis_Primer}}\",\r\n \"display\": \"{{DiagnosisPrimer_Text}}\"\r\n },\r\n \"use\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\r\n \"code\": \"DD\",\r\n \"display\": \"Discharge diagnosis\"\r\n }\r\n ]\r\n },\r\n \"rank\": 1\r\n },\r\n {\r\n \"condition\": {\r\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\",\r\n \"display\": \"{{DiagnosisSekunder_Text}}\"\r\n },\r\n \"use\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\r\n \"code\": \"DD\",\r\n \"display\": \"Discharge diagnosis\"\r\n }\r\n ]\r\n },\r\n \"rank\": 2\r\n }\r\n ],\r\n \"hospitalization\": {\r\n \"dischargeDisposition\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/discharge-disposition\",\r\n \"code\": \"home\",\r\n \"display\": \"Home\"\r\n }\r\n ],\r\n \"text\": \"Anjuran dokter untuk pulang dan kontrol kembali 1 bulan setelah minum obat\"\r\n }\r\n },\r\n \"location\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"url\": \"value\",\r\n \"valueCodeableConcept\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\r\n \"code\": \"reguler\",\r\n \"display\": \"Kelas Reguler\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"url\": \"upgradeClassIndicator\",\r\n \"valueCodeableConcept\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\r\n \"code\": \"kelas-tetap\",\r\n \"display\": \"Kelas Tetap Perawatan\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\r\n }\r\n ],\r\n \"location\": {\r\n \"reference\": \"Location/{{Location_Poli_id}}\",\r\n \"display\": \"{{Location_Poli_Name}}\"\r\n },\r\n \"period\": {\r\n \"start\": \"2023-08-31T00:00:00+00:00\"\r\n }\r\n }\r\n ],\r\n \"serviceProvider\": {\r\n \"reference\": \"Organization/{{Org_id}}\"\r\n }\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Encounter\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:9517d656-5266-4c47-b576-088698bbe725\",\r\n \"resource\": {\r\n \"resourceType\": \"Condition\",\r\n \"clinicalStatus\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\r\n \"code\": \"active\",\r\n \"display\": \"Active\"\r\n }\r\n ]\r\n },\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\r\n \"code\": \"problem-list-item\",\r\n \"display\": \"Problem List Item\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"89362005\",\r\n \"display\": \"Weight Loss\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"onsetDateTime\": \"2023-02-02T00:00:00+00:00\",\r\n \"recordedDate\": \"2023-08-31T01:00:00+00:00\",\r\n \"recorder\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"note\": [\r\n {\r\n \"text\": \"Berat badan turun 3 kg dalam 1 bulan terakhir\"\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Condition\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:0f5c22ad-5ed7-4278-9afe-338643808097\",\r\n \"resource\": {\r\n \"resourceType\": \"Condition\",\r\n \"clinicalStatus\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\r\n \"code\": \"active\",\r\n \"display\": \"Active\"\r\n }\r\n ]\r\n },\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\r\n \"code\": \"problem-list-item\",\r\n \"display\": \"Problem List Item\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"267095009\",\r\n \"display\": \"Speech Problem\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"onsetDateTime\": \"2023-02-02T00:00:00+00:00\",\r\n \"recordedDate\": \"2023-08-31T01:00:00+00:00\",\r\n \"recorder\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"note\": [\r\n {\r\n \"text\": \"Kesulitan bicara sejak lahir\"\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Condition\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:25b6a394-51c5-4fbe-8052-bbcf618f29c7\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009712\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"vital-signs\",\r\n \"display\": \"Vital Signs\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://loinc.org\",\r\n \"code\": \"29463-7\",\r\n \"display\": \"Body weight\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:02:00+00:00\",\r\n \"issued\": \"2023-09-02T00:02:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": 15,\r\n \"unit\": \"kg\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"kg\"\r\n }\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:a68a5b0b-c161-4d2e-bf46-f03fc0c20599\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009713\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"exam\",\r\n \"display\": \"Exam\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OC000012\",\r\n \"display\": \"Kenaikan Berat Badan Adekuat\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:03:00+00:00\",\r\n \"issued\": \"2023-09-02T00:03:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueBoolean\": false\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:9a3de1b2-52b1-4193-9021-a1548194e805\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009717\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"vital-signs\",\r\n \"display\": \"Vital Signs\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://loinc.org\",\r\n \"code\": \"8302-2\",\r\n \"display\": \"Body height\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:07:00+00:00\",\r\n \"issued\": \"2023-09-02T00:07:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": 80,\r\n \"unit\": \"cm\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"cm\"\r\n }\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:fec38c5a-dac6-475c-9414-e90539be766b\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009719\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"vital-signs\",\r\n \"display\": \"Vital Signs\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://loinc.org\",\r\n \"code\": \"8306-3\",\r\n \"display\": \"Body height --lying\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:09:00+00:00\",\r\n \"issued\": \"2023-09-02T00:09:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": 77,\r\n \"unit\": \"cm\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"cm\"\r\n }\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:0eabf1b5-921b-47f1-be24-bba4905c318f\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009719\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"vital-signs\",\r\n \"display\": \"Vital Signs\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://loinc.org\",\r\n \"code\": \"8308-9\",\r\n \"display\": \"Body height --standing\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:09:00+00:00\",\r\n \"issued\": \"2023-09-02T00:09:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": 77,\r\n \"unit\": \"cm\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"cm\"\r\n }\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:740a855e-66ba-4fad-9a3c-06245b464671\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009730\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"exam\",\r\n \"display\": \"Exam\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"284473002\",\r\n \"display\": \"Mid upper arm circumference\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:20:00+00:00\",\r\n \"issued\": \"2023-09-02T00:20:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": 14,\r\n \"unit\": \"cm\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"cm\"\r\n },\r\n \"interpretation\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\r\n \"code\": \"N\",\r\n \"display\": \"Normal\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:01a19aa8-4088-49a1-96b1-5c592f2826e3\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009726\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"vital-signs\",\r\n \"display\": \"Vital Signs\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://loinc.org\",\r\n \"code\": \"9843-4\",\r\n \"display\": \"Head Occipital-frontal circumference\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:16:00+00:00\",\r\n \"issued\": \"2023-09-02T00:16:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": 50,\r\n \"unit\": \"cm\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"cm\"\r\n }\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:b091bc78-5f0e-482c-a912-15cdecb0dcc5\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009715\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"exam\",\r\n \"display\": \"Exam\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"1153593003\",\r\n \"display\": \"Weight for age z-score\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:05:00+00:00\",\r\n \"issued\": \"2023-09-02T00:05:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": -2,\r\n \"unit\": \"{Zscore}\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"{Zscore}\"\r\n },\r\n \"interpretation\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"43664005\",\r\n \"display\": \"Normal weight\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:4d9017ce-cde1-4a7c-916b-c6ed083a3cb3\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009720\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"exam\",\r\n \"display\": \"Exam\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"1153590000\",\r\n \"display\": \"Length for age z score\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:10:00+00:00\",\r\n \"issued\": \"2023-09-02T00:10:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": -2.5,\r\n \"unit\": \"{Zscore}\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"{Zscore}\"\r\n },\r\n \"interpretation\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"444000005\",\r\n \"display\": \"Short stature for age\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:560e3686-9c0e-4fad-afcf-671417440600\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009720\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"exam\",\r\n \"display\": \"Exam\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"1153604005\",\r\n \"display\": \"Body height for age z-score\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:10:00+00:00\",\r\n \"issued\": \"2023-09-02T00:10:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": -2.5,\r\n \"unit\": \"{Zscore}\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"{Zscore}\"\r\n },\r\n \"interpretation\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"444000005\",\r\n \"display\": \"Short stature for age\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:e53687ba-db2f-4c97-a8ad-1068d7c95416\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009721\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"exam\",\r\n \"display\": \"Exam\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"1153600001\",\r\n \"display\": \"Weight for height z-score\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:11:00+00:00\",\r\n \"issued\": \"2023-09-02T00:11:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": -2.5,\r\n \"unit\": \"{Zscore}\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"{Zscore}\"\r\n },\r\n \"interpretation\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"248325000\",\r\n \"display\": \"Undernourished\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:be014e1e-bf73-448b-8fde-62db6d7bc443\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009721\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"exam\",\r\n \"display\": \"Exam\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"1153598007\",\r\n \"display\": \"Weight for length z score\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:11:00+00:00\",\r\n \"issued\": \"2023-09-02T00:11:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": -2.5,\r\n \"unit\": \"{Zscore}\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"{Zscore}\"\r\n },\r\n \"interpretation\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"248325000\",\r\n \"display\": \"Undernourished\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:fce863a1-bc41-4cb4-afa9-28decc82498f\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009727\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"exam\",\r\n \"display\": \"Exam\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"1153594009\",\r\n \"display\": \"Head circumference for age z-score\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:17:00+00:00\",\r\n \"issued\": \"2023-09-02T00:17:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": -3,\r\n \"unit\": \"{Zscore}\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"{Zscore}\"\r\n },\r\n \"interpretation\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"1148757008\",\r\n \"display\": \"Microcephaly\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:73dc6871-aa73-4030-b3fc-ac559b4cdbb2\",\r\n \"resource\": {\r\n \"resourceType\": \"QuestionnaireResponse\",\r\n \"identifier\": {\r\n \"system\": \"http://sys-ids.kemkes.go.id/QuestionnaireResponse/{{Org_id}}\",\r\n \"value\": \"202403A0004275\"\r\n },\r\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0003\",\r\n \"status\": \"completed\",\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"authored\": \"2023-09-02T00:05:00+00:00\",\r\n \"author\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"source\": {\r\n \"reference\": \"RelatedPerson/{{RelatedPerson_id}}\",\r\n \"display\": \"Orang Tua Pasien\"\r\n },\r\n \"item\": [\r\n {\r\n \"linkId\": \"1\",\r\n \"text\": \"Stimulasi, Deteksi, dan Intervensi Dini Tumbuh Kembang (SDIDTK)\",\r\n \"item\": [\r\n {\r\n \"linkId\": \"1.1\",\r\n \"text\": \"Apakah diperiksa SDIDTK?\",\r\n \"answer\": [\r\n {\r\n \"valueBoolean\": true\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.2\",\r\n \"text\": \"Kuesioner Pra Skrining (KPSP)\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/Codesystem/kpsp\",\r\n \"code\": \"Dm\",\r\n \"display\": \"Perkembangan meragukan\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.3\",\r\n \"text\": \"Tes Daya Dengar (TDD)\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"410519009\",\r\n \"display\": \"At risk\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.4\",\r\n \"text\": \"Tes Daya Lihat (TDL)\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"410519009\",\r\n \"display\": \"At risk\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.5\",\r\n \"text\": \"Kuesioner Masalah Perilaku dan Emosional (KMPE)\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"410519009\",\r\n \"display\": \"At risk\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.6\",\r\n \"text\": \"Autisme (M-CHAT-REVISED)\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"410519009\",\r\n \"display\": \"At risk\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.7\",\r\n \"text\": \"GPPH (Gangguan Pemusatan Perhatian dan Hiperaktivitas)\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"410519009\",\r\n \"display\": \"At risk\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2\",\r\n \"text\": \"Lainnya\",\r\n \"item\": [\r\n {\r\n \"linkId\": \"2.1\",\r\n \"text\": \"Status Pertumbuhan\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OI000017\",\r\n \"display\": \"Tidak Sesuai Usia\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2.2\",\r\n \"text\": \"Status Perkembangan\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OI000017\",\r\n \"display\": \"Tidak Sesuai Usia\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2.3\",\r\n \"text\": \"Keterangan Tambahan\",\r\n \"answer\": [\r\n {\r\n \"valueString\": \"Anak memiliki masalah dalam bersosialisasi\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"QuestionnaireResponse\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:10e3dec7-f33c-4cf0-9c13-f9d60855b5cc\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009756\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"survey\",\r\n \"display\": \"Survey\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"1145307003\",\r\n \"display\": \"Exclusively breastfed\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T01:12:00+00:00\",\r\n \"issued\": \"2023-09-02T01:12:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueBoolean\": true\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:4224f0a2-2257-4573-ba65-7f0c795b1ebc\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009757\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"survey\",\r\n \"display\": \"Survey\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OC000009\",\r\n \"display\": \"Makanan Pendamping ASI (MPASI)\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T01:13:00+00:00\",\r\n \"issued\": \"2023-09-02T01:13:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueBoolean\": false\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:9ad2aad6-f382-42b4-a726-3d87af8edc9d\",\r\n \"resource\": {\r\n \"resourceType\": \"ServiceRequest\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\r\n \"value\": \"{{Registration_ID}}_BTA\"\r\n }\r\n ],\r\n \"status\": \"active\",\r\n \"intent\": \"original-order\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"108252007\",\r\n \"display\": \"Laboratory procedure\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"priority\": \"routine\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://loinc.org\",\r\n \"code\": \"11477-7\",\r\n \"display\": \"Microscopic observation [Identifier] in Sputum by Acid fast stain\"\r\n }\r\n ],\r\n \"text\": \"Pemeriksaan Sputum BTA \"\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Permintaan BTA Sputum {{Patient_Name}} di hari Selasa, 31 Agustus 2023 pukul 09:30 WIB\"\r\n },\r\n \"occurrenceDateTime\": \"2023-08-31T02:30:00+00:00\",\r\n \"authoredOn\": \"2023-08-31T02:30:00+00:00\",\r\n \"requester\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/N10000005\",\r\n \"display\": \"Fatma\"\r\n }\r\n ],\r\n \"reasonCode\": [\r\n {\r\n \"text\": \"Periksa jika ada kemungkinan Tuberculosis\"\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"ServiceRequest\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:f000740d-c695-4c18-934f-281e0dc790f8\",\r\n \"resource\": {\r\n \"resourceType\": \"Specimen\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/{{Org_id}}\",\r\n \"value\": \"{{Registration_ID}}-specBTA\"\r\n }\r\n ],\r\n \"status\": \"available\",\r\n \"type\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"45710003\",\r\n \"display\": \"Sputum\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"receivedTime\": \"2023-08-31T15:25:00+00:00\",\r\n \"request\": [\r\n {\r\n \"reference\": \"ServiceRequest/{{ServiceRequest_BTA}}\"\r\n }\r\n ],\r\n \"collection\": {\r\n \"collectedDateTime\": \"2023-08-31T15:15:00+00:00\",\r\n \"method\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"386089008\",\r\n \"display\": \"Collection of coughed sputum\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Specimen\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:f58de771-cf6a-404e-9e44-2519b0f44f48\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"{{Registration_ID}}_obsBTA\"\r\n }\r\n ],\r\n \"basedOn\": [\r\n {\r\n \"reference\": \"ServiceRequest/{{ServiceRequest_BTA}}\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"laboratory\",\r\n \"display\": \"Laboratory\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://loinc.org\",\r\n \"code\": \"11477-7\",\r\n \"display\": \"Microscopic observation [Identifier] in Sputum by Acid fast stain\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"effectiveDateTime\": \"2023-08-31T15:25:00+00:00\",\r\n \"issued\": \"2023-08-31T15:25:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\r\n },\r\n {\r\n \"reference\": \"Organization/{{Org_id}}\"\r\n }\r\n ],\r\n \"valueCodeableConcept\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"260347006\",\r\n \"display\": \"+\"\r\n }\r\n ]\r\n },\r\n \"specimen\": {\r\n \"reference\": \"Specimen/{{Specimen_BTA}}\"\r\n },\r\n \"referenceRange\": [\r\n {\r\n \"text\": \"Negative\"\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:6462f5e7-7b89-41f1-9522-c5eaad329a71\",\r\n \"resource\": {\r\n \"resourceType\": \"DiagnosticReport\",\r\n \"identifier\": [\r\n {\r\n \"use\": \"official\",\r\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/{{Org_id}}/lab\",\r\n \"value\": \"{{Registration_ID}}\"\r\n }\r\n ],\r\n \"basedOn\": [\r\n {\r\n \"reference\": \"ServiceRequest/{{ServiceRequest_BTA}}\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\r\n \"code\": \"MB\",\r\n \"display\": \"Microbiology\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://loinc.org\",\r\n \"code\": \"11477-7\",\r\n \"display\": \"Microscopic observation [Identifier] in Sputum by Acid fast stain\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"effectiveDateTime\": \"2023-08-31T15:25:00+00:00\",\r\n \"issued\": \"2023-08-31T15:25:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\r\n },\r\n {\r\n \"reference\": \"Organization/{{Org_id}}\"\r\n }\r\n ],\r\n \"specimen\": [\r\n {\r\n \"reference\": \"Specimen/{{Specimen_BTA}}\"\r\n }\r\n ],\r\n \"result\": [\r\n {\r\n \"reference\": \"Observation/{{Observation_BTA}}\"\r\n }\r\n ],\r\n \"conclusionCode\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"260347006\",\r\n \"display\": \"+\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"DiagnosticReport\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:0ce6d166-751b-429d-a558-1c61617348fc\",\r\n \"resource\": {\r\n \"resourceType\": \"ServiceRequest\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\r\n \"value\": \"{{Registration_ID}}-CXR\"\r\n },\r\n {\r\n \"use\": \"usual\",\r\n \"type\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\r\n \"code\": \"ACSN\"\r\n }\r\n ]\r\n },\r\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\r\n \"value\": \"{{ACSN}}\"\r\n }\r\n ],\r\n \"status\": \"active\",\r\n \"intent\": \"original-order\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"363679005\",\r\n \"display\": \"Imaging\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"priority\": \"routine\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://loinc.org\",\r\n \"code\": \"24648-8\",\r\n \"display\": \"XR Chest PA upr\"\r\n }\r\n ],\r\n \"text\": \"Pemeriksaan CXR PA\"\r\n },\r\n \"orderDetail\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\r\n \"code\": \"RG\"\r\n }\r\n ],\r\n \"text\": \"Modality Code: RG\"\r\n },\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\r\n \"display\": \"XR0001\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Permintaan pemeriksaan CXR PA untuk tuberculosis\"\r\n },\r\n \"occurrenceDateTime\": \"2023-08-31T02:05:00+00:00\",\r\n \"requester\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/10012572188\",\r\n \"display\": \"Dokter Radiologist\"\r\n }\r\n ],\r\n \"reasonCode\": [\r\n {\r\n \"text\": \"Periksa rutin\"\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"ServiceRequest\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:49c7e986-ed48-452e-b3a8-bfbebf61f6a0\",\r\n \"resource\": {\r\n \"resourceType\": \"ServiceRequest\",\r\n \"contained\": [\r\n {\r\n \"resourceType\": \"Patient\",\r\n \"id\": \"P00883356749\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/mrn/{{Org_id}}\",\r\n \"value\": \"{{mrnPrivate}}\"\r\n }\r\n ],\r\n \"active\": true,\r\n \"name\": [\r\n {\r\n \"use\": \"official\",\r\n \"text\": \"Jane Smith\"\r\n }\r\n ],\r\n \"gender\": \"female\",\r\n \"birthDate\": \"2015-01-09\"\r\n }\r\n ],\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\r\n \"value\": \"{{Registration_ID}}-CXR\"\r\n },\r\n {\r\n \"use\": \"usual\",\r\n \"type\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\r\n \"code\": \"ACSN\"\r\n }\r\n ]\r\n },\r\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\r\n \"value\": \"{{ACSN}}\"\r\n }\r\n ],\r\n \"status\": \"active\",\r\n \"intent\": \"original-order\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"363679005\",\r\n \"display\": \"Imaging\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"priority\": \"routine\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://loinc.org\",\r\n \"code\": \"24648-8\",\r\n \"display\": \"XR Chest PA upr\"\r\n }\r\n ],\r\n \"text\": \"Pemeriksaan CXR PA\"\r\n },\r\n \"orderDetail\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\r\n \"code\": \"RG\"\r\n }\r\n ],\r\n \"text\": \"Modality Code: RG\"\r\n },\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\r\n \"display\": \"XR0001\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Permintaan pemeriksaan CXR PA untuk tuberculosis\"\r\n },\r\n \"occurrenceDateTime\": \"2023-08-31T02:05:00+00:00\",\r\n \"requester\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/10012572188\",\r\n \"display\": \"Dokter Radiologist\"\r\n }\r\n ],\r\n \"reasonCode\": [\r\n {\r\n \"text\": \"Periksa rutin\"\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"ServiceRequest\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:b8a4f451-c187-4c2f-897b-8173c8bff155\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"basedOn\": [\r\n {\r\n \"reference\": \"ServiceRequest/{{ServiceRequest_Rad}}\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"imaging\",\r\n \"display\": \"Imaging\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://loinc.org\",\r\n \"code\": \"24648-8\",\r\n \"display\": \"XR Chest PA upr\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"effectiveDateTime\": \"2023-08-31T02:35:00+00:00\",\r\n \"issued\": \"2023-08-31T02:35:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/10012572188\",\r\n \"display\": \"Dokter Radiologist\"\r\n }\r\n ],\r\n \"valueString\": \"Left upper and middle lung zones show reticulonodular opacities.\\nThe left apical lung zone shows a cavitary lesion( active TB).\\nLeft apical pleural thickening\\nMild mediastinum widening is noted\\nNormal heart size.\\nFree costophrenic angles.\",\r\n \"derivedFrom\": [\r\n {\r\n \"reference\": \"ImagingStudy/{{ImagingStudy_id}}\"\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:5b8eb88c-b2c0-4ab4-a095-b974c3adb131\",\r\n \"resource\": {\r\n \"resourceType\": \"DiagnosticReport\",\r\n \"identifier\": [\r\n {\r\n \"use\": \"official\",\r\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/{{Org_id}}/rad\",\r\n \"value\": \"52343522\"\r\n }\r\n ],\r\n \"basedOn\": [\r\n {\r\n \"reference\": \"ServiceRequest/{{ServiceRequest_Rad}}\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\r\n \"code\": \"RAD\",\r\n \"display\": \"Radiology\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://loinc.org\",\r\n \"code\": \"24648-8\",\r\n \"display\": \"XR Chest PA upr\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"effectiveDateTime\": \"2023-08-31T05:00:00+00:00\",\r\n \"issued\": \"2023-08-31T05:00:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\r\n },\r\n {\r\n \"reference\": \"Organization/{{Org_id}}\"\r\n }\r\n ],\r\n \"result\": [\r\n {\r\n \"reference\": \"Observation/{{Observation_Rad}}\"\r\n }\r\n ],\r\n \"imagingStudy\": [\r\n {\r\n \"reference\": \"ImagingStudy/{{ImagingStudy_id}}\"\r\n }\r\n ],\r\n \"conclusion\": \"Active Tuberculosis indicated\"\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"DiagnosticReport\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:a01da1ab-6325-46fd-be01-64656f94e6db\",\r\n \"resource\": {\r\n \"resourceType\": \"Condition\",\r\n \"clinicalStatus\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\r\n \"code\": \"active\",\r\n \"display\": \"Active\"\r\n }\r\n ]\r\n },\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\r\n \"code\": \"encounter-diagnosis\",\r\n \"display\": \"Encounter Diagnosis\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\r\n \"code\": \"R62.9\",\r\n \"display\": \"Lack of expected normal physiologic development unspecified\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"onsetDateTime\": \"2023-08-31T04:10:00+00:00\",\r\n \"recordedDate\": \"2023-08-31T04:10:00+00:00\"\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Condition\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:3c4f5851-b676-4135-b654-7e639cba60c7\",\r\n \"resource\": {\r\n \"resourceType\": \"Condition\",\r\n \"clinicalStatus\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\r\n \"code\": \"active\",\r\n \"display\": \"Active\"\r\n }\r\n ]\r\n },\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\r\n \"code\": \"encounter-diagnosis\",\r\n \"display\": \"Encounter Diagnosis\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\r\n \"code\": \"A15.7\",\r\n \"display\": \"Primary respiratory tuberculosis, confirmed bacteriologically and histologically\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"onsetDateTime\": \"2023-08-31T04:10:00+00:00\",\r\n \"recordedDate\": \"2023-08-31T04:10:00+00:00\"\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Condition\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:35787404-5bfe-413d-98cd-a5a9d81c0d21\",\r\n \"resource\": {\r\n \"resourceType\": \"Procedure\",\r\n \"status\": \"completed\",\r\n \"category\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"103693007\",\r\n \"display\": \"Diagnostic procedure\"\r\n }\r\n ],\r\n \"text\": \"Prosedur Diagnostik\"\r\n },\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\r\n \"code\": \"87.44\",\r\n \"display\": \"Routine chest x-ray, so described\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"performedPeriod\": {\r\n \"start\": \"2023-08-31T02:27:00+00:00\",\r\n \"end\": \"2023-08-31T02:27:00+00:00\"\r\n },\r\n \"performer\": [\r\n {\r\n \"actor\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Procedure\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:dc30b188-e5b7-464b-a638-73a486e152f9\",\r\n \"resource\": {\r\n \"resourceType\": \"Procedure\",\r\n \"status\": \"completed\",\r\n \"category\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"277132007\",\r\n \"display\": \"Therapeutic procedure\"\r\n }\r\n ],\r\n \"text\": \"Therapeutic procedure\"\r\n },\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\r\n \"code\": \"93.74\",\r\n \"display\": \"Speech defect training\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Tindakan terapi wicara {{Patient_Name}} pada Selasa tanggal 31 Agustus 2023\"\r\n },\r\n \"performedPeriod\": {\r\n \"start\": \"2023-08-31T02:27:00+00:00\",\r\n \"end\": \"2023-08-31T02:27:00+00:00\"\r\n },\r\n \"performer\": [\r\n {\r\n \"actor\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n }\r\n ],\r\n \"reasonCode\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\r\n \"code\": \"R62.9\",\r\n \"display\": \"Lack of expected normal physiologic development\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"note\": [\r\n {\r\n \"text\": \"Terapi wicara untuk masalah tumbuh kembang anak\"\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Procedure\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:030f59b8-4921-46c3-aa3a-675e146d6dc1\",\r\n \"resource\": {\r\n \"resourceType\": \"Procedure\",\r\n \"status\": \"completed\",\r\n \"category\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"409063005\",\r\n \"display\": \"Counselling\"\r\n }\r\n ],\r\n \"text\": \"Counselling\"\r\n },\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\r\n \"code\": \"94.4\",\r\n \"display\": \"Other psychotherapy and counselling\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Konseling {{Patient_Name}} pada Selasa tanggal 31 Agustus 2023\"\r\n },\r\n \"performedPeriod\": {\r\n \"start\": \"2023-08-31T02:27:00+00:00\",\r\n \"end\": \"2023-08-31T02:27:00+00:00\"\r\n },\r\n \"performer\": [\r\n {\r\n \"actor\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n }\r\n ],\r\n \"reasonCode\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\r\n \"code\": \"A15.0\",\r\n \"display\": \"Tuberculosis of lung, confirmed by sputum microscopy with or without culture\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"note\": [\r\n {\r\n \"text\": \"Konseling keresahan pasien karena diagnosis TB\"\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Procedure\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:0cbb5ca6-b463-4eef-9314-70d32d1eb920\",\r\n \"resource\": {\r\n \"resourceType\": \"MedicationRequest\",\r\n \"contained\": [\r\n {\r\n \"resourceType\": \"Medication\",\r\n \"id\": \"123456789\",\r\n \"meta\": {\r\n \"profile\": [\r\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\r\n ]\r\n },\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\r\n \"valueCodeableConcept\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\",\r\n \"code\": \"NC\",\r\n \"display\": \"Non-compound\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"identifier\": [\r\n {\r\n \"use\": \"official\",\r\n \"system\": \"http://sys-ids.kemkes.go.id/medication/{{Org_id}}\",\r\n \"value\": \"123456789\"\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\r\n \"code\": \"93000143\",\r\n \"display\": \"Albendazole 400 mg Tablet Kunyah (HOLI PHARMA)\"\r\n }\r\n ]\r\n },\r\n \"status\": \"active\",\r\n \"manufacturer\": {\r\n \"reference\": \"Organization/90000001\"\r\n },\r\n \"form\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\r\n \"code\": \"BS069\",\r\n \"display\": \"Tablet Kunyah\"\r\n }\r\n ]\r\n },\r\n \"ingredient\": [\r\n {\r\n \"itemCodeableConcept\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\r\n \"code\": \"91000146\",\r\n \"display\": \"ALBENDAZOLE\"\r\n }\r\n ]\r\n },\r\n \"isActive\": true,\r\n \"strength\": {\r\n \"numerator\": {\r\n \"value\": 400,\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"mg\"\r\n },\r\n \"denominator\": {\r\n \"value\": 1,\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\r\n \"code\": \"CHEWTAB\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n ],\r\n \"identifier\": [\r\n {\r\n \"use\": \"official\",\r\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/{{Org_id}}\",\r\n \"value\": \"123456788\"\r\n },\r\n {\r\n \"use\": \"official\",\r\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/{{Org_id}}\",\r\n \"value\": \"123456788-1\"\r\n }\r\n ],\r\n \"status\": \"completed\",\r\n \"intent\": \"order\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\r\n \"code\": \"outpatient\",\r\n \"display\": \"Outpatient\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"priority\": \"routine\",\r\n \"medicationReference\": {\r\n \"reference\": \"#123456789\",\r\n \"display\": \"{{Medication_Name}}\"\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"authoredOn\": \"2023-08-31T03:27:00+00:00\",\r\n \"requester\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"reasonReference\": [\r\n {\r\n \"reference\": \"Condition/{{Diagnosis_Primer}}\",\r\n \"display\": \"{{DiagnosisPrimer_Text}}\"\r\n }\r\n ],\r\n \"courseOfTherapyType\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\",\r\n \"code\": \"acute\",\r\n \"display\": \"Short course (acute) therapy\"\r\n }\r\n ]\r\n },\r\n \"dosageInstruction\": [\r\n {\r\n \"sequence\": 1,\r\n \"additionalInstruction\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"418991002\",\r\n \"display\": \"Sucked or chewed\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"patientInstruction\": \"Albendazole 400 mg single dose\",\r\n \"timing\": {\r\n \"repeat\": {\r\n \"count\": 1\r\n }\r\n },\r\n \"route\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://www.whocc.no/atc\",\r\n \"code\": \"O\",\r\n \"display\": \"Oral\"\r\n }\r\n ]\r\n },\r\n \"doseAndRate\": [\r\n {\r\n \"type\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\r\n \"code\": \"ordered\",\r\n \"display\": \"Ordered\"\r\n }\r\n ]\r\n },\r\n \"doseQuantity\": {\r\n \"value\": 1,\r\n \"unit\": \"CHEWTAB\",\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\r\n \"code\": \"CHEWTAB\"\r\n }\r\n }\r\n ]\r\n }\r\n ],\r\n \"dispenseRequest\": {\r\n \"dispenseInterval\": {\r\n \"value\": 1,\r\n \"unit\": \"days\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"d\"\r\n },\r\n \"validityPeriod\": {\r\n \"start\": \"2023-08-31T03:27:00+00:00\",\r\n \"end\": \"2024-07-22T14:27:00+00:00\"\r\n },\r\n \"numberOfRepeatsAllowed\": 0,\r\n \"quantity\": {\r\n \"value\": 1,\r\n \"unit\": \"CHEWTAB\",\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\r\n \"code\": \"CHEWTAB\"\r\n },\r\n \"performer\": {\r\n \"reference\": \"Organization/{{Org_id}}\"\r\n }\r\n }\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"MedicationRequest\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:0bd727e0-9791-4272-9093-19d56deb27d1\",\r\n \"resource\": {\r\n \"resourceType\": \"QuestionnaireResponse\",\r\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\r\n \"status\": \"completed\",\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"authored\": \"2023-08-31T03:00:00+00:00\",\r\n \"author\": {\r\n \"reference\": \"Practitioner/10009880728\",\r\n \"display\": \"Apoteker A\"\r\n },\r\n \"source\": {\r\n \"reference\": \"Patient/{{Patient_id}}\"\r\n },\r\n \"item\": [\r\n {\r\n \"linkId\": \"1\",\r\n \"text\": \"Persyaratan Administrasi\",\r\n \"item\": [\r\n {\r\n \"linkId\": \"1.1\",\r\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.2\",\r\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.3\",\r\n \"text\": \"Apakah tanggal resep sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.4\",\r\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2\",\r\n \"text\": \"Persyaratan Farmasetik\",\r\n \"item\": [\r\n {\r\n \"linkId\": \"2.1\",\r\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2.2\",\r\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2.3\",\r\n \"text\": \"Apakah stabilitas obat sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2.4\",\r\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"3\",\r\n \"text\": \"Persyaratan Klinis\",\r\n \"item\": [\r\n {\r\n \"linkId\": \"3.1\",\r\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OV000052\",\r\n \"display\": \"Sesuai\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"3.2\",\r\n \"text\": \"Apakah terdapat duplikasi pengobatan?\",\r\n \"answer\": [\r\n {\r\n \"valueBoolean\": false\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"3.3\",\r\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\",\r\n \"answer\": [\r\n {\r\n \"valueBoolean\": false\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"3.4\",\r\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\",\r\n \"answer\": [\r\n {\r\n \"valueBoolean\": false\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"3.5\",\r\n \"text\": \"Apakah terdapat dampak interaksi obat?\",\r\n \"answer\": [\r\n {\r\n \"valueBoolean\": false\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"4\",\r\n \"text\": \"Resep yang dilakukan pengkajian resep\",\r\n \"answer\": [\r\n {\r\n \"valueReference\": {\r\n \"reference\": \"MedicationRequest/{{MedicationRequest_id}}\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"QuestionnaireResponse\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:3f196140-8b42-4a6e-bb0b-e2ae69bd6750\",\r\n \"resource\": {\r\n \"resourceType\": \"MedicationDispense\",\r\n \"contained\": [\r\n {\r\n \"resourceType\": \"Medication\",\r\n \"id\": \"123456789\",\r\n \"meta\": {\r\n \"profile\": [\r\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\r\n ]\r\n },\r\n \"extension\": [\r\n {\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\r\n \"valueCodeableConcept\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\",\r\n \"code\": \"NC\",\r\n \"display\": \"Non-compound\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"identifier\": [\r\n {\r\n \"use\": \"official\",\r\n \"system\": \"http://sys-ids.kemkes.go.id/medication/{{Org_id}}\",\r\n \"value\": \"123456789\"\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\r\n \"code\": \"93000143\",\r\n \"display\": \"Albendazole 400 mg Tablet Kunyah (HOLI PHARMA)\"\r\n }\r\n ]\r\n },\r\n \"status\": \"active\",\r\n \"manufacturer\": {\r\n \"reference\": \"Organization/90000001\"\r\n },\r\n \"form\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\r\n \"code\": \"BS069\",\r\n \"display\": \"Tablet Kunyah\"\r\n }\r\n ]\r\n },\r\n \"ingredient\": [\r\n {\r\n \"itemCodeableConcept\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\r\n \"code\": \"91000146\",\r\n \"display\": \"ALBENDAZOLE\"\r\n }\r\n ]\r\n },\r\n \"isActive\": true,\r\n \"strength\": {\r\n \"numerator\": {\r\n \"value\": 400,\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"mg\"\r\n },\r\n \"denominator\": {\r\n \"value\": 1,\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\r\n \"code\": \"CHEWTAB\"\r\n }\r\n }\r\n }\r\n ],\r\n \"batch\": {\r\n \"lotNumber\": \"1625042A\",\r\n \"expirationDate\": \"2025-07-22T14:27:00+00:00\"\r\n }\r\n }\r\n ],\r\n \"identifier\": [\r\n {\r\n \"use\": \"official\",\r\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/{{Org_id}}\",\r\n \"value\": \"123456788\"\r\n },\r\n {\r\n \"use\": \"official\",\r\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/{{Org_id}}\",\r\n \"value\": \"123456788-1\"\r\n }\r\n ],\r\n \"status\": \"completed\",\r\n \"category\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\",\r\n \"code\": \"outpatient\",\r\n \"display\": \"Outpatient\"\r\n }\r\n ]\r\n },\r\n \"medicationReference\": {\r\n \"reference\": \"#123456789\",\r\n \"display\": \"{{Medication_Name}}\"\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"context\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\"\r\n },\r\n \"performer\": [\r\n {\r\n \"actor\": {\r\n \"reference\": \"Practitioner/N10000003\",\r\n \"display\": \"Apoteker Miller\"\r\n }\r\n }\r\n ],\r\n \"location\": {\r\n \"reference\": \"Location/{{Location_farmasi_id}}\",\r\n \"display\": \"{{Location_farmasi_Name}}\"\r\n },\r\n \"authorizingPrescription\": [\r\n {\r\n \"reference\": \"MedicationRequest/{{MedicationRequest_id}}\"\r\n }\r\n ],\r\n \"quantity\": {\r\n \"value\": 1,\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\r\n \"code\": \"CHEWTAB\"\r\n },\r\n \"whenPrepared\": \"2023-08-31T03:27:00+00:00\",\r\n \"whenHandedOver\": \"2023-08-31T03:27:00+00:00\",\r\n \"dosageInstruction\": [\r\n {\r\n \"sequence\": 1,\r\n \"additionalInstruction\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"418991002\",\r\n \"display\": \"Sucked or chewed\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"patientInstruction\": \"Albendazole 400 mg single dose\",\r\n \"timing\": {\r\n \"repeat\": {\r\n \"count\": 1\r\n }\r\n },\r\n \"doseAndRate\": [\r\n {\r\n \"type\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\r\n \"code\": \"ordered\",\r\n \"display\": \"Ordered\"\r\n }\r\n ]\r\n },\r\n \"doseQuantity\": {\r\n \"value\": 1,\r\n \"unit\": \"CHEWTAB\",\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\r\n \"code\": \"CHEWTAB\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"MedicationDispense\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:1f68d089-337a-417d-9591-39f1c3c0e770\",\r\n \"resource\": {\r\n \"resourceType\": \"ServiceRequest\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\r\n \"value\": \"00001\"\r\n }\r\n ],\r\n \"status\": \"active\",\r\n \"intent\": \"original-order\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"3457005\",\r\n \"display\": \"Patient referral\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"priority\": \"routine\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"185389009\",\r\n \"display\": \"Follow-up visit\"\r\n }\r\n ],\r\n \"text\": \"Kontrol rutin regimen TB bulan ke-2\"\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} di hari Kamis, 31 Agustus 2023\"\r\n },\r\n \"occurrenceDateTime\": \"2023-08-31T04:25:00+00:00\",\r\n \"authoredOn\": \"2023-08-31T04:25:00+00:00\",\r\n \"requester\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/N10000005\",\r\n \"display\": \"Fatma\"\r\n }\r\n ],\r\n \"locationCode\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\r\n \"code\": \"OF\",\r\n \"display\": \"Outpatient Facility\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"locationReference\": [\r\n {\r\n \"reference\": \"Location/{{Location_Poli_id}}\",\r\n \"display\": \"{{Location_Poli_Name}}\"\r\n }\r\n ],\r\n \"reasonCode\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\r\n \"code\": \"A15.0\",\r\n \"display\": \"Tuberculosis of lung, confirmed by sputum microscopy with or without culture\"\r\n }\r\n ],\r\n \"text\": \"Kontrol rutin bulanan\"\r\n }\r\n ],\r\n \"patientInstruction\": \"Kontrol setelah 1 bulan minum obat anti tuberkulosis. Dalam keadaan darurat dapat menghubungi hotlineFasyankesdi nomor 14045\"\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"ServiceRequest\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:c5d0bd5c-5af4-4ca4-87a0-cc9695797265\",\r\n \"resource\": {\r\n \"resourceType\": \"Condition\",\r\n \"clinicalStatus\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\r\n \"code\": \"active\",\r\n \"display\": \"Active\"\r\n }\r\n ]\r\n },\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\r\n \"code\": \"problem-list-item\",\r\n \"display\": \"Problem List Item\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"359746009\",\r\n \"display\": \"Patient's condition stable\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"Encounter/{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} di hari Kamis, 31 Agustus 2023\"\r\n }\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Condition\"\r\n }\r\n }\r\n ]\r\n}\r\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"response": [
{
"name": "Bundle - Tumbuh Kembang",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Bundle\",\r\n \"type\": \"transaction\",\r\n \"entry\": [\r\n {\r\n \"fullUrl\": \"urn:uuid:{{Encounter_id}}\",\r\n \"resource\": {\r\n \"resourceType\": \"Encounter\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\r\n \"value\": \"{{Encounter_Registration_ID}}\"\r\n }\r\n ],\r\n \"status\": \"finished\",\r\n \"statusHistory\": [\r\n {\r\n \"status\": \"arrived\",\r\n \"period\": {\r\n \"start\": \"2023-08-31T00:00:00+00:00\",\r\n \"end\": \"2023-08-31T01:00:00+00:00\"\r\n }\r\n },\r\n {\r\n \"status\": \"in-progress\",\r\n \"period\": {\r\n \"start\": \"2023-08-31T01:00:00+00:00\",\r\n \"end\": \"2023-08-31T04:05:00+00:00\"\r\n }\r\n },\r\n {\r\n \"status\": \"finished\",\r\n \"period\": {\r\n \"start\": \"2023-08-31T04:05:00+00:00\",\r\n \"end\": \"2023-08-31T04:10:00+00:00\"\r\n }\r\n }\r\n ],\r\n \"class\": {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\r\n \"code\": \"AMB\",\r\n \"display\": \"ambulatory\"\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"participant\": [\r\n {\r\n \"type\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\",\r\n \"code\": \"ATND\",\r\n \"display\": \"attender\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"individual\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n }\r\n ],\r\n \"period\": {\r\n \"start\": \"2023-08-31T00:00:00+00:00\",\r\n \"end\": \"2023-08-31T04:10:00+00:00\"\r\n },\r\n \"diagnosis\": [\r\n {\r\n \"condition\": {\r\n \"reference\": \"urn:uuid:{{Diagnosis_Primer}}\",\r\n \"display\": \"{{DiagnosisPrimer_Text}}\"\r\n },\r\n \"use\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\r\n \"code\": \"DD\",\r\n \"display\": \"Discharge diagnosis\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"hospitalization\": {\r\n \"dischargeDisposition\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/discharge-disposition\",\r\n \"code\": \"home\",\r\n \"display\": \"Home\"\r\n }\r\n ],\r\n \"text\": \"Anjuran dokter untuk pulang dan kontrol kembali 1 bulan setelah minum obat\"\r\n }\r\n },\r\n \"location\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"extension\": [\r\n {\r\n \"url\": \"value\",\r\n \"valueCodeableConcept\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationServiceClass-Outpatient\",\r\n \"code\": \"reguler\",\r\n \"display\": \"Kelas Reguler\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"url\": \"upgradeClassIndicator\",\r\n \"valueCodeableConcept\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/locationUpgradeClass\",\r\n \"code\": \"kelas-tetap\",\r\n \"display\": \"Kelas Tetap Perawatan\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ServiceClass\"\r\n }\r\n ],\r\n \"location\": {\r\n \"reference\": \"Location/{{Location_Poli_id}}\",\r\n \"display\": \"{{Location_Poli_Name}}\"\r\n },\r\n \"period\": {\r\n \"start\": \"2023-08-31T00:00:00+00:00\"\r\n }\r\n }\r\n ],\r\n \"serviceProvider\": {\r\n \"reference\": \"Organization/{{Org_id}}\"\r\n }\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Encounter\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{Keluhan_Utama}}\",\r\n \"resource\": {\r\n \"resourceType\": \"Condition\",\r\n \"clinicalStatus\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\r\n \"code\": \"active\",\r\n \"display\": \"Active\"\r\n }\r\n ]\r\n },\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\r\n \"code\": \"problem-list-item\",\r\n \"display\": \"Problem List Item\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"267095009\",\r\n \"display\": \"Speech Problem\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\"\r\n },\r\n \"onsetDateTime\": \"2023-02-02T00:00:00+00:00\",\r\n \"recordedDate\": \"2023-08-31T01:00:00+00:00\",\r\n \"recorder\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"note\": [\r\n {\r\n \"text\": \"Kesulitan bicara sejak lahir\"\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Condition\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{Antrop_BB}}\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009712\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"vital-signs\",\r\n \"display\": \"Vital Signs\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://loinc.org\",\r\n \"code\": \"29463-7\",\r\n \"display\": \"Body weight\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:02:00+00:00\",\r\n \"issued\": \"2023-09-02T00:02:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": 15,\r\n \"unit\": \"kg\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"kg\"\r\n }\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{Antrop_KenaikanBB}}\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009713\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"exam\",\r\n \"display\": \"Exam\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OC000012\",\r\n \"display\": \"Kenaikan Berat Badan Adekuat\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:03:00+00:00\",\r\n \"issued\": \"2023-09-02T00:03:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueBoolean\": false\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{Antrop_TB}}\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009717\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"vital-signs\",\r\n \"display\": \"Vital Signs\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://loinc.org\",\r\n \"code\": \"8302-2\",\r\n \"display\": \"Body height\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:07:00+00:00\",\r\n \"issued\": \"2023-09-02T00:07:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": 80,\r\n \"unit\": \"cm\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"cm\"\r\n }\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{Antrop_LiLA}}\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009730\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"exam\",\r\n \"display\": \"Exam\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"284473002\",\r\n \"display\": \"Mid upper arm circumference\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:20:00+00:00\",\r\n \"issued\": \"2023-09-02T00:20:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": 14,\r\n \"unit\": \"cm\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"cm\"\r\n },\r\n \"interpretation\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\r\n \"code\": \"N\",\r\n \"display\": \"Normal\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{Antrop_BBU}}\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009715\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"exam\",\r\n \"display\": \"Exam\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"1153593003\",\r\n \"display\": \"Weight for age z-score\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:05:00+00:00\",\r\n \"issued\": \"2023-09-02T00:05:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": -2,\r\n \"unit\": \"{Zscore}\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"{Zscore}\"\r\n },\r\n \"interpretation\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"43664005\",\r\n \"display\": \"Normal weight\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{Antrop_TBU}}\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009720\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"exam\",\r\n \"display\": \"Exam\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"1153590000\",\r\n \"display\": \"Length for age z score\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:10:00+00:00\",\r\n \"issued\": \"2023-09-02T00:10:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": -2.5,\r\n \"unit\": \"{Zscore}\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"{Zscore}\"\r\n },\r\n \"interpretation\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"444000005\",\r\n \"display\": \"Short stature for age\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{Antrop_BBTB}}\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009721\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"exam\",\r\n \"display\": \"Exam\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"1153600001\",\r\n \"display\": \"Weight for height z-score\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T00:11:00+00:00\",\r\n \"issued\": \"2023-09-02T00:11:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueQuantity\": {\r\n \"value\": -2.5,\r\n \"unit\": \"{Zscore}\",\r\n \"system\": \"http://unitsofmeasure.org\",\r\n \"code\": \"{Zscore}\"\r\n },\r\n \"interpretation\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"248325000\",\r\n \"display\": \"Undernourished\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{QuestResp_SDIDTK}}\",\r\n \"resource\": {\r\n \"resourceType\": \"QuestionnaireResponse\",\r\n \"identifier\": {\r\n \"system\": \"http://sys-ids.kemkes.go.id/QuestionnaireResponse/{{Org_id}}\",\r\n \"value\": \"202403A0004275\"\r\n },\r\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0003\",\r\n \"status\": \"completed\",\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"authored\": \"2023-09-02T00:05:00+00:00\",\r\n \"author\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"source\": {\r\n \"reference\": \"RelatedPerson/{{RelatedPerson_id}}\",\r\n \"display\": \"Orang Tua Pasien\"\r\n },\r\n \"item\": [\r\n {\r\n \"linkId\": \"1\",\r\n \"text\": \"Stimulasi, Deteksi, dan Intervensi Dini Tumbuh Kembang (SDIDTK)\",\r\n \"item\": [\r\n {\r\n \"linkId\": \"1.1\",\r\n \"text\": \"Apakah diperiksa SDIDTK?\",\r\n \"answer\": [\r\n {\r\n \"valueBoolean\": true\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.2\",\r\n \"text\": \"Kuesioner Pra Skrining (KPSP)\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/Codesystem/kpsp\",\r\n \"code\": \"Dm\",\r\n \"display\": \"Perkembangan meragukan\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.3\",\r\n \"text\": \"Tes Daya Dengar (TDD)\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"410519009\",\r\n \"display\": \"At risk\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.4\",\r\n \"text\": \"Tes Daya Lihat (TDL)\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"410519009\",\r\n \"display\": \"At risk\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.5\",\r\n \"text\": \"Kuesioner Masalah Perilaku dan Emosional (KMPE)\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"410519009\",\r\n \"display\": \"At risk\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.6\",\r\n \"text\": \"Autisme (M-CHAT-REVISED)\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"410519009\",\r\n \"display\": \"At risk\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"1.7\",\r\n \"text\": \"GPPH (Gangguan Pemusatan Perhatian dan Hiperaktivitas)\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"410519009\",\r\n \"display\": \"At risk\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"QuestionnaireResponse\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{Riwayat_ASIEksklusif}}\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009756\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"survey\",\r\n \"display\": \"Survey\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"1145307003\",\r\n \"display\": \"Exclusively breastfed\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T01:12:00+00:00\",\r\n \"issued\": \"2023-09-02T01:12:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueBoolean\": true\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{Riwayat_MPASI}}\",\r\n \"resource\": {\r\n \"resourceType\": \"Observation\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\r\n \"value\": \"202403A0009757\"\r\n }\r\n ],\r\n \"status\": \"final\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\r\n \"code\": \"survey\",\r\n \"display\": \"Survey\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OC000009\",\r\n \"display\": \"Makanan Pendamping ASI (MPASI)\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"effectiveDateTime\": \"2023-09-02T01:13:00+00:00\",\r\n \"issued\": \"2023-09-02T01:13:00+00:00\",\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"valueBoolean\": false\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Observation\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{Status_Lainnya}}\",\r\n \"resource\": {\r\n \"resourceType\": \"QuestionnaireResponse\",\r\n \"identifier\": {\r\n \"system\": \"http://sys-ids.kemkes.go.id/QuestionnaireResponse/{{Org_id}}\",\r\n \"value\": \"202403A0004278\"\r\n },\r\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0003\",\r\n \"status\": \"completed\",\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} pada tanggal 02 Sep 2023\"\r\n },\r\n \"authored\": \"2023-09-02T00:12:00+00:00\",\r\n \"author\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"source\": {\r\n \"reference\": \"RelatedPerson/{{RelatedPerson_id}}\",\r\n \"display\": \"Orang Tua Pasien\"\r\n },\r\n \"item\": [\r\n {\r\n \"linkId\": \"2\",\r\n \"text\": \"Lainnya\",\r\n \"item\": [\r\n {\r\n \"linkId\": \"2.1\",\r\n \"text\": \"Status Pertumbuhan\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OI000017\",\r\n \"display\": \"Tidak Sesuai Usia\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2.2\",\r\n \"text\": \"Status Perkembangan\",\r\n \"answer\": [\r\n {\r\n \"valueCoding\": {\r\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\r\n \"code\": \"OI000017\",\r\n \"display\": \"Tidak Sesuai Usia\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"linkId\": \"2.3\",\r\n \"text\": \"Keterangan Tambahan\",\r\n \"answer\": [\r\n {\r\n \"valueString\": \"Anak memiliki masalah dalam bersosialisasi\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"QuestionnaireResponse\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{Diagnosis_Primer}}\",\r\n \"resource\": {\r\n \"resourceType\": \"Condition\",\r\n \"clinicalStatus\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\r\n \"code\": \"active\",\r\n \"display\": \"Active\"\r\n }\r\n ]\r\n },\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\r\n \"code\": \"encounter-diagnosis\",\r\n \"display\": \"Encounter Diagnosis\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\r\n \"code\": \"R62.9\",\r\n \"display\": \"Lack of expected normal physiologic development unspecified\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\"\r\n },\r\n \"onsetDateTime\": \"2023-08-31T04:10:00+00:00\",\r\n \"recordedDate\": \"2023-08-31T04:10:00+00:00\"\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Condition\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{Procedure_Counselling}}\",\r\n \"resource\": {\r\n \"resourceType\": \"Procedure\",\r\n \"status\": \"completed\",\r\n \"category\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"409063005\",\r\n \"display\": \"Counselling\"\r\n }\r\n ],\r\n \"text\": \"Counselling\"\r\n },\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\r\n \"code\": \"94.4\",\r\n \"display\": \"Other psychotherapy and counselling\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\",\r\n \"display\": \"Konseling {{Patient_Name}} pada Selasa tanggal 31 Agustus 2023\"\r\n },\r\n \"performedPeriod\": {\r\n \"start\": \"2023-08-31T02:27:00+00:00\",\r\n \"end\": \"2023-08-31T02:27:00+00:00\"\r\n },\r\n \"performer\": [\r\n {\r\n \"actor\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n }\r\n ],\r\n \"reasonCode\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\r\n \"code\": \"A15.0\",\r\n \"display\": \"Tuberculosis of lung, confirmed by sputum microscopy with or without culture\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"note\": [\r\n {\r\n \"text\": \"Konseling keresahan pasien karena diagnosis TB\"\r\n }\r\n ]\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Procedure\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{ServiceRequest_RTL}}\",\r\n \"resource\": {\r\n \"resourceType\": \"ServiceRequest\",\r\n \"identifier\": [\r\n {\r\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\r\n \"value\": \"00001\"\r\n }\r\n ],\r\n \"status\": \"active\",\r\n \"intent\": \"original-order\",\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"306098008\",\r\n \"display\": \"Self-referral\"\r\n }\r\n ]\r\n },\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"11429006\",\r\n \"display\": \"Consultation\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"priority\": \"routine\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"185389009\",\r\n \"display\": \"Follow-up visit\"\r\n }\r\n ],\r\n \"text\": \"Kontrol rutin regimen TB bulan ke-2\"\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} di hari Kamis, 31 Agustus 2023\"\r\n },\r\n \"occurrenceDateTime\": \"2023-08-31T04:25:00+00:00\",\r\n \"authoredOn\": \"2023-08-31T04:25:00+00:00\",\r\n \"requester\": {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n },\r\n \"performer\": [\r\n {\r\n \"reference\": \"Practitioner/N10000005\",\r\n \"display\": \"Fatma\"\r\n }\r\n ],\r\n \"locationCode\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\r\n \"code\": \"OF\",\r\n \"display\": \"Outpatient Facility\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"locationReference\": [\r\n {\r\n \"reference\": \"Location/{{Location_Poli_id}}\",\r\n \"display\": \"{{Location_Poli_Name}}\"\r\n }\r\n ],\r\n \"reasonCode\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\r\n \"code\": \"A15.0\",\r\n \"display\": \"Tuberculosis of lung, confirmed by sputum microscopy with or without culture\"\r\n }\r\n ],\r\n \"text\": \"Kontrol rutin bulanan\"\r\n }\r\n ],\r\n \"patientInstruction\": \"Kontrol setelah 1 bulan minum obat anti tuberkulosis. Dalam keadaan darurat dapat menghubungi hotlineFasyankesdi nomor 14045\"\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"ServiceRequest\"\r\n }\r\n },\r\n {\r\n \"fullUrl\": \"urn:uuid:{{Condition_Stabil}}\",\r\n \"resource\": {\r\n \"resourceType\": \"Condition\",\r\n \"clinicalStatus\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\r\n \"code\": \"active\",\r\n \"display\": \"Active\"\r\n }\r\n ]\r\n },\r\n \"category\": [\r\n {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\r\n \"code\": \"problem-list-item\",\r\n \"display\": \"Problem List Item\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://snomed.info/sct\",\r\n \"code\": \"359746009\",\r\n \"display\": \"Patient's condition stable\"\r\n }\r\n ]\r\n },\r\n \"subject\": {\r\n \"reference\": \"Patient/{{Patient_id}}\",\r\n \"display\": \"{{Patient_Name}}\"\r\n },\r\n \"encounter\": {\r\n \"reference\": \"urn:uuid:{{Encounter_id}}\",\r\n \"display\": \"Kunjungan {{Patient_Name}} di hari Kamis, 31 Agustus 2023\"\r\n }\r\n },\r\n \"request\": {\r\n \"method\": \"POST\",\r\n \"url\": \"Condition\"\r\n }\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Fri, 14 Jun 2024 07:08:58 GMT"
},
{
"key": "content-length",
"value": "6273"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "59f04f17-5e35-418f-9dc2-85cb6cb2e0b9"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains"
},
{
"key": "Referrer-Policy",
"value": "strict-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=(), browsing-topics=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' http: https: data: blob: 'unsafe-inline'"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"entry\": [\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/6a89ba2a-b40d-439d-a7ca-10762e01d316/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Encounter\",\n \"resourceID\": \"6a89ba2a-b40d-439d-a7ca-10762e01d316\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/8c21645f-9f08-4473-bd03-6bfb997b0b0b/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"8c21645f-9f08-4473-bd03-6bfb997b0b0b\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/11402dcb-6981-44d0-9ef8-24462746639e/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"11402dcb-6981-44d0-9ef8-24462746639e\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/cc62cf5b-cf91-4182-9021-3467ccc495c8/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"cc62cf5b-cf91-4182-9021-3467ccc495c8\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/bc5ed64c-4855-4d49-8fe8-0a74ab3a6e7b/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"bc5ed64c-4855-4d49-8fe8-0a74ab3a6e7b\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/a2be2c94-f62c-41d4-8189-1a54ae4b157d/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"a2be2c94-f62c-41d4-8189-1a54ae4b157d\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/69d1eacb-5d4d-4fe2-8756-c5ae26b36830/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"69d1eacb-5d4d-4fe2-8756-c5ae26b36830\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/07c214a5-e3b1-4a7a-a0c0-b0e476467853/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"07c214a5-e3b1-4a7a-a0c0-b0e476467853\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/48da903c-5f60-4a54-9a5b-1a5c0d21faf7/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"48da903c-5f60-4a54-9a5b-1a5c0d21faf7\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/QuestionnaireResponse/cff72eba-046a-4462-a166-435944190294/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"resourceID\": \"cff72eba-046a-4462-a166-435944190294\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/8d3bab8f-6eb6-4df4-9d92-cd6cff2ac7a0/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"8d3bab8f-6eb6-4df4-9d92-cd6cff2ac7a0\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/4652ad49-6d1c-40c4-8b8a-87934a46037e/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"4652ad49-6d1c-40c4-8b8a-87934a46037e\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/QuestionnaireResponse/617c585b-ee06-46c7-b010-70acbf61c33c/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"resourceID\": \"617c585b-ee06-46c7-b010-70acbf61c33c\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/8edcbe85-b368-4e99-848f-912b3505161e/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"8edcbe85-b368-4e99-848f-912b3505161e\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/025c0131-1e8f-443e-b661-db7ce4ab57b5/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"025c0131-1e8f-443e-b661-db7ce4ab57b5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ServiceRequest/401e01b2-2508-4965-ab7d-44120aa0a00c/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"ServiceRequest\",\n \"resourceID\": \"401e01b2-2508-4965-ab7d-44120aa0a00c\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxODM0ODkzODc4OTQxNjAwMA\\\"\",\n \"lastModified\": \"2024-06-14T07:08:58.789416+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/07c6cdd9-f05c-4a83-b8b7-dcd52136e7d8/_history/MTcxODM0ODkzODc4OTQxNjAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"07c6cdd9-f05c-4a83-b8b7-dcd52136e7d8\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction-response\",\n \"total\": 17\n}"
}
]
}
],
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
},
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
}
],
"variable": [
{
"key": "Location_farmasi_id",
"value": "29ec0c7d-580d-46bd-b6ee-db9894284ea2"
},
{
"key": "Location_farmasi_Name",
"value": "Ruang Apotek"
},
{
"key": "Location_Poli_id",
"value": "a6eaafcb-76d0-4a78-afee-96cff6663388"
},
{
"key": "Location_Poli_Name",
"value": "Ruang Poli Tumbuh Kembang"
},
{
"key": "Patient_id",
"value": "P00883356749"
},
{
"key": "Patient_Name",
"value": "patient 8"
},
{
"key": "Practitioner_id",
"value": "N10000001"
},
{
"key": "Practitioner_Name",
"value": "Dr. dr. Voigt, MARS."
},
{
"key": "RelatedPerson_id",
"value": "25a7f210-94de-4f68-8f6c-4005fdd2447f"
},
{
"key": "Encounter_id",
"value": "a83c705e-f6fc-4fb2-8894-e5b4b3ad860b"
},
{
"key": "ServiceRequest_BTA",
"value": "b347ea5a-3f0b-4c1c-ac0c-e8f22e87de9e"
},
{
"key": "Specimen_BTA",
"value": "3c0dfc92-2ba0-4d77-82dd-00eaa0735f4f"
},
{
"key": "Observation_BTA",
"value": "f590c250-b0a5-4b6e-a5e9-5b375bec4b28"
},
{
"key": "ServiceRequest_Rad",
"value": "876bbb7e-c3cb-4f7e-9d78-80dbd900e460"
},
{
"key": "Observation_Rad",
"value": "d79d769d-f288-422c-b67b-11190268b387"
},
{
"key": "ImagingStudy_id",
"value": "354e1828-b094-493a-b393-2c18a28476ea"
},
{
"key": "Diagnosis_Primer",
"value": "63f5ac10-8759-4f6f-9805-66cb56486b47"
},
{
"key": "DiagnosisPrimer_Text",
"value": "Lack of expected normal physiologic development unspecified"
},
{
"key": "Diagnosis_Sekunder",
"value": "76ebf0ca-43cf-457e-b99d-1aa73d426eba"
},
{
"key": "DiagnosisSekunder_Text",
"value": "Primary respiratory tuberculosis, confirmed bacteriologically and histologically"
},
{
"key": "Medication_ForRequest",
"value": "2ba7c3a0-c43b-4cc9-8fce-f8ade49c9db5"
},
{
"key": "Medication_Name",
"value": "Albendazole 400 mg Tablet Kunyah (HOLI PHARMA)"
},
{
"key": "MedicationRequest_id",
"value": "b4ff13f9-beb1-478c-aa25-25777c57dbcd"
},
{
"key": "Medication_ForDispense",
"value": "f3641318-402e-4b22-8aa5-f2c6096a2bbf"
},
{
"key": "Keluhan_Utama",
"value": "2ed19c05-5ae5-4237-a861-d9103d3a00c6"
},
{
"key": "Antrop_BB",
"value": "7bf0253d-b081-4bea-ad14-9306f7db5ec7"
},
{
"key": "Antrop_KenaikanBB",
"value": "fe6bbb2a-37b7-42e2-87fa-c69b7b49cb08"
},
{
"key": "Antrop_TB",
"value": "bda2cd5c-c714-4580-b0c5-16dee160e581"
},
{
"key": "Antrop_LiLA",
"value": "64120b65-2203-4210-bb67-a6983ee8dc19"
},
{
"key": "Antrop_BBU",
"value": "a173a2a9-e6b9-4edb-aa0e-b801fdadfb45"
},
{
"key": "Antrop_TBU",
"value": "3ee57e46-ab8a-434d-a067-411f35f31f10"
},
{
"key": "Antrop_BBTB",
"value": "903ddf40-c1b6-4bc9-99fe-af45ea1fa050"
},
{
"key": "QuestResp_SDIDTK",
"value": "e3ab7952-f7aa-488b-8eff-63f7d2b24971"
},
{
"key": "Riwayat_ASIEksklusif",
"value": "81ad846a-35c7-4772-ab99-aae408d844da"
},
{
"key": "Riwayat_MPASI",
"value": "874fb751-2315-4979-9e48-fdcec16707c7"
},
{
"key": "Status_Lainnya",
"value": "2e742b30-3146-4e46-8707-8cd05ff4fb38"
},
{
"key": "Procedure_Counselling",
"value": "96b3ea61-1bf4-4ba1-a5f9-dd1c8ff7983f"
},
{
"key": "ServiceRequest_RTL",
"value": "cdad5ee9-b087-40fd-a279-89aa943c08b1"
},
{
"key": "Condition_Stabil",
"value": "b6c7967f-7fe0-4629-a783-549f345b4e4a"
},
{
"key": "Registration_ID",
"value": ""
},
{
"key": "Org_list",
"value": ""
},
{
"key": "Suborg_id",
"value": "f9b5f84b-cd44-4944-9066-1e4d5b4601f2"
},
{
"key": "Org_Poli",
"value": ""
},
{
"key": "Org_Farmasi",
"value": ""
},
{
"key": "Rad_SRID_CXR",
"value": ""
},
{
"key": "ACSN",
"value": ""
},
{
"key": "null",
"value": ""
},
{
"key": "ServiceRequest_Kontrol",
"value": ""
}
]
}