{
"info": {
"_postman_id": "c06db67f-3088-486c-aea7-bdca289b7796",
"name": "21. Use Case - Registrasi Jantung",
"description": "For **complete repository for all SATUSEHAT use-cases** please access our public workspaces : [Postman Workspaces](https://s.id/PostmanSATUSEHAT)\n\nFor **detailed SATUSEHAT use-cases import link** please see : [Postman Public Kemkes Link](https://link.kemkes.go.id/PostmanSATUSEHAT)\n\nAny information about SATUSEHAT FHIR Profile could be accessed through [Simplifier FHIR Profile](https://simplifier.net/guide/SATUSEHAT-FHIR-R4-Implementation-Guide/Home/FHIRProfiles?version=current)\n\n| **Folder History** | **Editor** | **Date** |\n| --- | --- | --- |\n| Versi Pertama - API sesuai dengan Playbook Registrasi Jantung V1.1 | Anisatul Afifah
Thomas Chaidir | 16 Jul 2024 |\n| Versi Kedua - API sesuai dengan Playbook Registrasi Jantung V1.2 | Anisatul Afifah
Thomas Chaidir | 09 Aug 2024 |\n| Versi Kedua - API sesuai dengan Playbook Registrasi Jantung V1.3 | Anisatul Afifah
Thomas Chaidir | 06 Sep 2024 |",
"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/maukx58/21-use-case-registrasi-jantung?action=share&source=collection_link&creator=20686328"
},
"item": [
{
"name": "O-Auth2",
"item": [
{
"name": "Generate Token",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
},
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.environment.set(\"token\", data.access_token);"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "client_id",
"value": "{{client_id}}",
"description": "Client ID SATUSEHAT yang diberikan kepada sesuai organisasi anda",
"type": "text"
},
{
"key": "client_secret",
"value": "{{client_secret}}",
"description": "Client Secret SATUSEHAT yang diberikan kepada organisasi anda",
"type": "text"
}
]
},
"url": {
"raw": "{{auth_url}}/accesstoken?grant_type=client_credentials",
"host": [
"{{auth_url}}"
],
"path": [
"accesstoken"
],
"query": [
{
"key": "grant_type",
"value": "client_credentials"
}
]
},
"description": "Mekanisme untuk meng-_generate_ **client token** untuk API O-Auth2 SATUSEHAT. Setiap client token hanya berlaku (valid) dalam kurun waktu 60 menit dan setiap kegagalan request generate token akan dikenakan penalti untuk menunggu selama 1 menit."
},
"response": []
},
{
"name": "Generate Token",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
},
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.environment.set(\"token\", data.access_token);"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "client_id",
"value": "{{client_id}}",
"description": "Client ID SATUSEHAT yang diberikan kepada sesuai organisasi anda",
"type": "text"
},
{
"key": "client_secret",
"value": "{{client_secret}}",
"description": "Client Secret SATUSEHAT yang diberikan kepada organisasi anda",
"type": "text"
}
]
},
"url": {
"raw": "{{auth_url}}/accesstoken?grant_type=client_credentials",
"host": [
"{{auth_url}}"
],
"path": [
"accesstoken"
],
"query": [
{
"key": "grant_type",
"value": "client_credentials"
}
]
},
"description": "Mekanisme untuk meng-_generate_ **client token** untuk API O-Auth2 SATUSEHAT. Setiap client token hanya berlaku (valid) dalam kurun waktu 60 menit dan setiap kegagalan request generate token akan dikenakan penalti untuk menunggu selama 1 menit."
},
"response": []
}
]
},
{
"name": "Variabel Tambahan untuk Registrasi Jantung",
"item": [
{
"name": "EpisodeOfCare",
"item": [
{
"name": "EpisodeOfCare - Create Saat Pertama Kali Terdiagnosis Hipertensi dan Carta Prediksi Risiko PTM Moderate/High",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"EpisodeOfCare\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/{{Org_id}}\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"status\": \"waitlist\",\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\",\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
]
}
},
"response": [
{
"name": "EpisodeOfCare - Create Saat Pertama Kali Terdiagnosis Hipertensi dan Carta Prediksi Risiko PTM Moderate/High",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"EpisodeOfCare\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/{{Org_id}}\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"status\": \"waitlist\",\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\",\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:19:23 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1Njc2MzA4OTQ1OTAwMA\""
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8/_history/MTcxNTY1Njc2MzA4OTQ1OTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:19:23 GMT"
},
{
"key": "content-length",
"value": "726"
},
{
"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": "a4e0eb35-99c6-4ca5-8d3d-3203ad3af515"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:23.089459+00:00\",\n \"versionId\": \"MTcxNTY1Njc2MzA4OTQ1OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "EpisodeOfCare - GET No Surveilans Jantung by UUID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8"
}
]
}
},
"response": [
{
"name": "EpisodeOfCare - GET No Surveilans Jantung by UUID",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:19:24 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1Njc2NDkwNDU0NzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:35:29 GMT"
},
{
"key": "content-length",
"value": "824"
},
{
"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": "156e8189-69bd-448e-a53a-90df33d1db78"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist (Get EOC dari any organization)",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist (Get EOC dari any organization)",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
}
]
}
},
"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, 14 May 2024 03:43:51 GMT"
},
{
"key": "content-length",
"value": "1460"
},
{
"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": "5d5f547e-0c85-48d0-b824-cc42504037e0"
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"resource\": {\n \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist dan organization org_id faskes (Get EOC dari faskes sendiri)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var id = bundle.entry[0].resource.id;\r",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist&organization=10000005",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
},
{
"key": "organization",
"value": "10000005",
"description": "input your Org_id here"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist dan organization org_id faskes (Get EOC dari faskes sendiri)",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist&organization=10000005",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
},
{
"key": "organization",
"value": "10000005",
"description": "input your Org_id here"
}
]
}
},
"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, 14 May 2024 03:52:27 GMT"
},
{
"key": "content-length",
"value": "572"
},
{
"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": "93d5f06d-2638-4003-8a61-806892e2e820"
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"resource\": {\n \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "EpisodeOfCare - PATCH Status Active",
"request": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/status\",\r\n \"value\": \"active\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/0/period/end\",\r\n \"value\": \"2024-03-15T03:13:00+00:00\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/1\",\r\n \"value\": {\r\n \"status\": \"active\",\r\n \"period\": {\r\n \"start\": \"2024-03-15T03:13:00+00:00\"\r\n }\r\n }\r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"response": [
{
"name": "EpisodeOfCare - PATCH Status Active",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/status\",\r\n \"value\": \"active\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/0/period/end\",\r\n \"value\": \"2024-03-15T03:13:00+00:00\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/1\",\r\n \"value\": {\r\n \"status\": \"active\",\r\n \"period\": {\r\n \"start\": \"2024-03-15T03:13:00+00:00\"\r\n }\r\n }\r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY2MTE5ODI5OTk3MDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8/_history/MTcxNTY2MTE5ODI5OTk3MDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 04:33:18 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 04:33:18 GMT"
},
{
"key": "content-length",
"value": "515"
},
{
"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": "85b3a341-edfc-4914-b84a-d114d2f49fd5"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T04:33:18.299970+00:00\",\n \"versionId\": \"MTcxNTY2MTE5ODI5OTk3MDAwMA\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n }\n ]\n}"
}
]
},
{
"name": "EpisodeOfCare - GET No Registri Jantung by UUID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"response": [
{
"name": "EpisodeOfCare - GET No Registri Jantung by UUID",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNTY2MTE5ODI5OTk3MDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 04:33:18 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 04:35:04 GMT"
},
{
"key": "content-length",
"value": "1156"
},
{
"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": "1b7b8d9a-8e12-4285-a3f0-6e9ebec91ede"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/registry-id/\",\n \"value\": \"CADC20243000000002\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T04:33:18.299970+00:00\",\n \"versionId\": \"MTcxNTY2MTE5ODI5OTk3MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active (Get EOC dari any organization)",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active (Get EOC dari any organization)",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
}
]
}
},
"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, 14 May 2024 03:43:51 GMT"
},
{
"key": "content-length",
"value": "1460"
},
{
"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": "5d5f547e-0c85-48d0-b824-cc42504037e0"
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"resource\": {\n \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/registry-id/\",\n \"value\": \"CADC20243000000002\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active dan organization org_id faskes (Get EOC dari faskes sendiri)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var id = bundle.entry[0].resource.id;\r",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active&organization=10000005",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
},
{
"key": "organization",
"value": "10000005",
"description": "input your Org_id here"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active organization org_id faskes (Get EOC dari faskes sendiri)",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active&organization=10000005",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
},
{
"key": "organization",
"value": "10000005",
"description": "input your Org_id here"
}
]
}
},
"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, 14 May 2024 03:52:27 GMT"
},
{
"key": "content-length",
"value": "572"
},
{
"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": "93d5f06d-2638-4003-8a61-806892e2e820"
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"resource\": {\n \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/registry-id/\",\n \"value\": \"CADC20243000000002\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "EpisodeOfCare - PATCH Status Finished",
"request": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/status\",\r\n \"value\": \"finished\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/1/period/end\",\r\n \"value\": \"2024-04-19T01:30:00+00:00\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/2\",\r\n \"value\": {\r\n \"status\": \"finished\",\r\n \"period\": {\r\n \"start\": \"2024-04-19T01:30:00+00:00\",\r\n \"end\": \"2024-04-19T01:30:00+00:00\"\r\n }\r\n }\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/period/end\",\r\n \"value\": \"2024-04-19T01:30:00+00:00\"\r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"response": [
{
"name": "EpisodeOfCare - PATCH Status Finished",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/status\",\r\n \"value\": \"finished\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/1/period/end\",\r\n \"value\": \"2024-04-19T01:30:00+00:00\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/2\",\r\n \"value\": {\r\n \"status\": \"finished\",\r\n \"period\": {\r\n \"start\": \"2024-04-19T01:30:00+00:00\",\r\n \"end\": \"2024-04-19T01:30:00+00:00\"\r\n }\r\n }\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/period/end\",\r\n \"value\": \"2024-04-19T01:30:00+00:00\"\r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNjE3NTkzNzMzNDQyODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8/_history/MTcxNjE3NTkzNzMzNDQyODAwMA"
},
{
"key": "last-modified",
"value": "Mon, 20 May 2024 03:32:17 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Mon, 20 May 2024 03:32:17 GMT"
},
{
"key": "content-length",
"value": "891"
},
{
"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": "9b43be09-35cf-45ad-acce-024cbca862e8"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-20T03:32:17.334428+00:00\",\n \"versionId\": \"MTcxNjE3NTkzNzMzNDQyODAwMA\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"finished\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"end\": \"2024-04-19T01:30:00+00:00\",\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n },\n {\n \"period\": {\n \"end\": \"2024-04-19T01:30:00+00:00\",\n \"start\": \"2024-04-19T01:30:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ]\n}"
}
]
},
{
"name": "EpisodeOfCare - GET No Registri Jantung by UUID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"response": [
{
"name": "EpisodeOfCare - GET No Registri Jantung by UUID",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNTY2MTE5ODI5OTk3MDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 04:33:18 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 04:35:04 GMT"
},
{
"key": "content-length",
"value": "1156"
},
{
"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": "1b7b8d9a-8e12-4285-a3f0-6e9ebec91ede"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/registry-id/\",\n \"value\": \"CADC20243000000002\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T04:33:18.299970+00:00\",\n \"versionId\": \"MTcxNTY2MTE5ODI5OTk3MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "EpisodeOfCare - GET No Surveilans Jantung by UUID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8"
}
]
}
},
"response": [
{
"name": "EpisodeOfCare - GET No Surveilans Jantung by UUID",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:19:24 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1Njc2NDkwNDU0NzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:35:29 GMT"
},
{
"key": "content-length",
"value": "824"
},
{
"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": "156e8189-69bd-448e-a53a-90df33d1db78"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist dan organization org_id faskes (Get EOC dari faskes sendiri)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var id = bundle.entry[0].resource.id;\r",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist&organization=10000005",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
},
{
"key": "organization",
"value": "10000005",
"description": "input your Org_id here"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist dan organization org_id faskes (Get EOC dari faskes sendiri)",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist&organization=10000005",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
},
{
"key": "organization",
"value": "10000005",
"description": "input your Org_id here"
}
]
}
},
"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, 14 May 2024 03:52:27 GMT"
},
{
"key": "content-length",
"value": "572"
},
{
"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": "93d5f06d-2638-4003-8a61-806892e2e820"
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"resource\": {\n \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "EpisodeOfCare - PATCH Status Active",
"request": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/status\",\r\n \"value\": \"active\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/0/period/end\",\r\n \"value\": \"2024-03-15T03:13:00+00:00\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/1\",\r\n \"value\": {\r\n \"status\": \"active\",\r\n \"period\": {\r\n \"start\": \"2024-03-15T03:13:00+00:00\"\r\n }\r\n }\r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"response": [
{
"name": "EpisodeOfCare - PATCH Status Active",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/status\",\r\n \"value\": \"active\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/0/period/end\",\r\n \"value\": \"2024-03-15T03:13:00+00:00\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/1\",\r\n \"value\": {\r\n \"status\": \"active\",\r\n \"period\": {\r\n \"start\": \"2024-03-15T03:13:00+00:00\"\r\n }\r\n }\r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY2MTE5ODI5OTk3MDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8/_history/MTcxNTY2MTE5ODI5OTk3MDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 04:33:18 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 04:33:18 GMT"
},
{
"key": "content-length",
"value": "515"
},
{
"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": "85b3a341-edfc-4914-b84a-d114d2f49fd5"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T04:33:18.299970+00:00\",\n \"versionId\": \"MTcxNTY2MTE5ODI5OTk3MDAwMA\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n }\n ]\n}"
}
]
},
{
"name": "EpisodeOfCare - PATCH Status Finished",
"request": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/status\",\r\n \"value\": \"finished\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/1/period/end\",\r\n \"value\": \"2024-04-19T01:30:00+00:00\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/2\",\r\n \"value\": {\r\n \"status\": \"finished\",\r\n \"period\": {\r\n \"start\": \"2024-04-19T01:30:00+00:00\",\r\n \"end\": \"2024-04-19T01:30:00+00:00\"\r\n }\r\n }\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/period/end\",\r\n \"value\": \"2024-04-19T01:30:00+00:00\"\r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"response": [
{
"name": "EpisodeOfCare - PATCH Status Finished",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/status\",\r\n \"value\": \"finished\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/1/period/end\",\r\n \"value\": \"2024-04-19T01:30:00+00:00\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/2\",\r\n \"value\": {\r\n \"status\": \"finished\",\r\n \"period\": {\r\n \"start\": \"2024-04-19T01:30:00+00:00\",\r\n \"end\": \"2024-04-19T01:30:00+00:00\"\r\n }\r\n }\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/period/end\",\r\n \"value\": \"2024-04-19T01:30:00+00:00\"\r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNjE3NTkzNzMzNDQyODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8/_history/MTcxNjE3NTkzNzMzNDQyODAwMA"
},
{
"key": "last-modified",
"value": "Mon, 20 May 2024 03:32:17 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Mon, 20 May 2024 03:32:17 GMT"
},
{
"key": "content-length",
"value": "891"
},
{
"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": "9b43be09-35cf-45ad-acce-024cbca862e8"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-20T03:32:17.334428+00:00\",\n \"versionId\": \"MTcxNjE3NTkzNzMzNDQyODAwMA\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"finished\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"end\": \"2024-04-19T01:30:00+00:00\",\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n },\n {\n \"period\": {\n \"end\": \"2024-04-19T01:30:00+00:00\",\n \"start\": \"2024-04-19T01:30:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ]\n}"
}
]
},
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active (Get EOC dari any organization)",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active (Get EOC dari any organization)",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
}
]
}
},
"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, 14 May 2024 03:43:51 GMT"
},
{
"key": "content-length",
"value": "1460"
},
{
"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": "5d5f547e-0c85-48d0-b824-cc42504037e0"
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"resource\": {\n \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/registry-id/\",\n \"value\": \"CADC20243000000002\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "EpisodeOfCare - Create Saat Pertama Kali Terdiagnosis Hipertensi dan Carta Prediksi Risiko PTM Moderate/High",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"EpisodeOfCare\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/{{Org_id}}\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"status\": \"waitlist\",\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\",\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
]
}
},
"response": [
{
"name": "EpisodeOfCare - Create Saat Pertama Kali Terdiagnosis Hipertensi dan Carta Prediksi Risiko PTM Moderate/High",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"EpisodeOfCare\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/{{Org_id}}\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"status\": \"waitlist\",\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\",\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:19:23 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1Njc2MzA4OTQ1OTAwMA\""
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8/_history/MTcxNTY1Njc2MzA4OTQ1OTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:19:23 GMT"
},
{
"key": "content-length",
"value": "726"
},
{
"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": "a4e0eb35-99c6-4ca5-8d3d-3203ad3af515"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:23.089459+00:00\",\n \"versionId\": \"MTcxNTY1Njc2MzA4OTQ1OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active dan organization org_id faskes (Get EOC dari faskes sendiri)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var id = bundle.entry[0].resource.id;\r",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active&organization=10000005",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
},
{
"key": "organization",
"value": "10000005",
"description": "input your Org_id here"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active organization org_id faskes (Get EOC dari faskes sendiri)",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active&organization=10000005",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
},
{
"key": "organization",
"value": "10000005",
"description": "input your Org_id here"
}
]
}
},
"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, 14 May 2024 03:52:27 GMT"
},
{
"key": "content-length",
"value": "572"
},
{
"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": "93d5f06d-2638-4003-8a61-806892e2e820"
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"resource\": {\n \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/registry-id/\",\n \"value\": \"CADC20243000000002\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist (Get EOC dari any organization)",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist (Get EOC dari any organization)",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
}
]
}
},
"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, 14 May 2024 03:43:51 GMT"
},
{
"key": "content-length",
"value": "1460"
},
{
"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": "5d5f547e-0c85-48d0-b824-cc42504037e0"
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"resource\": {\n \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
}
]
},
{
"name": "Anamnesis",
"item": [
{
"name": "Faktor Risiko Aterosklerosis",
"item": [
{
"name": "Observation - Faktor Risiko Hipertensi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Hipertensi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"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/\"MTcxNDYxODA2ODk3ODM4NTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/9826ef25-ebc5-49dd-ba13-84b91a73ce2a/_history/MTcxNDYxODA2ODk3ODM4NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:47:48 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:47:48 GMT"
},
{
"key": "content-length",
"value": "1221"
},
{
"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": "2edbd166-7d5e-4f6c-82c7-6d45e915e5c6"
},
{
"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\": \"38341003\",\n \"display\": \"Hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"31509003\",\n \"display\": \"Controlled\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"9826ef25-ebc5-49dd-ba13-84b91a73ce2a\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:47:48.978385+00:00\",\n \"versionId\": \"MTcxNDYxODA2ODk3ODM4NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko DM",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko DM",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"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/2fd29330-aac0-491e-a1cb-76ce571f8efe/_history/MTcxNDYxODIwNTIwNjMwMDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxODIwNTIwNjMwMDAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:50:05 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:50:05 GMT"
},
{
"key": "content-length",
"value": "989"
},
{
"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": "9d877b17-1c59-49d1-bf9c-5416564aa3c8"
},
{
"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\": \"73211009\",\n \"display\": \"Diabetes mellitus\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"31509003\",\n \"display\": \"Controlled\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"2fd29330-aac0-491e-a1cb-76ce571f8efe\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:50:05.206300+00:00\",\n \"versionId\": \"MTcxNDYxODIwNTIwNjMwMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko Dislipidemia",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Dislipidemia",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n}",
"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/\"MTcxNDYzMDgwMzE5NjE3MDAwMA\""
},
{
"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/e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e/_history/MTcxNDYzMDgwMzE5NjE3MDAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 06:20:03 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 06:20:03 GMT"
},
{
"key": "content-length",
"value": "1171"
},
{
"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": "1a9279c1-5146-4a78-b683-9a87974957e0"
},
{
"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\": \"370992007\",\n \"display\": \"Dyslipidemia\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T06:20:03.196170+00:00\",\n \"versionId\": \"MTcxNDYzMDgwMzE5NjE3MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko Merokok",
"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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Merokok",
"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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxODY5NDg2MjU3NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/937da678-555b-418d-8474-e0331d2231c1/_history/MTcxNDYxODY5NDg2MjU3NzAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:58:14 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:58:14 GMT"
},
{
"key": "content-length",
"value": "826"
},
{
"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": "20bda8ee-564a-4b6f-abfc-6a79580f45c0"
},
{
"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\": \"social-history\",\n \"display\": \"Social History\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"937da678-555b-418d-8474-e0331d2231c1\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:58:14.862577+00:00\",\n \"versionId\": \"MTcxNDYxODY5NDg2MjU3NzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"77176002\",\n \"display\": \"Smoker\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Faktor Risiko DM",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko DM",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"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/2fd29330-aac0-491e-a1cb-76ce571f8efe/_history/MTcxNDYxODIwNTIwNjMwMDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxODIwNTIwNjMwMDAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:50:05 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:50:05 GMT"
},
{
"key": "content-length",
"value": "989"
},
{
"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": "9d877b17-1c59-49d1-bf9c-5416564aa3c8"
},
{
"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\": \"73211009\",\n \"display\": \"Diabetes mellitus\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"31509003\",\n \"display\": \"Controlled\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"2fd29330-aac0-491e-a1cb-76ce571f8efe\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:50:05.206300+00:00\",\n \"versionId\": \"MTcxNDYxODIwNTIwNjMwMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko Hipertensi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Hipertensi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"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/\"MTcxNDYxODA2ODk3ODM4NTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/9826ef25-ebc5-49dd-ba13-84b91a73ce2a/_history/MTcxNDYxODA2ODk3ODM4NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:47:48 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:47:48 GMT"
},
{
"key": "content-length",
"value": "1221"
},
{
"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": "2edbd166-7d5e-4f6c-82c7-6d45e915e5c6"
},
{
"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\": \"38341003\",\n \"display\": \"Hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"31509003\",\n \"display\": \"Controlled\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"9826ef25-ebc5-49dd-ba13-84b91a73ce2a\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:47:48.978385+00:00\",\n \"versionId\": \"MTcxNDYxODA2ODk3ODM4NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko Dislipidemia",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Dislipidemia",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n}",
"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/\"MTcxNDYzMDgwMzE5NjE3MDAwMA\""
},
{
"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/e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e/_history/MTcxNDYzMDgwMzE5NjE3MDAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 06:20:03 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 06:20:03 GMT"
},
{
"key": "content-length",
"value": "1171"
},
{
"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": "1a9279c1-5146-4a78-b683-9a87974957e0"
},
{
"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\": \"370992007\",\n \"display\": \"Dyslipidemia\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T06:20:03.196170+00:00\",\n \"versionId\": \"MTcxNDYzMDgwMzE5NjE3MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko Merokok",
"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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Merokok",
"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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxODY5NDg2MjU3NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/937da678-555b-418d-8474-e0331d2231c1/_history/MTcxNDYxODY5NDg2MjU3NzAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:58:14 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:58:14 GMT"
},
{
"key": "content-length",
"value": "826"
},
{
"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": "20bda8ee-564a-4b6f-abfc-6a79580f45c0"
},
{
"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\": \"social-history\",\n \"display\": \"Social History\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"937da678-555b-418d-8474-e0331d2231c1\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:58:14.862577+00:00\",\n \"versionId\": \"MTcxNDYxODY5NDg2MjU3NzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"77176002\",\n \"display\": \"Smoker\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
}
]
},
{
"name": "Diagnosis",
"item": [
{
"name": "Diagnosis - Target Organ Damage Hipertensi",
"item": [
{
"name": "Condition - Diagnosis - Hypertensive heart disease with (congestive) failure",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"I11.0\",\n \"display\": \"Hypertensive heart disease with (congestive) failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:14:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Diagnosis - Hypertensive heart disease with (congestive) failure",
"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\": \"I11.0\",\n \"display\": \"Hypertensive heart disease with (congestive) failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:14: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/\"MTcxMTc2NTAxODA0NzMwNjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Sat, 30 Mar 2024 02:16:58 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/be36e61e-a318-45b8-a48d-4becf1205e77/_history/MTcxMTc2NTAxODA0NzMwNjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 30 Mar 2024 02:16:58 GMT"
},
{
"key": "Content-Length",
"value": "4034"
},
{
"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": "22e73586-e217-4a98-8f08-9bb5330ff205"
},
{
"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\": \"I11.0\",\n \"display\": \"Hypertensive heart disease with (congestive) failure\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"be36e61e-a318-45b8-a48d-4becf1205e77\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-30T02:16:58.047306+00:00\",\n \"versionId\": \"MTcxMTc2NTAxODA0NzMwNjAwMA\"\n },\n \"recordedDate\": \"2024-03-15T03:14:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Target Organ Damage Hipertensi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Target Organ Damage Hipertensi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNDYzMDkxMzQ0MjU1NTAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 06:21:53 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/Observation/1ce44bc5-ba57-477a-a0d1-965f74d88cd0/_history/MTcxNDYzMDkxMzQ0MjU1NTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 06:21:53 GMT"
},
{
"key": "content-length",
"value": "876"
},
{
"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": "1a42701e-4e37-47c7-b7ef-7456d012ac8c"
},
{
"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\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"1ce44bc5-ba57-477a-a0d1-965f74d88cd0\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T06:21:53.442555+00:00\",\n \"versionId\": \"MTcxNDYzMDkxMzQ0MjU1NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Target Organ Damage Hipertensi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Target Organ Damage Hipertensi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNDYzMDkxMzQ0MjU1NTAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 06:21:53 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/Observation/1ce44bc5-ba57-477a-a0d1-965f74d88cd0/_history/MTcxNDYzMDkxMzQ0MjU1NTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 06:21:53 GMT"
},
{
"key": "content-length",
"value": "876"
},
{
"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": "1a42701e-4e37-47c7-b7ef-7456d012ac8c"
},
{
"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\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"1ce44bc5-ba57-477a-a0d1-965f74d88cd0\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T06:21:53.442555+00:00\",\n \"versionId\": \"MTcxNDYzMDkxMzQ0MjU1NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Condition - Diagnosis - Hypertensive heart disease with (congestive) failure",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"I11.0\",\n \"display\": \"Hypertensive heart disease with (congestive) failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:14:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Diagnosis - Hypertensive heart disease with (congestive) failure",
"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\": \"I11.0\",\n \"display\": \"Hypertensive heart disease with (congestive) failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:14: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/\"MTcxMTc2NTAxODA0NzMwNjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Sat, 30 Mar 2024 02:16:58 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/be36e61e-a318-45b8-a48d-4becf1205e77/_history/MTcxMTc2NTAxODA0NzMwNjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 30 Mar 2024 02:16:58 GMT"
},
{
"key": "Content-Length",
"value": "4034"
},
{
"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": "22e73586-e217-4a98-8f08-9bb5330ff205"
},
{
"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\": \"I11.0\",\n \"display\": \"Hypertensive heart disease with (congestive) failure\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"be36e61e-a318-45b8-a48d-4becf1205e77\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-30T02:16:58.047306+00:00\",\n \"versionId\": \"MTcxMTc2NTAxODA0NzMwNjAwMA\"\n },\n \"recordedDate\": \"2024-03-15T03:14:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Diagnosis - Hipertensi (Ketika pertama kali terdiagnosa perlu mencantumkan stage)",
"item": [
{
"name": "Condition - Diagnosis - Hypertension",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"stage\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"summary\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:14:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Diagnosis - Hypertension",
"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\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"stage\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"summary\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:14: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/5bdfd9f6-e1e9-4f19-a2c9-493f17876db1/_history/MTcxNDYyNjQwOTEwMDA4MzAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 05:06:49 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNDYyNjQwOTEwMDA4MzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 05:06:49 GMT"
},
{
"key": "content-length",
"value": "1023"
},
{
"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": "1b942726-3ee1-45cc-89f9-eb585359af3c"
},
{
"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\": \"I10\",\n \"display\": \"Essential (primary) hypertension\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"5bdfd9f6-e1e9-4f19-a2c9-493f17876db1\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T05:06:49.100083+00:00\",\n \"versionId\": \"MTcxNDYyNjQwOTEwMDA4MzAwMA\"\n },\n \"recordedDate\": \"2024-03-15T03:14:00+00:00\",\n \"resourceType\": \"Condition\",\n \"stage\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"summary\": {\n \"coding\": [\n {\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Diagnosis - Hypertension",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"stage\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"summary\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:14:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Diagnosis - Hypertension",
"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\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"stage\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"summary\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:14: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/5bdfd9f6-e1e9-4f19-a2c9-493f17876db1/_history/MTcxNDYyNjQwOTEwMDA4MzAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 05:06:49 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNDYyNjQwOTEwMDA4MzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 05:06:49 GMT"
},
{
"key": "content-length",
"value": "1023"
},
{
"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": "1b942726-3ee1-45cc-89f9-eb585359af3c"
},
{
"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\": \"I10\",\n \"display\": \"Essential (primary) hypertension\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"5bdfd9f6-e1e9-4f19-a2c9-493f17876db1\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T05:06:49.100083+00:00\",\n \"versionId\": \"MTcxNDYyNjQwOTEwMDA4MzAwMA\"\n },\n \"recordedDate\": \"2024-03-15T03:14:00+00:00\",\n \"resourceType\": \"Condition\",\n \"stage\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"summary\": {\n \"coding\": [\n {\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "Tindakan/Prosedur Medis (Terapetik)",
"item": [
{
"name": "Procedure - CABG",
"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\": \"387713003\",\n \"display\": \"Surgical procedure \"\n }\n ],\n \"text\": \"Prosedur Bedah\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\n \"code\": \"36.10\",\n \"display\": \"Aortocoronary bypass for heart revascularization, not otherwise specified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-18T01:40:00+00:00\",\n \"end\": \"2024-03-18T04:30:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganICCU}}\",\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\"\n },\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I21.0\",\n \"display\": \"Acute transmural myocardial infarction of anterior wall\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - CABG",
"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\": \"387713003\",\n \"display\": \"Surgical procedure \"\n }\n ],\n \"text\": \"Prosedur Bedah\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\n \"code\": \"36.10\",\n \"display\": \"Aortocoronary bypass for heart revascularization, not otherwise specified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-18T01:40:00+00:00\",\n \"end\": \"2024-03-18T04:30:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganICCU}}\",\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\"\n },\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I21.0\",\n \"display\": \"Acute transmural myocardial infarction of anterior wall\"\n }\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Procedure/407388e4-43cd-4abd-b79a-677377bf83fd/_history/MTcxNjMzMzY1MzI3NjczMTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 21 May 2024 23:20:53 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNjMzMzY1MzI3NjczMTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 21 May 2024 23:20:53 GMT"
},
{
"key": "content-length",
"value": "1187"
},
{
"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": "14405c5b-a68d-4523-8bef-1eefac0278be"
},
{
"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\": \"387713003\",\n \"display\": \"Surgical procedure \",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Prosedur Bedah\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"36.10\",\n \"display\": \"Aortocoronary bypass for heart revascularization, not otherwise specified\",\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/99df1ed2-5c57-43d7-b8bf-9c4d985b39be\"\n },\n \"id\": \"407388e4-43cd-4abd-b79a-677377bf83fd\",\n \"identifier\": [],\n \"location\": {\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\",\n \"reference\": \"Location/083cc095-1fc5-45ce-b79c-6648b05b2f95\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-21T23:20:53.276731+00:00\",\n \"versionId\": \"MTcxNjMzMzY1MzI3NjczMTAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-18T04:30:00+00:00\",\n \"start\": \"2024-03-18T01:40:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/10000002\"\n }\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"I21.0\",\n \"display\": \"Acute transmural myocardial infarction of anterior wall\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Procedure - IABP",
"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\": \"113018007\",\n \"display\": \"Cardioassist\"\n }\n ],\n \"text\": \"Prosedur Bantuan Kardio\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\n \"code\": \"37.61\",\n \"display\": \"Implant of pulsation balloon\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-18T04:00:00+00:00\",\n \"end\": \"2024-03-18T04:30:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganICCU}}\",\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\"\n },\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I21.0\",\n \"display\": \"Acute transmural myocardial infarction of anterior wall\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - IABP",
"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\": \"113018007\",\n \"display\": \"Cardioassist\"\n }\n ],\n \"text\": \"Prosedur Bantuan Kardio\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\n \"code\": \"37.61\",\n \"display\": \"Implant of pulsation balloon\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-18T04:00:00+00:00\",\n \"end\": \"2024-03-18T04:30:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganICCU}}\",\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\"\n },\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I21.0\",\n \"display\": \"Acute transmural myocardial infarction of anterior wall\"\n }\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": "last-modified",
"value": "Tue, 21 May 2024 23:27: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/Procedure/b6e8f686-2388-4985-b7f9-08cdb620a569/_history/MTcxNjMzNDA3MjY4Mjc4NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNjMzNDA3MjY4Mjc4NjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 21 May 2024 23:27:52 GMT"
},
{
"key": "content-length",
"value": "1144"
},
{
"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": "f34b8d07-0d6c-4a8e-82f8-1b16c0ed83f7"
},
{
"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\": \"113018007\",\n \"display\": \"Cardioassist\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Prosedur Bantuan Kardio\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"37.61\",\n \"display\": \"Implant of pulsation balloon\",\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/99df1ed2-5c57-43d7-b8bf-9c4d985b39be\"\n },\n \"id\": \"b6e8f686-2388-4985-b7f9-08cdb620a569\",\n \"identifier\": [],\n \"location\": {\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\",\n \"reference\": \"Location/083cc095-1fc5-45ce-b79c-6648b05b2f95\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-21T23:27:52.682786+00:00\",\n \"versionId\": \"MTcxNjMzNDA3MjY4Mjc4NjAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-18T04:30:00+00:00\",\n \"start\": \"2024-03-18T04:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/10000002\"\n }\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"I21.0\",\n \"display\": \"Acute transmural myocardial infarction of anterior wall\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Procedure - Operasi Katup (Open Heart Surgery)",
"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\": \"387713003\",\n \"display\": \"Surgical procedure \"\n }\n ],\n \"text\": \"Prosedur Bedah\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\n \"code\": \"35.12\",\n \"display\": \"Open heart valvuloplasty of mitral valve without replacement\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-18T07:00:00+00:00\",\n \"end\": \"2024-03-18T08:30:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganICCU}}\",\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\"\n },\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I06.0\",\n \"display\": \"Rheumatic aortic stenosis with insufficiency\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - Operasi Katup (Open Heart Surgery)",
"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\": \"387713003\",\n \"display\": \"Surgical procedure \"\n }\n ],\n \"text\": \"Prosedur Bedah\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\n \"code\": \"35.12\",\n \"display\": \"Open heart valvuloplasty of mitral valve without replacement\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-18T07:00:00+00:00\",\n \"end\": \"2024-03-18T08:30:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganICCU}}\",\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\"\n },\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I06.0\",\n \"display\": \"Rheumatic aortic stenosis with insufficiency\"\n }\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/\"MTcxNjMzNDM5MjE0OTY3NDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Procedure/cb6664d7-2c82-4126-a91e-aad816ebdf67/_history/MTcxNjMzNDM5MjE0OTY3NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 21 May 2024 23:33:12 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 21 May 2024 23:33:12 GMT"
},
{
"key": "content-length",
"value": "1163"
},
{
"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": "15931a8d-ecec-4306-baa5-dbcf593a325e"
},
{
"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\": \"387713003\",\n \"display\": \"Surgical procedure \",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Prosedur Bedah\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"35.12\",\n \"display\": \"Open heart valvuloplasty of mitral valve without replacement\",\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/99df1ed2-5c57-43d7-b8bf-9c4d985b39be\"\n },\n \"id\": \"cb6664d7-2c82-4126-a91e-aad816ebdf67\",\n \"identifier\": [],\n \"location\": {\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\",\n \"reference\": \"Location/083cc095-1fc5-45ce-b79c-6648b05b2f95\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-21T23:33:12.149674+00:00\",\n \"versionId\": \"MTcxNjMzNDM5MjE0OTY3NDAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-18T08:30:00+00:00\",\n \"start\": \"2024-03-18T07:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/10000002\"\n }\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"I06.0\",\n \"display\": \"Rheumatic aortic stenosis with insufficiency\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - GRACE Score",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000169\",\n \"display\": \"GRACE Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueQuantity\": {\n \"value\": 145,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"723509005\",\n \"display\": \"High risk\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - GRACE Score",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000169\",\n \"display\": \"GRACE Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueQuantity\": {\n \"value\": 145,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"723509005\",\n \"display\": \"High risk\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxOTY5NjMwMDI4ODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/c2d4e5ce-ff69-4761-83d9-2e1d74040725/_history/MTcxNDYxOTY5NjMwMDI4ODAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 03:14:56 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 03:14:56 GMT"
},
{
"key": "content-length",
"value": "937"
},
{
"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": "ff9b8b90-d4cc-4f39-81da-11dd295e3764"
},
{
"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\": \"OC000169\",\n \"display\": \"GRACE Score\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"c2d4e5ce-ff69-4761-83d9-2e1d74040725\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"723509005\",\n \"display\": \"High risk\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T03:14:56.300288+00:00\",\n \"versionId\": \"MTcxNDYxOTY5NjMwMDI4ODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 145\n }\n}"
}
]
},
{
"name": "Observation - Killip Class",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000168\",\n \"display\": \"Klasifikasi Killip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"89138009\",\n \"display\": \"Cardiogenic shock\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Killip Class",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000168\",\n \"display\": \"Klasifikasi Killip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"89138009\",\n \"display\": \"Cardiogenic shock\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/9600862c-8c1a-41ff-b8e2-79bf95d3829e/_history/MTcxNDYxOTgwNTcwMDk0OTAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 03:16:45 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxOTgwNTcwMDk0OTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 03:16:45 GMT"
},
{
"key": "content-length",
"value": "854"
},
{
"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": "4e3b9909-0997-4870-8b30-07a44c54a386"
},
{
"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\": \"OC000168\",\n \"display\": \"Klasifikasi Killip\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"9600862c-8c1a-41ff-b8e2-79bf95d3829e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T03:16:45.700949+00:00\",\n \"versionId\": \"MTcxNDYxOTgwNTcwMDk0OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"89138009\",\n \"display\": \"Cardiogenic shock\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Pencegahan Sekunder PJR",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000176\",\n \"display\": \"Pencegahan Sekunder Penyakit Jantung Rematik\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000405\",\n \"display\": \"Iya dan tidak teratur\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000178\",\n \"display\": \"Jenis Obat Pencegahan Sekunder PJR\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000401\",\n \"display\": \"Benzatin Penicillin G (BPG) intramuskular\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Pencegahan Sekunder PJR",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000176\",\n \"display\": \"Pencegahan Sekunder Penyakit Jantung Rematik\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000405\",\n \"display\": \"Iya dan tidak teratur\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000178\",\n \"display\": \"Jenis Obat Pencegahan Sekunder PJR\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000401\",\n \"display\": \"Benzatin Penicillin G (BPG) intramuskular\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNDYzMDk3Mzg1MDAyMDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 06:22: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/Observation/1b28b215-74d6-4d40-abd8-3fa041be5cca/_history/MTcxNDYzMDk3Mzg1MDAyMDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 06:22:53 GMT"
},
{
"key": "content-length",
"value": "1271"
},
{
"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": "ca6ed2b8-c4e1-4540-9971-2a8fee76b870"
},
{
"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\": \"OC000176\",\n \"display\": \"Pencegahan Sekunder Penyakit Jantung Rematik\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000178\",\n \"display\": \"Jenis Obat Pencegahan Sekunder PJR\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000401\",\n \"display\": \"Benzatin Penicillin G (BPG) intramuskular\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"1b28b215-74d6-4d40-abd8-3fa041be5cca\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T06:22:53.850020+00:00\",\n \"versionId\": \"MTcxNDYzMDk3Mzg1MDAyMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000405\",\n \"display\": \"Iya dan tidak teratur\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Procedure - Operasi Katup (Open Heart Surgery)",
"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\": \"387713003\",\n \"display\": \"Surgical procedure \"\n }\n ],\n \"text\": \"Prosedur Bedah\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\n \"code\": \"35.12\",\n \"display\": \"Open heart valvuloplasty of mitral valve without replacement\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-18T07:00:00+00:00\",\n \"end\": \"2024-03-18T08:30:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganICCU}}\",\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\"\n },\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I06.0\",\n \"display\": \"Rheumatic aortic stenosis with insufficiency\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - Operasi Katup (Open Heart Surgery)",
"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\": \"387713003\",\n \"display\": \"Surgical procedure \"\n }\n ],\n \"text\": \"Prosedur Bedah\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\n \"code\": \"35.12\",\n \"display\": \"Open heart valvuloplasty of mitral valve without replacement\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-18T07:00:00+00:00\",\n \"end\": \"2024-03-18T08:30:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganICCU}}\",\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\"\n },\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I06.0\",\n \"display\": \"Rheumatic aortic stenosis with insufficiency\"\n }\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/\"MTcxNjMzNDM5MjE0OTY3NDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Procedure/cb6664d7-2c82-4126-a91e-aad816ebdf67/_history/MTcxNjMzNDM5MjE0OTY3NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 21 May 2024 23:33:12 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 21 May 2024 23:33:12 GMT"
},
{
"key": "content-length",
"value": "1163"
},
{
"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": "15931a8d-ecec-4306-baa5-dbcf593a325e"
},
{
"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\": \"387713003\",\n \"display\": \"Surgical procedure \",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Prosedur Bedah\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"35.12\",\n \"display\": \"Open heart valvuloplasty of mitral valve without replacement\",\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/99df1ed2-5c57-43d7-b8bf-9c4d985b39be\"\n },\n \"id\": \"cb6664d7-2c82-4126-a91e-aad816ebdf67\",\n \"identifier\": [],\n \"location\": {\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\",\n \"reference\": \"Location/083cc095-1fc5-45ce-b79c-6648b05b2f95\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-21T23:33:12.149674+00:00\",\n \"versionId\": \"MTcxNjMzNDM5MjE0OTY3NDAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-18T08:30:00+00:00\",\n \"start\": \"2024-03-18T07:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/10000002\"\n }\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"I06.0\",\n \"display\": \"Rheumatic aortic stenosis with insufficiency\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Procedure - IABP",
"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\": \"113018007\",\n \"display\": \"Cardioassist\"\n }\n ],\n \"text\": \"Prosedur Bantuan Kardio\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\n \"code\": \"37.61\",\n \"display\": \"Implant of pulsation balloon\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-18T04:00:00+00:00\",\n \"end\": \"2024-03-18T04:30:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganICCU}}\",\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\"\n },\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I21.0\",\n \"display\": \"Acute transmural myocardial infarction of anterior wall\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - IABP",
"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\": \"113018007\",\n \"display\": \"Cardioassist\"\n }\n ],\n \"text\": \"Prosedur Bantuan Kardio\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\n \"code\": \"37.61\",\n \"display\": \"Implant of pulsation balloon\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-18T04:00:00+00:00\",\n \"end\": \"2024-03-18T04:30:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganICCU}}\",\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\"\n },\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I21.0\",\n \"display\": \"Acute transmural myocardial infarction of anterior wall\"\n }\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": "last-modified",
"value": "Tue, 21 May 2024 23:27: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/Procedure/b6e8f686-2388-4985-b7f9-08cdb620a569/_history/MTcxNjMzNDA3MjY4Mjc4NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNjMzNDA3MjY4Mjc4NjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 21 May 2024 23:27:52 GMT"
},
{
"key": "content-length",
"value": "1144"
},
{
"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": "f34b8d07-0d6c-4a8e-82f8-1b16c0ed83f7"
},
{
"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\": \"113018007\",\n \"display\": \"Cardioassist\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Prosedur Bantuan Kardio\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"37.61\",\n \"display\": \"Implant of pulsation balloon\",\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/99df1ed2-5c57-43d7-b8bf-9c4d985b39be\"\n },\n \"id\": \"b6e8f686-2388-4985-b7f9-08cdb620a569\",\n \"identifier\": [],\n \"location\": {\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\",\n \"reference\": \"Location/083cc095-1fc5-45ce-b79c-6648b05b2f95\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-21T23:27:52.682786+00:00\",\n \"versionId\": \"MTcxNjMzNDA3MjY4Mjc4NjAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-18T04:30:00+00:00\",\n \"start\": \"2024-03-18T04:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/10000002\"\n }\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"I21.0\",\n \"display\": \"Acute transmural myocardial infarction of anterior wall\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - GRACE Score",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000169\",\n \"display\": \"GRACE Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueQuantity\": {\n \"value\": 145,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"723509005\",\n \"display\": \"High risk\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - GRACE Score",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000169\",\n \"display\": \"GRACE Score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueQuantity\": {\n \"value\": 145,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"723509005\",\n \"display\": \"High risk\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxOTY5NjMwMDI4ODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/c2d4e5ce-ff69-4761-83d9-2e1d74040725/_history/MTcxNDYxOTY5NjMwMDI4ODAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 03:14:56 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 03:14:56 GMT"
},
{
"key": "content-length",
"value": "937"
},
{
"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": "ff9b8b90-d4cc-4f39-81da-11dd295e3764"
},
{
"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\": \"OC000169\",\n \"display\": \"GRACE Score\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"c2d4e5ce-ff69-4761-83d9-2e1d74040725\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"723509005\",\n \"display\": \"High risk\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T03:14:56.300288+00:00\",\n \"versionId\": \"MTcxNDYxOTY5NjMwMDI4ODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 145\n }\n}"
}
]
},
{
"name": "Procedure - CABG",
"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\": \"387713003\",\n \"display\": \"Surgical procedure \"\n }\n ],\n \"text\": \"Prosedur Bedah\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\n \"code\": \"36.10\",\n \"display\": \"Aortocoronary bypass for heart revascularization, not otherwise specified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-18T01:40:00+00:00\",\n \"end\": \"2024-03-18T04:30:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganICCU}}\",\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\"\n },\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I21.0\",\n \"display\": \"Acute transmural myocardial infarction of anterior wall\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - CABG",
"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\": \"387713003\",\n \"display\": \"Surgical procedure \"\n }\n ],\n \"text\": \"Prosedur Bedah\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\",\n \"code\": \"36.10\",\n \"display\": \"Aortocoronary bypass for heart revascularization, not otherwise specified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-18T01:40:00+00:00\",\n \"end\": \"2024-03-18T04:30:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganICCU}}\",\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\"\n },\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I21.0\",\n \"display\": \"Acute transmural myocardial infarction of anterior wall\"\n }\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Procedure/407388e4-43cd-4abd-b79a-677377bf83fd/_history/MTcxNjMzMzY1MzI3NjczMTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 21 May 2024 23:20:53 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNjMzMzY1MzI3NjczMTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 21 May 2024 23:20:53 GMT"
},
{
"key": "content-length",
"value": "1187"
},
{
"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": "14405c5b-a68d-4523-8bef-1eefac0278be"
},
{
"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\": \"387713003\",\n \"display\": \"Surgical procedure \",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Prosedur Bedah\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"36.10\",\n \"display\": \"Aortocoronary bypass for heart revascularization, not otherwise specified\",\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/99df1ed2-5c57-43d7-b8bf-9c4d985b39be\"\n },\n \"id\": \"407388e4-43cd-4abd-b79a-677377bf83fd\",\n \"identifier\": [],\n \"location\": {\n \"display\": \"Bed 1, Ruang ICCU, Layanan Penyakit Jantung, Lantai 3, Gedung Utama\",\n \"reference\": \"Location/083cc095-1fc5-45ce-b79c-6648b05b2f95\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-21T23:20:53.276731+00:00\",\n \"versionId\": \"MTcxNjMzMzY1MzI3NjczMTAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-18T04:30:00+00:00\",\n \"start\": \"2024-03-18T01:40:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"onBehalfOf\": {\n \"reference\": \"Organization/10000002\"\n }\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"I21.0\",\n \"display\": \"Acute transmural myocardial infarction of anterior wall\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Pencegahan Sekunder PJR",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000176\",\n \"display\": \"Pencegahan Sekunder Penyakit Jantung Rematik\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000405\",\n \"display\": \"Iya dan tidak teratur\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000178\",\n \"display\": \"Jenis Obat Pencegahan Sekunder PJR\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000401\",\n \"display\": \"Benzatin Penicillin G (BPG) intramuskular\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Pencegahan Sekunder PJR",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000176\",\n \"display\": \"Pencegahan Sekunder Penyakit Jantung Rematik\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000405\",\n \"display\": \"Iya dan tidak teratur\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000178\",\n \"display\": \"Jenis Obat Pencegahan Sekunder PJR\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000401\",\n \"display\": \"Benzatin Penicillin G (BPG) intramuskular\"\n }\n ]\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNDYzMDk3Mzg1MDAyMDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 06:22: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/Observation/1b28b215-74d6-4d40-abd8-3fa041be5cca/_history/MTcxNDYzMDk3Mzg1MDAyMDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 06:22:53 GMT"
},
{
"key": "content-length",
"value": "1271"
},
{
"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": "ca6ed2b8-c4e1-4540-9971-2a8fee76b870"
},
{
"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\": \"OC000176\",\n \"display\": \"Pencegahan Sekunder Penyakit Jantung Rematik\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000178\",\n \"display\": \"Jenis Obat Pencegahan Sekunder PJR\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000401\",\n \"display\": \"Benzatin Penicillin G (BPG) intramuskular\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"1b28b215-74d6-4d40-abd8-3fa041be5cca\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T06:22:53.850020+00:00\",\n \"versionId\": \"MTcxNDYzMDk3Mzg1MDAyMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000405\",\n \"display\": \"Iya dan tidak teratur\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Killip Class",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000168\",\n \"display\": \"Klasifikasi Killip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"89138009\",\n \"display\": \"Cardiogenic shock\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Killip Class",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000168\",\n \"display\": \"Klasifikasi Killip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"89138009\",\n \"display\": \"Cardiogenic shock\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/9600862c-8c1a-41ff-b8e2-79bf95d3829e/_history/MTcxNDYxOTgwNTcwMDk0OTAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 03:16:45 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxOTgwNTcwMDk0OTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 03:16:45 GMT"
},
{
"key": "content-length",
"value": "854"
},
{
"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": "4e3b9909-0997-4870-8b30-07a44c54a386"
},
{
"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\": \"OC000168\",\n \"display\": \"Klasifikasi Killip\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"9600862c-8c1a-41ff-b8e2-79bf95d3829e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T03:16:45.700949+00:00\",\n \"versionId\": \"MTcxNDYxOTgwNTcwMDk0OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"89138009\",\n \"display\": \"Cardiogenic shock\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Dokumen Registrasi Jantung",
"item": [
{
"name": "Dokumen Registrasi Jantung",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Composition\",\r\n \"identifier\": {\r\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\r\n \"value\": \"{{Registration_ID}}\"\r\n },\r\n \"status\": \"final\",\r\n \"type\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000001\",\r\n \"display\": \"Data Registrasi Jantung\"\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 \"date\": \"2024-03-15T05:05:00+00:00\",\r\n \"author\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"title\": \"Data Registrasi Jantung\",\r\n \"custodian\": {\r\n \"reference\": \"Organization/{{Org_id}}\"\r\n },\r\n \"section\": [\r\n {\r\n \"title\": \"Episode Perawatan\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000002\",\r\n \"display\": \"Episode Perawatan\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_Jantung}}\",\r\n \"display\": \"Episode Perawatan Registrasi Jantung\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Anamnesis\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000003\",\r\n \"display\": \"Anamnesis\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Condition/{{Keluhan_Utama}}\",\r\n \"display\": \"Keluhan Utama\"\r\n },\r\n {\r\n \"reference\": \"Condition/{{Condition_RiwayatAsma}}\",\r\n \"display\": \"Riwayat Penyakit Asma\"\r\n },\r\n {\r\n \"reference\": \"Condition/{{Condition_RiwayatJantungKeluarga}}\",\r\n \"display\": \"Riwayat Gagal Jantung di Keluarga\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoHipertensi}}\",\r\n \"display\": \"Observasi Faktor Risiko Hipertensi\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoDM}}\",\r\n \"display\": \"Observasi Faktor Risiko Diabetes Mellitus\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoDislipidemia}}\",\r\n \"display\": \"Observasi Faktor Risiko Dislipidemia\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoMerokok}}\",\r\n \"display\": \"Observasi Faktor Risiko Merokok\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Pemeriksaan Fisik\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000007\",\r\n \"display\": \"Pemeriksaan Fisik\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Observation/{{Observation_Diastole}}\",\r\n \"display\": \"Observasi Tekanan Darah Diastol\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_Sistole}}\",\r\n \"display\": \"Observasi Tekanan Darah Sistol\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_BeratBadan}}\",\r\n \"display\": \"Observasi Berat Badan\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_TinggiBadan}}\",\r\n \"display\": \"Observasi Tinggi Badan\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Hasil Pemeriksaan Penunjang\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000009\",\r\n \"display\": \"Hasil Pemeriksaan Penunjang\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Observation/{{Observation_Kolesterol}}\",\r\n \"display\": \"Observasi Kolesterol\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_CTAngiografiKoroner}}\",\r\n \"display\": \"Observasi CT Angiografi Koroner\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Diagnosis\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000004\",\r\n \"display\": \"Diagnosis\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Condition/{{Diagnosis_HypertensiveHeartDisease}}\",\r\n \"display\": \"Diagnosis Hypertensive Heart Diseasee\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_TargetOrganDamageHipertensi}}\",\r\n \"display\": \"Observasi Target Organ Damage Hipertensi\"\r\n },\r\n {\r\n \"reference\": \"Condition/{{Diagnosis_Hipertensi}}\",\r\n \"display\": \"Diagnosis Hipertensi\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Tindakan/Prosedur Medis\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000005\",\r\n \"display\": \"Tindakan/Prosedur Medis\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Procedure/{{Procedure_EKGAwal}}\",\r\n \"display\": \"Prosedur EKG Awal Masuk RS \"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_EKGAwal}}\",\r\n \"display\": \"Observasi EKG Awal Masuk RS\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_EKGLanjutan}}\",\r\n \"display\": \"Prosedur EKG Setelah Pengobatan \"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_EKGLanjutan}}\",\r\n \"display\": \"Observasi EKG Setelah Pengobatan\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_Echocardiography}}\",\r\n \"display\": \"Prosedur Ekokardiografi\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_Echocardiography}}\",\r\n \"display\": \"Observasi Ekokardiografi\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_CABG}}\",\r\n \"display\": \"Prosedur CABG\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_IABP}}\",\r\n \"display\": \"Prosedur IABP\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_OperasiKatup}}\",\r\n \"display\": \"Prosedur Operasi Katup\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_GraceScore}}\",\r\n \"display\": \"Observasi Grace Score\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_KillipClass}}\",\r\n \"display\": \"Observasi Killip Class\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Obsevation_PencegahanSekunderPJR}}\",\r\n \"display\": \"Observasi Pencegahan Sekunder PJR\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Obat\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000013\",\r\n \"display\": \"Obat\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"MedicationRequest/{{MedicationRequest_Amlodipine}}\",\r\n \"display\": \"Peresepan Obat Amlodipine\"\r\n }\r\n ]\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"response": [
{
"name": "Dokumen Registrasi Jantung",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Composition\",\r\n \"identifier\": {\r\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\r\n \"value\": \"{{Registration_ID}}\"\r\n },\r\n \"status\": \"final\",\r\n \"type\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000001\",\r\n \"display\": \"Data Registrasi Jantung\"\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 \"date\": \"2024-03-15T05:05:00+00:00\",\r\n \"author\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"title\": \"Data Registrasi Jantung\",\r\n \"custodian\": {\r\n \"reference\": \"Organization/{{Org_id}}\"\r\n },\r\n \"section\": [\r\n {\r\n \"title\": \"Episode Perawatan\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000002\",\r\n \"display\": \"Episode Perawatan\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_Jantung}}\",\r\n \"display\": \"Episode Perawatan Registrasi Jantung\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Anamnesis\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000003\",\r\n \"display\": \"Anamnesis\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Condition/{{Keluhan_Utama}}\",\r\n \"display\": \"Keluhan Utama\"\r\n },\r\n {\r\n \"reference\": \"Condition/{{Condition_RiwayatAsma}}\",\r\n \"display\": \"Riwayat Penyakit Asma\"\r\n },\r\n {\r\n \"reference\": \"Condition/{{Condition_RiwayatJantungKeluarga}}\",\r\n \"display\": \"Riwayat Gagal Jantung di Keluarga\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoHipertensi}}\",\r\n \"display\": \"Observasi Faktor Risiko Hipertensi\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoDM}}\",\r\n \"display\": \"Observasi Faktor Risiko Diabetes Mellitus\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoDislipidemia}}\",\r\n \"display\": \"Observasi Faktor Risiko Dislipidemia\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoMerokok}}\",\r\n \"display\": \"Observasi Faktor Risiko Merokok\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Pemeriksaan Fisik\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000007\",\r\n \"display\": \"Pemeriksaan Fisik\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Observation/{{Observation_Diastole}}\",\r\n \"display\": \"Observasi Tekanan Darah Diastol\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_Sistole}}\",\r\n \"display\": \"Observasi Tekanan Darah Sistol\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_BeratBadan}}\",\r\n \"display\": \"Observasi Berat Badan\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_TinggiBadan}}\",\r\n \"display\": \"Observasi Tinggi Badan\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Hasil Pemeriksaan Penunjang\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000009\",\r\n \"display\": \"Hasil Pemeriksaan Penunjang\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Observation/{{Observation_Kolesterol}}\",\r\n \"display\": \"Observasi Kolesterol\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_CTAngiografiKoroner}}\",\r\n \"display\": \"Observasi CT Angiografi Koroner\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Diagnosis\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000004\",\r\n \"display\": \"Diagnosis\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Condition/{{Diagnosis_HypertensiveHeartDisease}}\",\r\n \"display\": \"Diagnosis Hypertensive Heart Diseasee\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_TargetOrganDamageHipertensi}}\",\r\n \"display\": \"Observasi Target Organ Damage Hipertensi\"\r\n },\r\n {\r\n \"reference\": \"Condition/{{Diagnosis_Hipertensi}}\",\r\n \"display\": \"Diagnosis Hipertensi\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Tindakan/Prosedur Medis\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000005\",\r\n \"display\": \"Tindakan/Prosedur Medis\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Procedure/{{Procedure_EKGAwal}}\",\r\n \"display\": \"Prosedur EKG Awal Masuk RS \"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_EKGAwal}}\",\r\n \"display\": \"Observasi EKG Awal Masuk RS\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_EKGLanjutan}}\",\r\n \"display\": \"Prosedur EKG Setelah Pengobatan \"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_EKGLanjutan}}\",\r\n \"display\": \"Observasi EKG Setelah Pengobatan\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_Echocardiography}}\",\r\n \"display\": \"Prosedur Ekokardiografi\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_Echocardiography}}\",\r\n \"display\": \"Observasi Ekokardiografi\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_CABG}}\",\r\n \"display\": \"Prosedur CABG\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_IABP}}\",\r\n \"display\": \"Prosedur IABP\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_OperasiKatup}}\",\r\n \"display\": \"Prosedur Operasi Katup\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_GraceScore}}\",\r\n \"display\": \"Observasi Grace Score\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_KillipClass}}\",\r\n \"display\": \"Observasi Killip Class\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Obsevation_PencegahanSekunderPJR}}\",\r\n \"display\": \"Observasi Pencegahan Sekunder PJR\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Obat\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000013\",\r\n \"display\": \"Obat\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"MedicationRequest/{{MedicationRequest_Amlodipine}}\",\r\n \"display\": \"Peresepan Obat Amlodipine\"\r\n }\r\n ]\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcyMjgyOTg4NDU3MjkyOTAwMA\""
},
{
"key": "last-modified",
"value": "Mon, 05 Aug 2024 03:51:24 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Composition/78b1f4b9-edf5-4fbd-a2b4-a407ef3b3d62/_history/MTcyMjgyOTg4NDU3MjkyOTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Mon, 05 Aug 2024 03:51:24 GMT"
},
{
"key": "Content-Length",
"value": "22494"
},
{
"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": "174245ca-171e-4a10-8ca7-41d4088ade00"
},
{
"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 {\n \"display\": \"dr. Victor SpJP\",\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"custodian\": {\n \"reference\": \"Organization/10000004\"\n },\n \"date\": \"2024-03-15T05:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"78b1f4b9-edf5-4fbd-a2b4-a407ef3b3d62\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/creator\",\n \"value\": \"10000004\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-08-05T03:51:24.572929+00:00\",\n \"versionId\": \"MTcyMjgyOTg4NDU3MjkyOTAwMA\"\n },\n \"resourceType\": \"Composition\",\n \"section\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000002\",\n \"display\": \"Episode Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Episode Perawatan Registrasi Jantung\",\n \"reference\": \"EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\"\n }\n ],\n \"title\": \"Episode Perawatan\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000003\",\n \"display\": \"Anamnesis\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Keluhan Utama\",\n \"reference\": \"Condition/f56ff8a2-ed0c-4fa3-88d1-89fcfb07b6bd\"\n },\n {\n \"display\": \"Riwayat Penyakit Asma\",\n \"reference\": \"Condition/3f0a2cb8-44e1-4ccf-bd00-caf84fa60730\"\n },\n {\n \"display\": \"Riwayat Gagal Jantung di Keluarga\",\n \"reference\": \"Condition/04e0a285-f12b-4cdf-959e-772b130c14eb\"\n },\n {\n \"display\": \"Observasi Faktor Risiko Hipertensi\",\n \"reference\": \"Observation/9826ef25-ebc5-49dd-ba13-84b91a73ce2a\"\n },\n {\n \"display\": \"Observasi Faktor Risiko Diabetes Mellitus\",\n \"reference\": \"Observation/2fd29330-aac0-491e-a1cb-76ce571f8efe\"\n },\n {\n \"display\": \"Observasi Faktor Risiko Dislipidemia\",\n \"reference\": \"Observation/e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e\"\n },\n {\n \"display\": \"Observasi Faktor Risiko Merokok\",\n \"reference\": \"Observation/937da678-555b-418d-8474-e0331d2231c1\"\n }\n ],\n \"title\": \"Anamnesis\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000007\",\n \"display\": \"Pemeriksaan Fisik\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Observasi Tekanan Darah Diastol\",\n \"reference\": \"Observation/f73841c1-d84a-471b-9d6c-50cdf8667cca\"\n },\n {\n \"display\": \"Observasi Tekanan Darah Sistol\",\n \"reference\": \"Observation/256487e7-08fc-44b0-8b55-9e2f6a36f723\"\n },\n {\n \"display\": \"Observasi Berat Badan\",\n \"reference\": \"Observation/add7ce13-c586-40a2-a0b6-28d835ef47fa\"\n },\n {\n \"display\": \"Observasi Tinggi Badan\",\n \"reference\": \"Observation/45fe5e2f-a81e-44bd-b45d-bfa4a913b8e4\"\n }\n ],\n \"title\": \"Pemeriksaan Fisik\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000009\",\n \"display\": \"Hasil Pemeriksaan Penunjang\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Observasi Kolesterol\",\n \"reference\": \"Observation/fbe6edb4-4946-4397-b583-f9fc0578f1e7\"\n },\n {\n \"display\": \"Observasi CT Angiografi Koroner\",\n \"reference\": \"Observation/bf5d887f-bb8c-417e-9a56-d4f6dd771912\"\n }\n ],\n \"title\": \"Hasil Pemeriksaan Penunjang\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000004\",\n \"display\": \"Diagnosis\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Diagnosis Hypertensive Heart Diseasee\",\n \"reference\": \"Condition/be36e61e-a318-45b8-a48d-4becf1205e77\"\n },\n {\n \"display\": \"Observasi Target Organ Damage Hipertensi\",\n \"reference\": \"Observation/1ce44bc5-ba57-477a-a0d1-965f74d88cd0\"\n },\n {\n \"display\": \"Diagnosis Hipertensi\",\n \"reference\": \"Condition/5bdfd9f6-e1e9-4f19-a2c9-493f17876db1\"\n }\n ],\n \"title\": \"Diagnosis\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000005\",\n \"display\": \"Tindakan/Prosedur Medis\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Prosedur EKG Awal Masuk RS \",\n \"reference\": \"Procedure/b1fc61fc-0165-4e77-b698-f33ba3a8b6dd\"\n },\n {\n \"display\": \"Observasi EKG Awal Masuk RS\",\n \"reference\": \"Observation/4fffb7a0-ed28-4470-91b6-0ff851b890b7\"\n },\n {\n \"display\": \"Prosedur EKG Setelah Pengobatan \",\n \"reference\": \"Procedure/5817d109-cc26-4d22-9827-19f8ca3a4750\"\n },\n {\n \"display\": \"Observasi EKG Setelah Pengobatan\",\n \"reference\": \"Observation/39593bef-91f5-42f3-b496-7816a80f2754\"\n },\n {\n \"display\": \"Prosedur Ekokardiografi\",\n \"reference\": \"Procedure/5382aa0e-3c7c-4b0a-8a63-4970f696f133\"\n },\n {\n \"display\": \"Observasi Ekokardiografi\",\n \"reference\": \"Observation/47d6ad70-c70d-401f-a155-a07d9ccab689\"\n },\n {\n \"display\": \"Prosedur CABG\",\n \"reference\": \"Procedure/407388e4-43cd-4abd-b79a-677377bf83fd\"\n },\n {\n \"display\": \"Prosedur IABP\",\n \"reference\": \"Procedure/b6e8f686-2388-4985-b7f9-08cdb620a569\"\n },\n {\n \"display\": \"Prosedur Operasi Katup\",\n \"reference\": \"Procedure/cb6664d7-2c82-4126-a91e-aad816ebdf67\"\n },\n {\n \"display\": \"Observasi Grace Score\",\n \"reference\": \"Observation/c2d4e5ce-ff69-4761-83d9-2e1d74040725\"\n },\n {\n \"display\": \"Observasi Killip Class\",\n \"reference\": \"Observation/9600862c-8c1a-41ff-b8e2-79bf95d3829e\"\n },\n {\n \"display\": \"Observasi Pencegahan Sekunder PJR\",\n \"reference\": \"Observation/1b28b215-74d6-4d40-abd8-3fa041be5cca\"\n }\n ],\n \"title\": \"Tindakan/Prosedur Medis\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000013\",\n \"display\": \"Obat\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Peresepan Obat Amlodipine\",\n \"reference\": \"MedicationRequest/f430fdde-93d8-4dc8-9787-9f0f822cbd70\"\n }\n ],\n \"title\": \"Obat\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"title\": \"Data Registrasi Jantung\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"TK000001\",\n \"display\": \"Data Registrasi Jantung\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"plaintext\": \"\\\"{\\\\\\\"author\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"dr. Victor SpJP\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Practitioner/N10000006\\\\\\\"}],\\\\\\\"custodian\\\\\\\":{\\\\\\\"reference\\\\\\\":\\\\\\\"Organization/10000004\\\\\\\"},\\\\\\\"date\\\\\\\":\\\\\\\"2024-03-15T05:05:00+00:00\\\\\\\",\\\\\\\"encounter\\\\\\\":{\\\\\\\"reference\\\\\\\":\\\\\\\"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\\\\\\\"},\\\\\\\"id\\\\\\\":\\\\\\\"78b1f4b9-edf5-4fbd-a2b4-a407ef3b3d62\\\\\\\",\\\\\\\"identifier\\\\\\\":{\\\\\\\"system\\\\\\\":\\\\\\\"http://sys-ids.kemkes.go.id/creator\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"10000004\\\\\\\"},\\\\\\\"meta\\\\\\\":{\\\\\\\"lastUpdated\\\\\\\":\\\\\\\"2024-08-05T03:51:24.572929+00:00\\\\\\\",\\\\\\\"versionId\\\\\\\":\\\\\\\"MTcyMjgyOTg4NDU3MjkyOTAwMA\\\\\\\"},\\\\\\\"resourceType\\\\\\\":\\\\\\\"Composition\\\\\\\",\\\\\\\"section\\\\\\\":[{\\\\\\\"code\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000002\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Episode Perawatan\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]},\\\\\\\"entry\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"Episode Perawatan Registrasi Jantung\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\\\\\\\"}],\\\\\\\"title\\\\\\\":\\\\\\\"Episode Perawatan\\\\\\\"},{\\\\\\\"code\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000003\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Anamnesis\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]},\\\\\\\"entry\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"Keluhan Utama\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Condition/f56ff8a2-ed0c-4fa3-88d1-89fcfb07b6bd\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Riwayat Penyakit Asma\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Condition/3f0a2cb8-44e1-4ccf-bd00-caf84fa60730\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Riwayat Gagal Jantung di Keluarga\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Condition/04e0a285-f12b-4cdf-959e-772b130c14eb\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Faktor Risiko Hipertensi\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/9826ef25-ebc5-49dd-ba13-84b91a73ce2a\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Faktor Risiko Diabetes Mellitus\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/2fd29330-aac0-491e-a1cb-76ce571f8efe\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Faktor Risiko Dislipidemia\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Faktor Risiko Merokok\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/937da678-555b-418d-8474-e0331d2231c1\\\\\\\"}],\\\\\\\"title\\\\\\\":\\\\\\\"Anamnesis\\\\\\\"},{\\\\\\\"code\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000007\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Pemeriksaan Fisik\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]},\\\\\\\"entry\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Tekanan Darah Diastol\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/f73841c1-d84a-471b-9d6c-50cdf8667cca\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Tekanan Darah Sistol\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/256487e7-08fc-44b0-8b55-9e2f6a36f723\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Berat Badan\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/add7ce13-c586-40a2-a0b6-28d835ef47fa\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Tinggi Badan\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/45fe5e2f-a81e-44bd-b45d-bfa4a913b8e4\\\\\\\"}],\\\\\\\"title\\\\\\\":\\\\\\\"Pemeriksaan Fisik\\\\\\\"},{\\\\\\\"code\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000009\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Hasil Pemeriksaan Penunjang\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]},\\\\\\\"entry\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Kolesterol\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/fbe6edb4-4946-4397-b583-f9fc0578f1e7\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi CT Angiografi Koroner\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/bf5d887f-bb8c-417e-9a56-d4f6dd771912\\\\\\\"}],\\\\\\\"title\\\\\\\":\\\\\\\"Hasil Pemeriksaan Penunjang\\\\\\\"},{\\\\\\\"code\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000004\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Diagnosis\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]},\\\\\\\"entry\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"Diagnosis Hypertensive Heart Diseasee\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Condition/be36e61e-a318-45b8-a48d-4becf1205e77\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Target Organ Damage Hipertensi\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/1ce44bc5-ba57-477a-a0d1-965f74d88cd0\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Diagnosis Hipertensi\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Condition/5bdfd9f6-e1e9-4f19-a2c9-493f17876db1\\\\\\\"}],\\\\\\\"title\\\\\\\":\\\\\\\"Diagnosis\\\\\\\"},{\\\\\\\"code\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000005\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Tindakan/Prosedur Medis\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]},\\\\\\\"entry\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"Prosedur EKG Awal Masuk RS \\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Procedure/b1fc61fc-0165-4e77-b698-f33ba3a8b6dd\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi EKG Awal Masuk RS\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/4fffb7a0-ed28-4470-91b6-0ff851b890b7\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Prosedur EKG Setelah Pengobatan \\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Procedure/5817d109-cc26-4d22-9827-19f8ca3a4750\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi EKG Setelah Pengobatan\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/39593bef-91f5-42f3-b496-7816a80f2754\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Prosedur Ekokardiografi\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Procedure/5382aa0e-3c7c-4b0a-8a63-4970f696f133\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Ekokardiografi\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/47d6ad70-c70d-401f-a155-a07d9ccab689\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Prosedur CABG\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Procedure/407388e4-43cd-4abd-b79a-677377bf83fd\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Prosedur IABP\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Procedure/b6e8f686-2388-4985-b7f9-08cdb620a569\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Prosedur Operasi Katup\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Procedure/cb6664d7-2c82-4126-a91e-aad816ebdf67\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Grace Score\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/c2d4e5ce-ff69-4761-83d9-2e1d74040725\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Killip Class\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/9600862c-8c1a-41ff-b8e2-79bf95d3829e\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Pencegahan Sekunder PJR\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/1b28b215-74d6-4d40-abd8-3fa041be5cca\\\\\\\"}],\\\\\\\"title\\\\\\\":\\\\\\\"Tindakan/Prosedur Medis\\\\\\\"},{\\\\\\\"code\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000013\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Obat\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]},\\\\\\\"entry\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"Peresepan Obat Amlodipine\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"MedicationRequest/f430fdde-93d8-4dc8-9787-9f0f822cbd70\\\\\\\"}],\\\\\\\"title\\\\\\\":\\\\\\\"Obat\\\\\\\"}],\\\\\\\"status\\\\\\\":\\\\\\\"final\\\\\\\",\\\\\\\"subject\\\\\\\":{\\\\\\\"display\\\\\\\":\\\\\\\"Diana Smith\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Patient/100000030006\\\\\\\"},\\\\\\\"title\\\\\\\":\\\\\\\"Data Registrasi Jantung\\\\\\\",\\\\\\\"type\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000001\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Data Registrasi Jantung\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]}}\\\"\",\n \"encrypted\": \"5e74c73ef90bb3f048fc350212fc5d94bb8ef5afcf903058da4664bbd60531fb0f41f79f9270ae1ea8af5843c7ee66ed1527fbe22ee6cec98d592ee4685b7b0d53519c2adf212270ab2a874dc4295cf7308bb4e6262fd4fdd33f786d9ef5943f3e73591b5aeadf4b506e915d9e9922c90de95597cd9b0f2999147df5561306e6cd2e9fd91e1c614b9999a5192c3f7a53dda397212d13852cdba084c9cc8ecf14ed27657983025389d31953a675b43d3fe19b3bc8fdc343f902bb2d389a1467d9e962bcc4a35f0d8a5f488ee79c56d01c35630ca58292725bf01f435a917a4e4ea9ebf5ee8c48ad321ad394bd163626d311c36e910642f6c88951871dda4bf04ead0714acdd207ab217a140ea2141d6be49e04f75d9b7881596883c850bb843b3175a97054d6e81cf9c8c5bf64bf16fc4a9093ac1cb4642a68373b142422fcf3931784b5f82755a819d5d69c3577dee5884331e917268681bbb20f57b56504a691b18bd2adb9e0afdff800cbcd0e4adcaac7ca6d48c16c704ff5c32e527ca721c7711c91f4274751b9db64b318b828d2f5825f80cb582d9db0d052386159d2730e83e6cf9364c848b2d921364a3adfbfe4f2f7c00e5ebeb9e7ea65c657c870f1c04939b7c0f76abd1a5139771ef011a9781fa1c4f97d6c3538f1a237d6460c4a8fa6803c1a02797fb034592cc7ff3831094d3a7456b924c175611facb6fe855fd0fa5216061e513f277d5441f765cb73ecbcc393c9dd3bedd0a2e363d347371baabd86f5d1fd16256fa7a349be2dc507b894a820ab7408f636d034e700739e5bc7853e7ee3d5d00c83be33c1c6b91703f073071a7a100d2534c63c08b78cc49d51af9774736b514bf8ccf1b9fe714ce9875c3a2853b2e96390d8740ea61ba95a39ac1afaea19ee6732e24d4def7d4ebadac07b73f07e155c340f9c6cb972caba720eac4f880ff73ad7b9f0457487e654a4fbbb514969ccb9ba6329a6a80cfbdcc4eed3acbe7107885a59ca4fa222f8599eab1f44850902ba94a0ecff08e409e155399c7df201f09300955beebcbca2bbb5f210b6d46c5e5b8cb852cd21419cee6d0b36fafa5a9384305d0005badf0747df68f6353721acce07c33174afb1a4bd8219d4d524c590d5161176f66b7de4c72f88d1ec4f8229b16a7e755bdd95c9478ca69122b59c7611614b1f40c72e3440e9938beea5442ad877bcc4187069c7dce67cd67d3117d0bb9d3c8a3ecd1a4c368175e27fe18f1d97a4ab61bc4fa576a75337f9cdf8616ef5b371fbda8878def61b7dc33f59c3a728d4bbab14d71ede9bfce8ad5fc560bf7886fd25bb36cee1c88817db8a3f2d3b60f4328b5ad1e2d40fa6982fa66e6647988470a2067b9a4af9606d5c674035c816c7e8b0397129d593bf76f139d4f5afc0fb1d84583a3d19ff246ba29aaae71ea56e9aca790119232f434689a309f67464573a0f7faf3b7c9070e5f14fb2c942e3fc29df9b977a3990a6e0131dcf45b281fc7dbc8dcff447e91fc7b3a45ec63e565672e319cb232cde1d0bdef581ca9eec12e7e114ca98856c0c12378db696f44fabed4b5c0308dcb84216e08d9d5f5b59777830ec2796ba19c29c3c6d39b6a43c321d4358f888643df901544237aabd43f3683fd1458c41a558af73889088e759a8c88bcd974be990268e311ad6be9ab184614305c306e3cb8f48f8251d1206b30a8eb17934a18bc6a1d35d327201cbdab46551e3982a9e9aa9419b4871bcb06e78ea193b8f670b43588fa6249608995fc671de2370f598153f11b9d6ff53f905fea25fc9be2a039cf6c15b6dd2bed86a84857bbc046a00cd69635caec1e427f4c6226bd0a72516f8e4a424ad18631edc40d77c6c9cc7ad65ea63a78081d143d18490bd66e9932bbc4582bf05095d722d6bd26bbc60d43af30156e095aee20b842ffd982a897246b7a6e732cd4678226a75772fee030a5a1f636efe55b1e8e40455db3a3276222a88e3a7a9626e848e5cbb6bc361ed33bdcce16597f75555d0d2bc47b36f3737502ac463b1aadc58c08a477a1560ee54ef13c10f5435742f7502d1b217eeda2dd16e92b2bddb5d2a74c8e4deb9a4374f0bb98db478810c1a7c38011507adab2d593eb133667608938140002e7b8f0275a03fbd128a1a37bd8fd26940514a446effc48c2e60c04c9ac4d58098ec8f2fafbbbd7db357de9ae0fdfbf987b3d653bd064fe407a2c5081e8805a534433be384448a02f1742817b718a37bd3578d45c97bfb78cbee25467f223857d2e6a324171b614f51a75c1d7355acbca92a091d7af680b735dbcf6b509a75749ff2861571827f734e6bdd8afb7665ba0ef79c585bf4ce638d7456e2e7f968130f6e1144b801eb6cafa5b3b88f0aa4caf479f30cc503bc1c97614cade102d2a83d25c2d0049c5c150305df24b40b36f6af8e915735e0028b93bc69c0577a0bd3f660f22f4950cbe0e0eef8307dc232f5076cce339e9c1bf473f5a5d2f224a15d03b7ce39bcb4f18c9248209131d1c1b207f152684eae016cde8d087ce2b81564bad3a6b420033cf8555ea4b52fdfc38dbd643ec783525167e6ca31b2189d97b7515429bebb2e94ab762ee6f55807f71f4a8c38304175524c0891d313d075427a363d10b429938dbcd19ed7c84ec5bfbe787cb546d838cfa04742dcdbe19de5c2eab8f84bf326d58ed5a4651c9b651fbbdbe56b37476382d9048d46f33ac060a7f82b092b8a83e9e12572a4ec14952d88d9958a8cc3f576189192cbb0c3bded3dc2db55f0951851c60410a0e0ff20a90a79a5db90147beba7e4bb265ceff1ef6769f172e4250c4dfe785393b99db52742c523e79339bbef56d03bae10170aaed4c993be0e73ca2a36f4835afd56848f6b05db103f0cf565b873629b4bfe2bab9eb35c4ef9a83dd8e149134e660407a17e4be30ed6200ca82f354b601ad2ab94aa7594a6a2f33f29e79ac2e5b81cae6ae60acd2b5bd55b371949701b078bf07a7988c03d6426e9c2898cf770b3dd3bab68eb2989cb4968e57cdc89e9407fc49ba19ff5e2fab18bcb18bea9b06ac1fb0e00eacbf0713d8b669cc06635adea64da99162c6c003a656bcd67e27794dcc32d713caa47f9a4cfb7ac2de2e0293d23d919c64af5018e769c8dbfd5ed9636cb5dc0c16a56d7b6e2a3bc8d34721947eb544a72b15e7f0093392d9e151f34f68774abb99c87c001fef470d40872779b1c428dfabecf7b794d0d1396d4218bc904345efe774c6b80e77c918e493c4fd7d6ef0d98ed16ad010ba01117b9767b751a526d6f1493e43a20fe9fb5e6e9c290a1e67cd3b9b8a3291d102fb36029bdd267d691f76d6ca0086db08ad2e94a2a8bc5c89830abe4ccd4211b58152e25ccc8e4cd7c4a4db9685298d6d4cbbfec4939127a7ab6d1ab4cc5576d49f599c6fee909fb262b07cba4be36541022bffeed0e611cee23627e4bedc8d88fe9f5ab5f8819adea9053ed6f42aa658f9bdc57894d03ec9ac215b41177a36c023454e8298148d25a2a1449e1a6a66a1445ba237792bd35a742238e1b8ecdd823a5f2c94c7b8f2388aff5a39d140fb92f9cb9c777f78754f4f05e37430e950f6c1cbb1fa97e4ed5bda652ef597b072b9081e620bd59174169016d65d3d28c0e42f98650ac8b6c633f3fb7634bcb4f6328a3eef359b65fb9b89f38a3c1f9cc253fd1023398d8b844cad1dc87d1b96df33443fe171f917fdff182d0c5f99c9a88ac9fad6cd4ae553fa110347177a39b6b877ecc67616200320d9aa2bdd81e7ee43c574efa14fa4e75f2ca1732bf8316d9c5597c6982fe7af80b1cbbe756fd44ff475711fe1205c8ea4f5aa212c8c66f2500c9f3701a884dfc89ae489b67d57b7bb57a27670d6be0f59672aca645c2b08359b7b6a98a4afa8cd3233c0c1a3341c46e625a0d89b8cbf6cac6a5e899c841c361d1acc6a8e9902739f20f86153545458ba15ee23990bcd90e4795432a7d1c8fed4fc6b033dace72475854a3941421e96ec1a824b8c104961fa19451d960ac3cfc4ce3c348a1b2bffc3f282859f9a43de32d917137f56cfc987622c9227079e9d9a2fa59e2a7c7d7886e966c98a6fc778c00b3e664149927117b049022b974e419619a1861a52cfeceeab98803ec055d664e0b5bccc73d44518fc2c31d3cc1284344641bf6a64b2d8ededbe4f645b09803968bf3ad06d710b4bf05a5a1af386e321fc4dbc8479a8daad9baf8213c8cb47f46ba83eaf29d5edc7b3dac9c30ca3491bb14d0bb46b48f3a6c72aa894e81e0f8f43037e851896ea9bbbe7f0b6ed0dd8d8e805d3e37a8e8512848849961eaea1b01e578d4e338331d6cabbae926bd3c9eb5973d8f972494436d54ea771ddc74d36773981fbfdf6ad2a4626b9d139058a1eb7406099488c1c1fe77e2675a641f2a936dcacb5fee3b46299ec234d54200e18b7c838090cb0323b83af2a5ba40684b739cfaa06101671a13694e9ab12686f096265dccfbab69180bcd9cb112d90e501288c2806626963350cc546bb927aa7d70f387484e646fd5e8614c9fadb53674885935010f2e2e8ec741a9d1d7922b16e7c7d270edd4cbfac18bdec4c3ac86af2b666a245541ef23839de3aa27843874458f85c269446120111bb846cac31f81198a991c5addb2985a420dafcde97f0ec537f675fe10a79d6a59c4c2bac4af001bb8a8f55a63e7bd0d8c5cee2ed0ae50698d572b38fca003688623a0a8ea42c3a1e198574920803ab897a3bb3472085116dca6076da353dd010f73f86f0bab5835c217b5bd0012859b7590ca924f201eb9e4e115013ef57842cadd186df66e8864901ed03a91b6f2cb852b0a7c9aea7986d58572c0161f2339a8b83a38a3ef4f5c57e41c28b056c52978f7fec5b7554bc72a26e88d542391dd4df864012ec55bb6c5762f65dbd14012e8214e4caa89c149ea3a54bdcf58767af9638a2af2fdb27f17008d00d324a846344c7586e81cd629bf170246eb1a0619166670285ae29e7f324b6ebbd7bc1df964d7b2b6cdcd48235d02f95604b71055fd733b510c42f386a1611cdcb688295fffe8b4ec9ec98b77134bb74735ce7a4c0801e3cfc4cd82e482d1caf1fe79652f40fa681682691e43de6fe775556e87bee336d68445616fdb191992b5c6a47c4578666f2764974ec1a89a18e170b14fcf95608cd872b3ec14e7f7d4218d3aa1c45989783bf33d90325df5a135cb2a1f5fd22e118326944f0027000a11666a194bd2a89227d4d9888e75ec9f8fc4b27df297be15e87d74551b540ecd5b39918aa2d507bd3633ae5ed9909f99bade2824409d08ea7ab88eda7e89a019fecfc44e37bc26d899ca493308547a57947d970e9a3a28f9683ab016b15fb1bdbbb78ce7ee59e06a7579e878e00a75c41e2033a73012a1edac0c7de9ce2882714e82258ca5bb1e8413c4ea586cbe8e8a619ec2b0875209fbc95c37eca5fc2ebd7a565dd42bf126a71da1768a972b5149a83c2405d72f9cb21cd1cbee4c1d8df1311d8f8104bc02c7fbe5b97a54df6edd41d36bcea92ad939da720ac17e7e03e30d8f613fd8a6afba7e26fb3c064121216138ef5da7196baab61e181098682d2135d04cbff9fdbe358ce0bf00907058c620de48edf04d47cdb769fc5a12595967504137a76ecce7af3ed8638fbae5bb1613bf5342f6a2692b0f733f884eb5543c216984506c26bd9cbed5d48b8d448fe140f7b9869ba9240af15bcbe7692e04f967f6a521c355f47ac16e15d7e386cb28b8e4686050bfec35947962dcf88684c8c7521fb9df74211f7fff0a167fc627dc4f4a8ff77cbc4ffa88b051bff1efdd3c014d09df09212af9ba952798c97912b1003c57b1a18caaa617906ee00307d8ccbb4a045161100908a7d2a8ecec45f9fedf01399dff1d47ce18ec077f90efb3d13295993caf55ffddb1bae208b0c24c63385b91306ec86a47cd3ccdde32e912b9fd0d8a480ee2133b84b802cf5dd595d181d4c2986fb3118002a67521ad39f49cad31a53beda2513b13ff3bdff545d7847117cb2f5f3da29bd42445fb424567c35a3972fe3fdde5aaa70f056e9a25078bc6bc9cfb9338f38d1080a3f83b9d96df2da92703b29da1671b992493d969f543f88579883ed67fb1bd4dadbc443cf68a89257d12c70f556345b97ef328020834df78d734ec3e80b642b44e9e9f2b77760d30d7d058a87a54ade30c5841159c3449f343a9fa6fe87bcc3de2fb48b69a59b662bd8565308f25803a315a7c6c1a7b89113ad678ffa196f74abad8f51653cbb9c2a85521bc736f3fc3bd3fd1a5ec8f6eea9bcc0b7e366a6c13d4f2f642aa0c23dcfd176900a047aee6ecb4486c76e78f2b770e5973806162a002620b7ecbddf469c7bfaee433f5c5a716191f4fc0df422d219b5e04a665c74fc7954c2ce6ca1a1b55c9defbbeb8870f8673eea9d13e12e8783d5624f9f96923981049db8853aef6588c2db19aed88759538a906d7937afbe0aa21df5d57ff7208656f1acd3c5aa78da6726a403151f4ca1ff1b2cd5559108f8f42ce5045bfcd5b484ba0c52758ab1329dd89aba8ee4183ebca3af4d9cd08c9e62ce59f122b10ad2c1f7e3c58dda8ed47b348b27db5793dfdd37986519f54b09c895197f4d2a3d9eefefafc49b0ab7d3efa81b174d202eef4db960309d7aced93cf067fc1e70c7d41c8b60cf33625592dcda0121249a0677a6b7ee6b49e32440b856a6f6ee8c8981bd77169c74ca3879f45d8defc6048ec50a55c36b5995f2b4929f1d873e1df55c0861f99f84e8bd73299c7c4980968955cda6ab2315b094bc1d21ad6a95c3455cd70f57a86b9ce4eee7a981b4e7b61430ef42c0b83e56227be8e9f530bf4e08716bf9a2a0b9cec7ea8c1e67aa3dbbc40d679131bb4d7645f85a1fc80ffbfba6a0406a3811ecc909cde69ee6129ed25fbc98ebb0e937a3e929ab0a35c4e30f51cf3a0608a6d1ee72f5ae56ee57d7722ddc7d379b785149e882bf7c864b68442e54789d1369760e464789782284e7bf8560cecc15edcd1ebe32d2d0d236a574a6279ba39683751f0569879f47880712337e236ddb62bc4f7f30c65602874f4e43b16acde551790f847fffb17b1c03e1a24eadc1cd65a26004d4d47125d9d34582a95ff4dacf1130de8ae62ad01ffdee4b2cc7aaad7cfe5a01b5ae71af0a9b4ee6465ffbcd9f78982aae0f3142ab637e947082c884a49000cb87c388a97f15a73426aac9c6e7897884672a01c30e6297f5b16afb966fe7e5aabb643d7b8f941ad49bc2f028001a1fd5e83a657b970006540028b7423a5953c64ac8319b9cb219b7c9fa4e9f9869f1a23f53d3669e64d532bb63d8c226b35c30a7d0f63f08c27313bbcf074e299f3d0a0d27e707c793c33e0bf252e2745ae4c098a6b8a7619454590ac9a715bc9ddd96018aac743a9531a763d249b14732e2aa865d260e608ec39bfae8b968e0867ba91af81884cb01960b66a852f46545a7c0218b3af7cdac0cd511bcef5556b8b1c37b8b8668a9238a999bc9038d520180b79c8be98eb7e276f252edcd18470b9d9c944c513e9774e08617ffab8ab6fbcdbda6fe144a2002ee31e49cd239a47583b941f1524644cfb35024641ee8e05762994a6aa6a4f7abd55dd241ed8a95e55661d2aa33da9cdd2a68b9c2642dc30a443c8c59f87d7a078fac34a84c7987a07634f89fce39a812c48379bf4eb544a2433c84822c69094a98def7a5ff79f1f2b7e6d5374442fed76e5c3fac6ce435f32c78b08174fdd7630966ade11ed5444c5205634557cd19cf1c18445427014bc10b8e381d58a52f991a9c84b4c30a9cbd892339960df8c1a14ac7cba8f702c15f45b2543ea2a831533b1613a417335b9454b2c032a74b06691614c8913c4cb06600000000\"\n}"
}
]
},
{
"name": "Dokumen Registrasi Jantung",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Composition\",\r\n \"identifier\": {\r\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\r\n \"value\": \"{{Registration_ID}}\"\r\n },\r\n \"status\": \"final\",\r\n \"type\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000001\",\r\n \"display\": \"Data Registrasi Jantung\"\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 \"date\": \"2024-03-15T05:05:00+00:00\",\r\n \"author\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"title\": \"Data Registrasi Jantung\",\r\n \"custodian\": {\r\n \"reference\": \"Organization/{{Org_id}}\"\r\n },\r\n \"section\": [\r\n {\r\n \"title\": \"Episode Perawatan\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000002\",\r\n \"display\": \"Episode Perawatan\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_Jantung}}\",\r\n \"display\": \"Episode Perawatan Registrasi Jantung\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Anamnesis\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000003\",\r\n \"display\": \"Anamnesis\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Condition/{{Keluhan_Utama}}\",\r\n \"display\": \"Keluhan Utama\"\r\n },\r\n {\r\n \"reference\": \"Condition/{{Condition_RiwayatAsma}}\",\r\n \"display\": \"Riwayat Penyakit Asma\"\r\n },\r\n {\r\n \"reference\": \"Condition/{{Condition_RiwayatJantungKeluarga}}\",\r\n \"display\": \"Riwayat Gagal Jantung di Keluarga\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoHipertensi}}\",\r\n \"display\": \"Observasi Faktor Risiko Hipertensi\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoDM}}\",\r\n \"display\": \"Observasi Faktor Risiko Diabetes Mellitus\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoDislipidemia}}\",\r\n \"display\": \"Observasi Faktor Risiko Dislipidemia\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoMerokok}}\",\r\n \"display\": \"Observasi Faktor Risiko Merokok\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Pemeriksaan Fisik\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000007\",\r\n \"display\": \"Pemeriksaan Fisik\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Observation/{{Observation_Diastole}}\",\r\n \"display\": \"Observasi Tekanan Darah Diastol\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_Sistole}}\",\r\n \"display\": \"Observasi Tekanan Darah Sistol\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_BeratBadan}}\",\r\n \"display\": \"Observasi Berat Badan\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_TinggiBadan}}\",\r\n \"display\": \"Observasi Tinggi Badan\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Hasil Pemeriksaan Penunjang\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000009\",\r\n \"display\": \"Hasil Pemeriksaan Penunjang\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Observation/{{Observation_Kolesterol}}\",\r\n \"display\": \"Observasi Kolesterol\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_CTAngiografiKoroner}}\",\r\n \"display\": \"Observasi CT Angiografi Koroner\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Diagnosis\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000004\",\r\n \"display\": \"Diagnosis\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Condition/{{Diagnosis_HypertensiveHeartDisease}}\",\r\n \"display\": \"Diagnosis Hypertensive Heart Diseasee\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_TargetOrganDamageHipertensi}}\",\r\n \"display\": \"Observasi Target Organ Damage Hipertensi\"\r\n },\r\n {\r\n \"reference\": \"Condition/{{Diagnosis_Hipertensi}}\",\r\n \"display\": \"Diagnosis Hipertensi\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Tindakan/Prosedur Medis\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000005\",\r\n \"display\": \"Tindakan/Prosedur Medis\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Procedure/{{Procedure_EKGAwal}}\",\r\n \"display\": \"Prosedur EKG Awal Masuk RS \"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_EKGAwal}}\",\r\n \"display\": \"Observasi EKG Awal Masuk RS\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_EKGLanjutan}}\",\r\n \"display\": \"Prosedur EKG Setelah Pengobatan \"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_EKGLanjutan}}\",\r\n \"display\": \"Observasi EKG Setelah Pengobatan\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_Echocardiography}}\",\r\n \"display\": \"Prosedur Ekokardiografi\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_Echocardiography}}\",\r\n \"display\": \"Observasi Ekokardiografi\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_CABG}}\",\r\n \"display\": \"Prosedur CABG\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_IABP}}\",\r\n \"display\": \"Prosedur IABP\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_OperasiKatup}}\",\r\n \"display\": \"Prosedur Operasi Katup\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_GraceScore}}\",\r\n \"display\": \"Observasi Grace Score\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_KillipClass}}\",\r\n \"display\": \"Observasi Killip Class\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Obsevation_PencegahanSekunderPJR}}\",\r\n \"display\": \"Observasi Pencegahan Sekunder PJR\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Obat\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000013\",\r\n \"display\": \"Obat\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"MedicationRequest/{{MedicationRequest_Amlodipine}}\",\r\n \"display\": \"Peresepan Obat Amlodipine\"\r\n }\r\n ]\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"response": [
{
"name": "Dokumen Registrasi Jantung",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"resourceType\": \"Composition\",\r\n \"identifier\": {\r\n \"system\": \"http://sys-ids.kemkes.go.id/composition/{{Org_id}}\",\r\n \"value\": \"{{Registration_ID}}\"\r\n },\r\n \"status\": \"final\",\r\n \"type\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000001\",\r\n \"display\": \"Data Registrasi Jantung\"\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 \"date\": \"2024-03-15T05:05:00+00:00\",\r\n \"author\": [\r\n {\r\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\r\n \"display\": \"{{Practitioner_Name}}\"\r\n }\r\n ],\r\n \"title\": \"Data Registrasi Jantung\",\r\n \"custodian\": {\r\n \"reference\": \"Organization/{{Org_id}}\"\r\n },\r\n \"section\": [\r\n {\r\n \"title\": \"Episode Perawatan\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000002\",\r\n \"display\": \"Episode Perawatan\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_Jantung}}\",\r\n \"display\": \"Episode Perawatan Registrasi Jantung\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Anamnesis\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000003\",\r\n \"display\": \"Anamnesis\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Condition/{{Keluhan_Utama}}\",\r\n \"display\": \"Keluhan Utama\"\r\n },\r\n {\r\n \"reference\": \"Condition/{{Condition_RiwayatAsma}}\",\r\n \"display\": \"Riwayat Penyakit Asma\"\r\n },\r\n {\r\n \"reference\": \"Condition/{{Condition_RiwayatJantungKeluarga}}\",\r\n \"display\": \"Riwayat Gagal Jantung di Keluarga\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoHipertensi}}\",\r\n \"display\": \"Observasi Faktor Risiko Hipertensi\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoDM}}\",\r\n \"display\": \"Observasi Faktor Risiko Diabetes Mellitus\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoDislipidemia}}\",\r\n \"display\": \"Observasi Faktor Risiko Dislipidemia\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_FaktorRisikoMerokok}}\",\r\n \"display\": \"Observasi Faktor Risiko Merokok\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Pemeriksaan Fisik\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000007\",\r\n \"display\": \"Pemeriksaan Fisik\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Observation/{{Observation_Diastole}}\",\r\n \"display\": \"Observasi Tekanan Darah Diastol\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_Sistole}}\",\r\n \"display\": \"Observasi Tekanan Darah Sistol\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_BeratBadan}}\",\r\n \"display\": \"Observasi Berat Badan\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_TinggiBadan}}\",\r\n \"display\": \"Observasi Tinggi Badan\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Hasil Pemeriksaan Penunjang\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000009\",\r\n \"display\": \"Hasil Pemeriksaan Penunjang\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Observation/{{Observation_Kolesterol}}\",\r\n \"display\": \"Observasi Kolesterol\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_CTAngiografiKoroner}}\",\r\n \"display\": \"Observasi CT Angiografi Koroner\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Diagnosis\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000004\",\r\n \"display\": \"Diagnosis\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Condition/{{Diagnosis_HypertensiveHeartDisease}}\",\r\n \"display\": \"Diagnosis Hypertensive Heart Diseasee\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_TargetOrganDamageHipertensi}}\",\r\n \"display\": \"Observasi Target Organ Damage Hipertensi\"\r\n },\r\n {\r\n \"reference\": \"Condition/{{Diagnosis_Hipertensi}}\",\r\n \"display\": \"Diagnosis Hipertensi\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Tindakan/Prosedur Medis\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000005\",\r\n \"display\": \"Tindakan/Prosedur Medis\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"Procedure/{{Procedure_EKGAwal}}\",\r\n \"display\": \"Prosedur EKG Awal Masuk RS \"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_EKGAwal}}\",\r\n \"display\": \"Observasi EKG Awal Masuk RS\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_EKGLanjutan}}\",\r\n \"display\": \"Prosedur EKG Setelah Pengobatan \"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_EKGLanjutan}}\",\r\n \"display\": \"Observasi EKG Setelah Pengobatan\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_Echocardiography}}\",\r\n \"display\": \"Prosedur Ekokardiografi\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_Echocardiography}}\",\r\n \"display\": \"Observasi Ekokardiografi\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_CABG}}\",\r\n \"display\": \"Prosedur CABG\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_IABP}}\",\r\n \"display\": \"Prosedur IABP\"\r\n },\r\n {\r\n \"reference\": \"Procedure/{{Procedure_OperasiKatup}}\",\r\n \"display\": \"Prosedur Operasi Katup\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_GraceScore}}\",\r\n \"display\": \"Observasi Grace Score\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Observation_KillipClass}}\",\r\n \"display\": \"Observasi Killip Class\"\r\n },\r\n {\r\n \"reference\": \"Observation/{{Obsevation_PencegahanSekunderPJR}}\",\r\n \"display\": \"Observasi Pencegahan Sekunder PJR\"\r\n }\r\n ]\r\n },\r\n {\r\n \"title\": \"Obat\",\r\n \"code\": {\r\n \"coding\": [\r\n {\r\n \"system\": \"http://terminology.kemkes.go.id\",\r\n \"code\": \"TK000013\",\r\n \"display\": \"Obat\"\r\n }\r\n ]\r\n },\r\n \"entry\": [\r\n {\r\n \"reference\": \"MedicationRequest/{{MedicationRequest_Amlodipine}}\",\r\n \"display\": \"Peresepan Obat Amlodipine\"\r\n }\r\n ]\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Composition",
"host": [
"{{base_url}}"
],
"path": [
"Composition"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcyMjgyOTg4NDU3MjkyOTAwMA\""
},
{
"key": "last-modified",
"value": "Mon, 05 Aug 2024 03:51:24 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Composition/78b1f4b9-edf5-4fbd-a2b4-a407ef3b3d62/_history/MTcyMjgyOTg4NDU3MjkyOTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Mon, 05 Aug 2024 03:51:24 GMT"
},
{
"key": "Content-Length",
"value": "22494"
},
{
"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": "174245ca-171e-4a10-8ca7-41d4088ade00"
},
{
"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 {\n \"display\": \"dr. Victor SpJP\",\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"custodian\": {\n \"reference\": \"Organization/10000004\"\n },\n \"date\": \"2024-03-15T05:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"78b1f4b9-edf5-4fbd-a2b4-a407ef3b3d62\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/creator\",\n \"value\": \"10000004\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-08-05T03:51:24.572929+00:00\",\n \"versionId\": \"MTcyMjgyOTg4NDU3MjkyOTAwMA\"\n },\n \"resourceType\": \"Composition\",\n \"section\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000002\",\n \"display\": \"Episode Perawatan\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Episode Perawatan Registrasi Jantung\",\n \"reference\": \"EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\"\n }\n ],\n \"title\": \"Episode Perawatan\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000003\",\n \"display\": \"Anamnesis\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Keluhan Utama\",\n \"reference\": \"Condition/f56ff8a2-ed0c-4fa3-88d1-89fcfb07b6bd\"\n },\n {\n \"display\": \"Riwayat Penyakit Asma\",\n \"reference\": \"Condition/3f0a2cb8-44e1-4ccf-bd00-caf84fa60730\"\n },\n {\n \"display\": \"Riwayat Gagal Jantung di Keluarga\",\n \"reference\": \"Condition/04e0a285-f12b-4cdf-959e-772b130c14eb\"\n },\n {\n \"display\": \"Observasi Faktor Risiko Hipertensi\",\n \"reference\": \"Observation/9826ef25-ebc5-49dd-ba13-84b91a73ce2a\"\n },\n {\n \"display\": \"Observasi Faktor Risiko Diabetes Mellitus\",\n \"reference\": \"Observation/2fd29330-aac0-491e-a1cb-76ce571f8efe\"\n },\n {\n \"display\": \"Observasi Faktor Risiko Dislipidemia\",\n \"reference\": \"Observation/e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e\"\n },\n {\n \"display\": \"Observasi Faktor Risiko Merokok\",\n \"reference\": \"Observation/937da678-555b-418d-8474-e0331d2231c1\"\n }\n ],\n \"title\": \"Anamnesis\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000007\",\n \"display\": \"Pemeriksaan Fisik\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Observasi Tekanan Darah Diastol\",\n \"reference\": \"Observation/f73841c1-d84a-471b-9d6c-50cdf8667cca\"\n },\n {\n \"display\": \"Observasi Tekanan Darah Sistol\",\n \"reference\": \"Observation/256487e7-08fc-44b0-8b55-9e2f6a36f723\"\n },\n {\n \"display\": \"Observasi Berat Badan\",\n \"reference\": \"Observation/add7ce13-c586-40a2-a0b6-28d835ef47fa\"\n },\n {\n \"display\": \"Observasi Tinggi Badan\",\n \"reference\": \"Observation/45fe5e2f-a81e-44bd-b45d-bfa4a913b8e4\"\n }\n ],\n \"title\": \"Pemeriksaan Fisik\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000009\",\n \"display\": \"Hasil Pemeriksaan Penunjang\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Observasi Kolesterol\",\n \"reference\": \"Observation/fbe6edb4-4946-4397-b583-f9fc0578f1e7\"\n },\n {\n \"display\": \"Observasi CT Angiografi Koroner\",\n \"reference\": \"Observation/bf5d887f-bb8c-417e-9a56-d4f6dd771912\"\n }\n ],\n \"title\": \"Hasil Pemeriksaan Penunjang\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000004\",\n \"display\": \"Diagnosis\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Diagnosis Hypertensive Heart Diseasee\",\n \"reference\": \"Condition/be36e61e-a318-45b8-a48d-4becf1205e77\"\n },\n {\n \"display\": \"Observasi Target Organ Damage Hipertensi\",\n \"reference\": \"Observation/1ce44bc5-ba57-477a-a0d1-965f74d88cd0\"\n },\n {\n \"display\": \"Diagnosis Hipertensi\",\n \"reference\": \"Condition/5bdfd9f6-e1e9-4f19-a2c9-493f17876db1\"\n }\n ],\n \"title\": \"Diagnosis\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000005\",\n \"display\": \"Tindakan/Prosedur Medis\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Prosedur EKG Awal Masuk RS \",\n \"reference\": \"Procedure/b1fc61fc-0165-4e77-b698-f33ba3a8b6dd\"\n },\n {\n \"display\": \"Observasi EKG Awal Masuk RS\",\n \"reference\": \"Observation/4fffb7a0-ed28-4470-91b6-0ff851b890b7\"\n },\n {\n \"display\": \"Prosedur EKG Setelah Pengobatan \",\n \"reference\": \"Procedure/5817d109-cc26-4d22-9827-19f8ca3a4750\"\n },\n {\n \"display\": \"Observasi EKG Setelah Pengobatan\",\n \"reference\": \"Observation/39593bef-91f5-42f3-b496-7816a80f2754\"\n },\n {\n \"display\": \"Prosedur Ekokardiografi\",\n \"reference\": \"Procedure/5382aa0e-3c7c-4b0a-8a63-4970f696f133\"\n },\n {\n \"display\": \"Observasi Ekokardiografi\",\n \"reference\": \"Observation/47d6ad70-c70d-401f-a155-a07d9ccab689\"\n },\n {\n \"display\": \"Prosedur CABG\",\n \"reference\": \"Procedure/407388e4-43cd-4abd-b79a-677377bf83fd\"\n },\n {\n \"display\": \"Prosedur IABP\",\n \"reference\": \"Procedure/b6e8f686-2388-4985-b7f9-08cdb620a569\"\n },\n {\n \"display\": \"Prosedur Operasi Katup\",\n \"reference\": \"Procedure/cb6664d7-2c82-4126-a91e-aad816ebdf67\"\n },\n {\n \"display\": \"Observasi Grace Score\",\n \"reference\": \"Observation/c2d4e5ce-ff69-4761-83d9-2e1d74040725\"\n },\n {\n \"display\": \"Observasi Killip Class\",\n \"reference\": \"Observation/9600862c-8c1a-41ff-b8e2-79bf95d3829e\"\n },\n {\n \"display\": \"Observasi Pencegahan Sekunder PJR\",\n \"reference\": \"Observation/1b28b215-74d6-4d40-abd8-3fa041be5cca\"\n }\n ],\n \"title\": \"Tindakan/Prosedur Medis\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"TK000013\",\n \"display\": \"Obat\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"entry\": [\n {\n \"display\": \"Peresepan Obat Amlodipine\",\n \"reference\": \"MedicationRequest/f430fdde-93d8-4dc8-9787-9f0f822cbd70\"\n }\n ],\n \"title\": \"Obat\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"title\": \"Data Registrasi Jantung\",\n \"type\": {\n \"coding\": [\n {\n \"code\": \"TK000001\",\n \"display\": \"Data Registrasi Jantung\",\n \"system\": \"http://terminology.kemkes.go.id\"\n }\n ]\n },\n \"plaintext\": \"\\\"{\\\\\\\"author\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"dr. Victor SpJP\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Practitioner/N10000006\\\\\\\"}],\\\\\\\"custodian\\\\\\\":{\\\\\\\"reference\\\\\\\":\\\\\\\"Organization/10000004\\\\\\\"},\\\\\\\"date\\\\\\\":\\\\\\\"2024-03-15T05:05:00+00:00\\\\\\\",\\\\\\\"encounter\\\\\\\":{\\\\\\\"reference\\\\\\\":\\\\\\\"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\\\\\\\"},\\\\\\\"id\\\\\\\":\\\\\\\"78b1f4b9-edf5-4fbd-a2b4-a407ef3b3d62\\\\\\\",\\\\\\\"identifier\\\\\\\":{\\\\\\\"system\\\\\\\":\\\\\\\"http://sys-ids.kemkes.go.id/creator\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"10000004\\\\\\\"},\\\\\\\"meta\\\\\\\":{\\\\\\\"lastUpdated\\\\\\\":\\\\\\\"2024-08-05T03:51:24.572929+00:00\\\\\\\",\\\\\\\"versionId\\\\\\\":\\\\\\\"MTcyMjgyOTg4NDU3MjkyOTAwMA\\\\\\\"},\\\\\\\"resourceType\\\\\\\":\\\\\\\"Composition\\\\\\\",\\\\\\\"section\\\\\\\":[{\\\\\\\"code\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000002\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Episode Perawatan\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]},\\\\\\\"entry\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"Episode Perawatan Registrasi Jantung\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\\\\\\\"}],\\\\\\\"title\\\\\\\":\\\\\\\"Episode Perawatan\\\\\\\"},{\\\\\\\"code\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000003\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Anamnesis\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]},\\\\\\\"entry\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"Keluhan Utama\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Condition/f56ff8a2-ed0c-4fa3-88d1-89fcfb07b6bd\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Riwayat Penyakit Asma\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Condition/3f0a2cb8-44e1-4ccf-bd00-caf84fa60730\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Riwayat Gagal Jantung di Keluarga\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Condition/04e0a285-f12b-4cdf-959e-772b130c14eb\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Faktor Risiko Hipertensi\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/9826ef25-ebc5-49dd-ba13-84b91a73ce2a\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Faktor Risiko Diabetes Mellitus\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/2fd29330-aac0-491e-a1cb-76ce571f8efe\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Faktor Risiko Dislipidemia\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Faktor Risiko Merokok\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/937da678-555b-418d-8474-e0331d2231c1\\\\\\\"}],\\\\\\\"title\\\\\\\":\\\\\\\"Anamnesis\\\\\\\"},{\\\\\\\"code\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000007\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Pemeriksaan Fisik\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]},\\\\\\\"entry\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Tekanan Darah Diastol\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/f73841c1-d84a-471b-9d6c-50cdf8667cca\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Tekanan Darah Sistol\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/256487e7-08fc-44b0-8b55-9e2f6a36f723\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Berat Badan\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/add7ce13-c586-40a2-a0b6-28d835ef47fa\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Tinggi Badan\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/45fe5e2f-a81e-44bd-b45d-bfa4a913b8e4\\\\\\\"}],\\\\\\\"title\\\\\\\":\\\\\\\"Pemeriksaan Fisik\\\\\\\"},{\\\\\\\"code\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000009\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Hasil Pemeriksaan Penunjang\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]},\\\\\\\"entry\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Kolesterol\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/fbe6edb4-4946-4397-b583-f9fc0578f1e7\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi CT Angiografi Koroner\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/bf5d887f-bb8c-417e-9a56-d4f6dd771912\\\\\\\"}],\\\\\\\"title\\\\\\\":\\\\\\\"Hasil Pemeriksaan Penunjang\\\\\\\"},{\\\\\\\"code\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000004\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Diagnosis\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]},\\\\\\\"entry\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"Diagnosis Hypertensive Heart Diseasee\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Condition/be36e61e-a318-45b8-a48d-4becf1205e77\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Target Organ Damage Hipertensi\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/1ce44bc5-ba57-477a-a0d1-965f74d88cd0\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Diagnosis Hipertensi\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Condition/5bdfd9f6-e1e9-4f19-a2c9-493f17876db1\\\\\\\"}],\\\\\\\"title\\\\\\\":\\\\\\\"Diagnosis\\\\\\\"},{\\\\\\\"code\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000005\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Tindakan/Prosedur Medis\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]},\\\\\\\"entry\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"Prosedur EKG Awal Masuk RS \\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Procedure/b1fc61fc-0165-4e77-b698-f33ba3a8b6dd\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi EKG Awal Masuk RS\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/4fffb7a0-ed28-4470-91b6-0ff851b890b7\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Prosedur EKG Setelah Pengobatan \\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Procedure/5817d109-cc26-4d22-9827-19f8ca3a4750\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi EKG Setelah Pengobatan\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/39593bef-91f5-42f3-b496-7816a80f2754\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Prosedur Ekokardiografi\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Procedure/5382aa0e-3c7c-4b0a-8a63-4970f696f133\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Ekokardiografi\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/47d6ad70-c70d-401f-a155-a07d9ccab689\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Prosedur CABG\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Procedure/407388e4-43cd-4abd-b79a-677377bf83fd\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Prosedur IABP\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Procedure/b6e8f686-2388-4985-b7f9-08cdb620a569\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Prosedur Operasi Katup\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Procedure/cb6664d7-2c82-4126-a91e-aad816ebdf67\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Grace Score\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/c2d4e5ce-ff69-4761-83d9-2e1d74040725\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Killip Class\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/9600862c-8c1a-41ff-b8e2-79bf95d3829e\\\\\\\"},{\\\\\\\"display\\\\\\\":\\\\\\\"Observasi Pencegahan Sekunder PJR\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Observation/1b28b215-74d6-4d40-abd8-3fa041be5cca\\\\\\\"}],\\\\\\\"title\\\\\\\":\\\\\\\"Tindakan/Prosedur Medis\\\\\\\"},{\\\\\\\"code\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000013\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Obat\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]},\\\\\\\"entry\\\\\\\":[{\\\\\\\"display\\\\\\\":\\\\\\\"Peresepan Obat Amlodipine\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"MedicationRequest/f430fdde-93d8-4dc8-9787-9f0f822cbd70\\\\\\\"}],\\\\\\\"title\\\\\\\":\\\\\\\"Obat\\\\\\\"}],\\\\\\\"status\\\\\\\":\\\\\\\"final\\\\\\\",\\\\\\\"subject\\\\\\\":{\\\\\\\"display\\\\\\\":\\\\\\\"Diana Smith\\\\\\\",\\\\\\\"reference\\\\\\\":\\\\\\\"Patient/100000030006\\\\\\\"},\\\\\\\"title\\\\\\\":\\\\\\\"Data Registrasi Jantung\\\\\\\",\\\\\\\"type\\\\\\\":{\\\\\\\"coding\\\\\\\":[{\\\\\\\"code\\\\\\\":\\\\\\\"TK000001\\\\\\\",\\\\\\\"display\\\\\\\":\\\\\\\"Data Registrasi Jantung\\\\\\\",\\\\\\\"system\\\\\\\":\\\\\\\"http://terminology.kemkes.go.id\\\\\\\"}]}}\\\"\",\n \"encrypted\": \"5e74c73ef90bb3f048fc350212fc5d94bb8ef5afcf903058da4664bbd60531fb0f41f79f9270ae1ea8af5843c7ee66ed1527fbe22ee6cec98d592ee4685b7b0d53519c2adf212270ab2a874dc4295cf7308bb4e6262fd4fdd33f786d9ef5943f3e73591b5aeadf4b506e915d9e9922c90de95597cd9b0f2999147df5561306e6cd2e9fd91e1c614b9999a5192c3f7a53dda397212d13852cdba084c9cc8ecf14ed27657983025389d31953a675b43d3fe19b3bc8fdc343f902bb2d389a1467d9e962bcc4a35f0d8a5f488ee79c56d01c35630ca58292725bf01f435a917a4e4ea9ebf5ee8c48ad321ad394bd163626d311c36e910642f6c88951871dda4bf04ead0714acdd207ab217a140ea2141d6be49e04f75d9b7881596883c850bb843b3175a97054d6e81cf9c8c5bf64bf16fc4a9093ac1cb4642a68373b142422fcf3931784b5f82755a819d5d69c3577dee5884331e917268681bbb20f57b56504a691b18bd2adb9e0afdff800cbcd0e4adcaac7ca6d48c16c704ff5c32e527ca721c7711c91f4274751b9db64b318b828d2f5825f80cb582d9db0d052386159d2730e83e6cf9364c848b2d921364a3adfbfe4f2f7c00e5ebeb9e7ea65c657c870f1c04939b7c0f76abd1a5139771ef011a9781fa1c4f97d6c3538f1a237d6460c4a8fa6803c1a02797fb034592cc7ff3831094d3a7456b924c175611facb6fe855fd0fa5216061e513f277d5441f765cb73ecbcc393c9dd3bedd0a2e363d347371baabd86f5d1fd16256fa7a349be2dc507b894a820ab7408f636d034e700739e5bc7853e7ee3d5d00c83be33c1c6b91703f073071a7a100d2534c63c08b78cc49d51af9774736b514bf8ccf1b9fe714ce9875c3a2853b2e96390d8740ea61ba95a39ac1afaea19ee6732e24d4def7d4ebadac07b73f07e155c340f9c6cb972caba720eac4f880ff73ad7b9f0457487e654a4fbbb514969ccb9ba6329a6a80cfbdcc4eed3acbe7107885a59ca4fa222f8599eab1f44850902ba94a0ecff08e409e155399c7df201f09300955beebcbca2bbb5f210b6d46c5e5b8cb852cd21419cee6d0b36fafa5a9384305d0005badf0747df68f6353721acce07c33174afb1a4bd8219d4d524c590d5161176f66b7de4c72f88d1ec4f8229b16a7e755bdd95c9478ca69122b59c7611614b1f40c72e3440e9938beea5442ad877bcc4187069c7dce67cd67d3117d0bb9d3c8a3ecd1a4c368175e27fe18f1d97a4ab61bc4fa576a75337f9cdf8616ef5b371fbda8878def61b7dc33f59c3a728d4bbab14d71ede9bfce8ad5fc560bf7886fd25bb36cee1c88817db8a3f2d3b60f4328b5ad1e2d40fa6982fa66e6647988470a2067b9a4af9606d5c674035c816c7e8b0397129d593bf76f139d4f5afc0fb1d84583a3d19ff246ba29aaae71ea56e9aca790119232f434689a309f67464573a0f7faf3b7c9070e5f14fb2c942e3fc29df9b977a3990a6e0131dcf45b281fc7dbc8dcff447e91fc7b3a45ec63e565672e319cb232cde1d0bdef581ca9eec12e7e114ca98856c0c12378db696f44fabed4b5c0308dcb84216e08d9d5f5b59777830ec2796ba19c29c3c6d39b6a43c321d4358f888643df901544237aabd43f3683fd1458c41a558af73889088e759a8c88bcd974be990268e311ad6be9ab184614305c306e3cb8f48f8251d1206b30a8eb17934a18bc6a1d35d327201cbdab46551e3982a9e9aa9419b4871bcb06e78ea193b8f670b43588fa6249608995fc671de2370f598153f11b9d6ff53f905fea25fc9be2a039cf6c15b6dd2bed86a84857bbc046a00cd69635caec1e427f4c6226bd0a72516f8e4a424ad18631edc40d77c6c9cc7ad65ea63a78081d143d18490bd66e9932bbc4582bf05095d722d6bd26bbc60d43af30156e095aee20b842ffd982a897246b7a6e732cd4678226a75772fee030a5a1f636efe55b1e8e40455db3a3276222a88e3a7a9626e848e5cbb6bc361ed33bdcce16597f75555d0d2bc47b36f3737502ac463b1aadc58c08a477a1560ee54ef13c10f5435742f7502d1b217eeda2dd16e92b2bddb5d2a74c8e4deb9a4374f0bb98db478810c1a7c38011507adab2d593eb133667608938140002e7b8f0275a03fbd128a1a37bd8fd26940514a446effc48c2e60c04c9ac4d58098ec8f2fafbbbd7db357de9ae0fdfbf987b3d653bd064fe407a2c5081e8805a534433be384448a02f1742817b718a37bd3578d45c97bfb78cbee25467f223857d2e6a324171b614f51a75c1d7355acbca92a091d7af680b735dbcf6b509a75749ff2861571827f734e6bdd8afb7665ba0ef79c585bf4ce638d7456e2e7f968130f6e1144b801eb6cafa5b3b88f0aa4caf479f30cc503bc1c97614cade102d2a83d25c2d0049c5c150305df24b40b36f6af8e915735e0028b93bc69c0577a0bd3f660f22f4950cbe0e0eef8307dc232f5076cce339e9c1bf473f5a5d2f224a15d03b7ce39bcb4f18c9248209131d1c1b207f152684eae016cde8d087ce2b81564bad3a6b420033cf8555ea4b52fdfc38dbd643ec783525167e6ca31b2189d97b7515429bebb2e94ab762ee6f55807f71f4a8c38304175524c0891d313d075427a363d10b429938dbcd19ed7c84ec5bfbe787cb546d838cfa04742dcdbe19de5c2eab8f84bf326d58ed5a4651c9b651fbbdbe56b37476382d9048d46f33ac060a7f82b092b8a83e9e12572a4ec14952d88d9958a8cc3f576189192cbb0c3bded3dc2db55f0951851c60410a0e0ff20a90a79a5db90147beba7e4bb265ceff1ef6769f172e4250c4dfe785393b99db52742c523e79339bbef56d03bae10170aaed4c993be0e73ca2a36f4835afd56848f6b05db103f0cf565b873629b4bfe2bab9eb35c4ef9a83dd8e149134e660407a17e4be30ed6200ca82f354b601ad2ab94aa7594a6a2f33f29e79ac2e5b81cae6ae60acd2b5bd55b371949701b078bf07a7988c03d6426e9c2898cf770b3dd3bab68eb2989cb4968e57cdc89e9407fc49ba19ff5e2fab18bcb18bea9b06ac1fb0e00eacbf0713d8b669cc06635adea64da99162c6c003a656bcd67e27794dcc32d713caa47f9a4cfb7ac2de2e0293d23d919c64af5018e769c8dbfd5ed9636cb5dc0c16a56d7b6e2a3bc8d34721947eb544a72b15e7f0093392d9e151f34f68774abb99c87c001fef470d40872779b1c428dfabecf7b794d0d1396d4218bc904345efe774c6b80e77c918e493c4fd7d6ef0d98ed16ad010ba01117b9767b751a526d6f1493e43a20fe9fb5e6e9c290a1e67cd3b9b8a3291d102fb36029bdd267d691f76d6ca0086db08ad2e94a2a8bc5c89830abe4ccd4211b58152e25ccc8e4cd7c4a4db9685298d6d4cbbfec4939127a7ab6d1ab4cc5576d49f599c6fee909fb262b07cba4be36541022bffeed0e611cee23627e4bedc8d88fe9f5ab5f8819adea9053ed6f42aa658f9bdc57894d03ec9ac215b41177a36c023454e8298148d25a2a1449e1a6a66a1445ba237792bd35a742238e1b8ecdd823a5f2c94c7b8f2388aff5a39d140fb92f9cb9c777f78754f4f05e37430e950f6c1cbb1fa97e4ed5bda652ef597b072b9081e620bd59174169016d65d3d28c0e42f98650ac8b6c633f3fb7634bcb4f6328a3eef359b65fb9b89f38a3c1f9cc253fd1023398d8b844cad1dc87d1b96df33443fe171f917fdff182d0c5f99c9a88ac9fad6cd4ae553fa110347177a39b6b877ecc67616200320d9aa2bdd81e7ee43c574efa14fa4e75f2ca1732bf8316d9c5597c6982fe7af80b1cbbe756fd44ff475711fe1205c8ea4f5aa212c8c66f2500c9f3701a884dfc89ae489b67d57b7bb57a27670d6be0f59672aca645c2b08359b7b6a98a4afa8cd3233c0c1a3341c46e625a0d89b8cbf6cac6a5e899c841c361d1acc6a8e9902739f20f86153545458ba15ee23990bcd90e4795432a7d1c8fed4fc6b033dace72475854a3941421e96ec1a824b8c104961fa19451d960ac3cfc4ce3c348a1b2bffc3f282859f9a43de32d917137f56cfc987622c9227079e9d9a2fa59e2a7c7d7886e966c98a6fc778c00b3e664149927117b049022b974e419619a1861a52cfeceeab98803ec055d664e0b5bccc73d44518fc2c31d3cc1284344641bf6a64b2d8ededbe4f645b09803968bf3ad06d710b4bf05a5a1af386e321fc4dbc8479a8daad9baf8213c8cb47f46ba83eaf29d5edc7b3dac9c30ca3491bb14d0bb46b48f3a6c72aa894e81e0f8f43037e851896ea9bbbe7f0b6ed0dd8d8e805d3e37a8e8512848849961eaea1b01e578d4e338331d6cabbae926bd3c9eb5973d8f972494436d54ea771ddc74d36773981fbfdf6ad2a4626b9d139058a1eb7406099488c1c1fe77e2675a641f2a936dcacb5fee3b46299ec234d54200e18b7c838090cb0323b83af2a5ba40684b739cfaa06101671a13694e9ab12686f096265dccfbab69180bcd9cb112d90e501288c2806626963350cc546bb927aa7d70f387484e646fd5e8614c9fadb53674885935010f2e2e8ec741a9d1d7922b16e7c7d270edd4cbfac18bdec4c3ac86af2b666a245541ef23839de3aa27843874458f85c269446120111bb846cac31f81198a991c5addb2985a420dafcde97f0ec537f675fe10a79d6a59c4c2bac4af001bb8a8f55a63e7bd0d8c5cee2ed0ae50698d572b38fca003688623a0a8ea42c3a1e198574920803ab897a3bb3472085116dca6076da353dd010f73f86f0bab5835c217b5bd0012859b7590ca924f201eb9e4e115013ef57842cadd186df66e8864901ed03a91b6f2cb852b0a7c9aea7986d58572c0161f2339a8b83a38a3ef4f5c57e41c28b056c52978f7fec5b7554bc72a26e88d542391dd4df864012ec55bb6c5762f65dbd14012e8214e4caa89c149ea3a54bdcf58767af9638a2af2fdb27f17008d00d324a846344c7586e81cd629bf170246eb1a0619166670285ae29e7f324b6ebbd7bc1df964d7b2b6cdcd48235d02f95604b71055fd733b510c42f386a1611cdcb688295fffe8b4ec9ec98b77134bb74735ce7a4c0801e3cfc4cd82e482d1caf1fe79652f40fa681682691e43de6fe775556e87bee336d68445616fdb191992b5c6a47c4578666f2764974ec1a89a18e170b14fcf95608cd872b3ec14e7f7d4218d3aa1c45989783bf33d90325df5a135cb2a1f5fd22e118326944f0027000a11666a194bd2a89227d4d9888e75ec9f8fc4b27df297be15e87d74551b540ecd5b39918aa2d507bd3633ae5ed9909f99bade2824409d08ea7ab88eda7e89a019fecfc44e37bc26d899ca493308547a57947d970e9a3a28f9683ab016b15fb1bdbbb78ce7ee59e06a7579e878e00a75c41e2033a73012a1edac0c7de9ce2882714e82258ca5bb1e8413c4ea586cbe8e8a619ec2b0875209fbc95c37eca5fc2ebd7a565dd42bf126a71da1768a972b5149a83c2405d72f9cb21cd1cbee4c1d8df1311d8f8104bc02c7fbe5b97a54df6edd41d36bcea92ad939da720ac17e7e03e30d8f613fd8a6afba7e26fb3c064121216138ef5da7196baab61e181098682d2135d04cbff9fdbe358ce0bf00907058c620de48edf04d47cdb769fc5a12595967504137a76ecce7af3ed8638fbae5bb1613bf5342f6a2692b0f733f884eb5543c216984506c26bd9cbed5d48b8d448fe140f7b9869ba9240af15bcbe7692e04f967f6a521c355f47ac16e15d7e386cb28b8e4686050bfec35947962dcf88684c8c7521fb9df74211f7fff0a167fc627dc4f4a8ff77cbc4ffa88b051bff1efdd3c014d09df09212af9ba952798c97912b1003c57b1a18caaa617906ee00307d8ccbb4a045161100908a7d2a8ecec45f9fedf01399dff1d47ce18ec077f90efb3d13295993caf55ffddb1bae208b0c24c63385b91306ec86a47cd3ccdde32e912b9fd0d8a480ee2133b84b802cf5dd595d181d4c2986fb3118002a67521ad39f49cad31a53beda2513b13ff3bdff545d7847117cb2f5f3da29bd42445fb424567c35a3972fe3fdde5aaa70f056e9a25078bc6bc9cfb9338f38d1080a3f83b9d96df2da92703b29da1671b992493d969f543f88579883ed67fb1bd4dadbc443cf68a89257d12c70f556345b97ef328020834df78d734ec3e80b642b44e9e9f2b77760d30d7d058a87a54ade30c5841159c3449f343a9fa6fe87bcc3de2fb48b69a59b662bd8565308f25803a315a7c6c1a7b89113ad678ffa196f74abad8f51653cbb9c2a85521bc736f3fc3bd3fd1a5ec8f6eea9bcc0b7e366a6c13d4f2f642aa0c23dcfd176900a047aee6ecb4486c76e78f2b770e5973806162a002620b7ecbddf469c7bfaee433f5c5a716191f4fc0df422d219b5e04a665c74fc7954c2ce6ca1a1b55c9defbbeb8870f8673eea9d13e12e8783d5624f9f96923981049db8853aef6588c2db19aed88759538a906d7937afbe0aa21df5d57ff7208656f1acd3c5aa78da6726a403151f4ca1ff1b2cd5559108f8f42ce5045bfcd5b484ba0c52758ab1329dd89aba8ee4183ebca3af4d9cd08c9e62ce59f122b10ad2c1f7e3c58dda8ed47b348b27db5793dfdd37986519f54b09c895197f4d2a3d9eefefafc49b0ab7d3efa81b174d202eef4db960309d7aced93cf067fc1e70c7d41c8b60cf33625592dcda0121249a0677a6b7ee6b49e32440b856a6f6ee8c8981bd77169c74ca3879f45d8defc6048ec50a55c36b5995f2b4929f1d873e1df55c0861f99f84e8bd73299c7c4980968955cda6ab2315b094bc1d21ad6a95c3455cd70f57a86b9ce4eee7a981b4e7b61430ef42c0b83e56227be8e9f530bf4e08716bf9a2a0b9cec7ea8c1e67aa3dbbc40d679131bb4d7645f85a1fc80ffbfba6a0406a3811ecc909cde69ee6129ed25fbc98ebb0e937a3e929ab0a35c4e30f51cf3a0608a6d1ee72f5ae56ee57d7722ddc7d379b785149e882bf7c864b68442e54789d1369760e464789782284e7bf8560cecc15edcd1ebe32d2d0d236a574a6279ba39683751f0569879f47880712337e236ddb62bc4f7f30c65602874f4e43b16acde551790f847fffb17b1c03e1a24eadc1cd65a26004d4d47125d9d34582a95ff4dacf1130de8ae62ad01ffdee4b2cc7aaad7cfe5a01b5ae71af0a9b4ee6465ffbcd9f78982aae0f3142ab637e947082c884a49000cb87c388a97f15a73426aac9c6e7897884672a01c30e6297f5b16afb966fe7e5aabb643d7b8f941ad49bc2f028001a1fd5e83a657b970006540028b7423a5953c64ac8319b9cb219b7c9fa4e9f9869f1a23f53d3669e64d532bb63d8c226b35c30a7d0f63f08c27313bbcf074e299f3d0a0d27e707c793c33e0bf252e2745ae4c098a6b8a7619454590ac9a715bc9ddd96018aac743a9531a763d249b14732e2aa865d260e608ec39bfae8b968e0867ba91af81884cb01960b66a852f46545a7c0218b3af7cdac0cd511bcef5556b8b1c37b8b8668a9238a999bc9038d520180b79c8be98eb7e276f252edcd18470b9d9c944c513e9774e08617ffab8ab6fbcdbda6fe144a2002ee31e49cd239a47583b941f1524644cfb35024641ee8e05762994a6aa6a4f7abd55dd241ed8a95e55661d2aa33da9cdd2a68b9c2642dc30a443c8c59f87d7a078fac34a84c7987a07634f89fce39a812c48379bf4eb544a2433c84822c69094a98def7a5ff79f1f2b7e6d5374442fed76e5c3fac6ce435f32c78b08174fdd7630966ade11ed5444c5205634557cd19cf1c18445427014bc10b8e381d58a52f991a9c84b4c30a9cbd892339960df8c1a14ac7cba8f702c15f45b2543ea2a831533b1613a417335b9454b2c032a74b06691614c8913c4cb06600000000\"\n}"
}
]
}
]
}
]
},
{
"name": "Contoh Kasus",
"item": [
{
"name": "1. FKTP - RJ - Hipertensi",
"item": [
{
"name": "00. Membuat Struktur Organisasi dan Lokasi",
"item": [
{
"name": "Organization - Pelayanan UKP",
"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\": \"UKP\"\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\": \"Pelayananan Upaya Kesehatan Perseorangan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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 - Pelayanan UKP",
"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\": \"UKP\"\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\": \"Pelayananan Upaya Kesehatan Perseorangan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Sat, 16 Mar 2024 14:34:06 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDU5OTY0NjU3MTYyODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Organization/ee87ea38-a779-48dd-9e27-67e0a195eedc/_history/MTcxMDU5OTY0NjU3MTYyODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 16 Mar 2024 14:34:06 GMT"
},
{
"key": "Content-Length",
"value": "1197"
},
{
"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": "72db73db-ca50-4d12-adeb-005c56da73bd"
},
{
"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\": \"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\": \"pkm-satusehat@dto.kemkes.go.id\"\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 - Pelayanan Umum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Divisi_uuid\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"Umum\"\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\": \"Pelayanan Umum\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Pelayanan Upaya Kesehatan Perseorangan\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Pelayanan Umum",
"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\": \"Umum\"\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\": \"Pelayanan Umum\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Pelayanan Upaya Kesehatan Perseorangan\"\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/6a86f615-efd2-444c-8be6-fb2b2275fce8/_history/MTcxMDU5OTgxNDI2NjQ2NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Sat, 16 Mar 2024 14:36:54 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDU5OTgxNDI2NjQ2NDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 16 Mar 2024 14:36:54 GMT"
},
{
"key": "Content-Length",
"value": "1219"
},
{
"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": "19e57540-819b-4968-8348-688f3d343f97"
},
{
"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\": \"6a86f615-efd2-444c-8be6-fb2b2275fce8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"Umum\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-16T14:36:54.266464+00:00\",\n \"versionId\": \"MTcxMDU5OTgxNDI2NjQ2NDAwMA\"\n },\n \"name\": \"Pelayanan Umum\",\n \"partOf\": {\n \"display\": \"Pelayanan Upaya Kesehatan Perseorangan\",\n \"reference\": \"Organization/ee87ea38-a779-48dd-9e27-67e0a195eedc\"\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\": \"pkm-satusehat@dto.kemkes.go.id\"\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 - Poli Umum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Location_uuid\", data.id);\r",
"pm.collectionVariables.set(\"Location_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\": \"P-Umum\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Poli Umum\",\n \"description\": \"Poli Umum Puskesmas SATUSEHAT\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Pelayanan Umum\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Poli Umum",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-Umum\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Poli Umum\",\n \"description\": \"Poli Umum Puskesmas SATUSEHAT\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Pelayanan Umum\"\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": "Sat, 16 Mar 2024 14:41:08 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/82b95bbe-3ec6-40c8-bbe9-250037d9b989/_history/MTcxMDYwMDA2ODQ2NTU1NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDYwMDA2ODQ2NTU1NjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 16 Mar 2024 14:41:08 GMT"
},
{
"key": "Content-Length",
"value": "890"
},
{
"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": "eb58b4b3-1363-4537-8d94-23b53a87ed0a"
},
{
"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\": \"Poli Umum Puskesmas SATUSEHAT\",\n \"id\": \"82b95bbe-3ec6-40c8-bbe9-250037d9b989\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000005\",\n \"value\": \"P-Umum\"\n }\n ],\n \"managingOrganization\": {\n \"display\": \"Pelayanan Umum\",\n \"reference\": \"Organization/6a86f615-efd2-444c-8be6-fb2b2275fce8\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-16T14:41:08.465556+00:00\",\n \"versionId\": \"MTcxMDYwMDA2ODQ2NTU1NjAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Poli Umum\",\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\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ]\n}"
}
]
},
{
"name": "Organization - Pelayanan UKP",
"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\": \"UKP\"\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\": \"Pelayananan Upaya Kesehatan Perseorangan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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 - Pelayanan UKP",
"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\": \"UKP\"\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\": \"Pelayananan Upaya Kesehatan Perseorangan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Sat, 16 Mar 2024 14:34:06 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDU5OTY0NjU3MTYyODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Organization/ee87ea38-a779-48dd-9e27-67e0a195eedc/_history/MTcxMDU5OTY0NjU3MTYyODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 16 Mar 2024 14:34:06 GMT"
},
{
"key": "Content-Length",
"value": "1197"
},
{
"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": "72db73db-ca50-4d12-adeb-005c56da73bd"
},
{
"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\": \"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\": \"pkm-satusehat@dto.kemkes.go.id\"\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 - Poli Umum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Location_uuid\", data.id);\r",
"pm.collectionVariables.set(\"Location_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\": \"P-Umum\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Poli Umum\",\n \"description\": \"Poli Umum Puskesmas SATUSEHAT\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Pelayanan Umum\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Poli Umum",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-Umum\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Poli Umum\",\n \"description\": \"Poli Umum Puskesmas SATUSEHAT\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Pelayanan Umum\"\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": "Sat, 16 Mar 2024 14:41:08 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/82b95bbe-3ec6-40c8-bbe9-250037d9b989/_history/MTcxMDYwMDA2ODQ2NTU1NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDYwMDA2ODQ2NTU1NjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 16 Mar 2024 14:41:08 GMT"
},
{
"key": "Content-Length",
"value": "890"
},
{
"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": "eb58b4b3-1363-4537-8d94-23b53a87ed0a"
},
{
"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\": \"Poli Umum Puskesmas SATUSEHAT\",\n \"id\": \"82b95bbe-3ec6-40c8-bbe9-250037d9b989\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000005\",\n \"value\": \"P-Umum\"\n }\n ],\n \"managingOrganization\": {\n \"display\": \"Pelayanan Umum\",\n \"reference\": \"Organization/6a86f615-efd2-444c-8be6-fb2b2275fce8\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-16T14:41:08.465556+00:00\",\n \"versionId\": \"MTcxMDYwMDA2ODQ2NTU1NjAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Poli Umum\",\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\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ]\n}"
}
]
},
{
"name": "Organization - Pelayanan Umum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Divisi_uuid\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"Umum\"\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\": \"Pelayanan Umum\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Pelayanan Upaya Kesehatan Perseorangan\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Pelayanan Umum",
"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\": \"Umum\"\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\": \"Pelayanan Umum\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"+621500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Pelayanan Upaya Kesehatan Perseorangan\"\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/6a86f615-efd2-444c-8be6-fb2b2275fce8/_history/MTcxMDU5OTgxNDI2NjQ2NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Sat, 16 Mar 2024 14:36:54 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDU5OTgxNDI2NjQ2NDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 16 Mar 2024 14:36:54 GMT"
},
{
"key": "Content-Length",
"value": "1219"
},
{
"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": "19e57540-819b-4968-8348-688f3d343f97"
},
{
"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\": \"6a86f615-efd2-444c-8be6-fb2b2275fce8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000005\",\n \"use\": \"official\",\n \"value\": \"Umum\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-16T14:36:54.266464+00:00\",\n \"versionId\": \"MTcxMDU5OTgxNDI2NjQ2NDAwMA\"\n },\n \"name\": \"Pelayanan Umum\",\n \"partOf\": {\n \"display\": \"Pelayanan Upaya Kesehatan Perseorangan\",\n \"reference\": \"Organization/ee87ea38-a779-48dd-9e27-67e0a195eedc\"\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\": \"pkm-satusehat@dto.kemkes.go.id\"\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": "01. Mencari Data Pasien dan Nakes",
"item": [
{
"name": "Patient - ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Patient_Id\", data.id);\r",
"pm.collectionVariables.set(\"Patient_Name\", \"Jane Smith\")"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "P03647103112"
}
]
}
},
"response": [
{
"name": "Patient - ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "P03647103112"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcwNTM5MDU2MzM3NTQ0MzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 16 Jan 2024 07:36:03 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 02 Mar 2024 07:50:08 GMT"
},
{
"key": "content-length",
"value": "1974"
},
{
"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": "738a6cef-4780-46d3-a2ff-3bcc8c68f191"
},
{
"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 \"id\": \"P03647103112\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P03647103112\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d15ed5ce-85f0-49f5-abc0-b0ebb6b29526\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d20bbee0-af21-4794-a95f-47579d1e15be\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e28ebe98-2ed7-46a9-a795-6dbcbd23d38c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7a39d2c4-6c52-4457-82df-24b69efe31e1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35e9a64e-3896-4235-bae4-5a6bdd95e86b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cd8fe34c-b4f4-4eca-a081-b4b0786996b1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/08e427c5-2e10-40df-be8f-7e05ba219763\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7b046615-320d-4e7c-a414-72036eab9706\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ba7906d5-b0c0-41ef-ac07-3009aed90874\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/1a3be152-cb5c-4971-8add-9722dd69d4dc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/82aad5d5-960a-4dc4-8661-82be0cba6967\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/33e74d62-68c6-4dda-80de-776efd96fd18\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/af68e558-4e05-4569-84c0-1889708462cb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/71f9b4fa-8b78-409e-b033-aeee997740ab\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ee3f02d-a628-4fba-a59c-d57d47df75fa\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/2c3565ac-2106-4474-9bad-484755f73e4c\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-01-16T07:36:03.375443+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\": \"MTcwNTM5MDU2MzM3NTQ0MzAwMA\"\n },\n \"resourceType\": \"Patient\"\n}"
}
]
},
{
"name": "Patient - Search Name, Birthdate, Gender",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"pm.collectionVariables.set(\"Patient_Id\", data.id);\r",
"data.name.forEach(name =>{\r",
" if(name.use === \"official\"){pm.collectionVariables.set(\"Patient_Name\", name.text)}\r",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 2&birthdate=2010-04-08&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 2"
},
{
"key": "birthdate",
"value": "2010-04-08"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"response": [
{
"name": "Patient - Search Name, Birthdate, Gender",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 2&birthdate=2010-04-08&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 2"
},
{
"key": "birthdate",
"value": "2010-04-08"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 02 Mar 2024 07:52:39 GMT"
},
{
"key": "content-length",
"value": "3361"
},
{
"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": "c341ef0e-57ab-4f7e-9ff3-8477811550d3"
},
{
"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/P03647103112\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"MALANG\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"7\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"33\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"2005\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"32\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"3\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"DUSUN KRA***\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"2010-04-08\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P03647103112\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P03647103112\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d15ed5ce-85f0-49f5-abc0-b0ebb6b29526\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d20bbee0-af21-4794-a95f-47579d1e15be\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e28ebe98-2ed7-46a9-a795-6dbcbd23d38c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7a39d2c4-6c52-4457-82df-24b69efe31e1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35e9a64e-3896-4235-bae4-5a6bdd95e86b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cd8fe34c-b4f4-4eca-a081-b4b0786996b1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/08e427c5-2e10-40df-be8f-7e05ba219763\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7b046615-320d-4e7c-a414-72036eab9706\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ba7906d5-b0c0-41ef-ac07-3009aed90874\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/1a3be152-cb5c-4971-8add-9722dd69d4dc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/82aad5d5-960a-4dc4-8661-82be0cba6967\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/33e74d62-68c6-4dda-80de-776efd96fd18\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/af68e558-4e05-4569-84c0-1889708462cb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/71f9b4fa-8b78-409e-b033-aeee997740ab\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ee3f02d-a628-4fba-a59c-d57d47df75fa\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/2c3565ac-2106-4474-9bad-484755f73e4c\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-01-16T07:36:03.375443+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\": \"MTcwNTM5MDU2MzM3NTQ0MzAwMA\"\n },\n \"multipleBirthBoolean\": false,\n \"name\": [\n {\n \"text\": \"patient 2\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Practitioner - By ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Practitioner_Id\", data.id);\r",
"var Practitioner_name = \"\";\r",
"data.name.forEach(name => {\r",
" if(name.use === \"official\"){\r",
" name.prefix.forEach(prefix => {Practitioner_name = Practitioner_name + prefix});\r",
" Practitioner_name = Practitioner_name + name.text;\r",
" name.suffix.forEach(suffix =>{Practitioner_name = Practitioner_name +\",\"+ suffix});\r",
" }\r",
"})\r",
"pm.collectionVariables.set(\"Practitioner_Name\", Practitioner_name);\r",
"console.log(Practitioner_name)\r",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000001"
}
]
}
},
"response": [
{
"name": "Practitioner - By ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000001"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTY2OTE3MjI5NTIzMTQ1MjAwMA\""
},
{
"key": "content-type",
"value": "application/fhir+json;charset=utf-8"
},
{
"key": "last-modified",
"value": "Wed, 23 Nov 2022 02:58:15 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Thu, 24 Nov 2022 00:22:35 GMT"
},
{
"key": "content-length",
"value": "3189"
},
{
"key": "x-xss-protection",
"value": "0"
},
{
"key": "x-frame-options",
"value": "SAMEORIGIN"
},
{
"key": "x-content-type-options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "a0a33bde-3338-437c-bd7f-15de9fb3e8e8"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionId\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2023-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"voigt@xyz.com\"\n }\n ]\n}"
}
]
},
{
"name": "Patient - ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Patient_Id\", data.id);\r",
"pm.collectionVariables.set(\"Patient_Name\", \"Jane Smith\")"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "P03647103112"
}
]
}
},
"response": [
{
"name": "Patient - ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "P03647103112"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcwNTM5MDU2MzM3NTQ0MzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 16 Jan 2024 07:36:03 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 02 Mar 2024 07:50:08 GMT"
},
{
"key": "content-length",
"value": "1974"
},
{
"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": "738a6cef-4780-46d3-a2ff-3bcc8c68f191"
},
{
"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 \"id\": \"P03647103112\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P03647103112\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d15ed5ce-85f0-49f5-abc0-b0ebb6b29526\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d20bbee0-af21-4794-a95f-47579d1e15be\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e28ebe98-2ed7-46a9-a795-6dbcbd23d38c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7a39d2c4-6c52-4457-82df-24b69efe31e1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35e9a64e-3896-4235-bae4-5a6bdd95e86b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cd8fe34c-b4f4-4eca-a081-b4b0786996b1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/08e427c5-2e10-40df-be8f-7e05ba219763\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7b046615-320d-4e7c-a414-72036eab9706\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ba7906d5-b0c0-41ef-ac07-3009aed90874\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/1a3be152-cb5c-4971-8add-9722dd69d4dc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/82aad5d5-960a-4dc4-8661-82be0cba6967\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/33e74d62-68c6-4dda-80de-776efd96fd18\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/af68e558-4e05-4569-84c0-1889708462cb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/71f9b4fa-8b78-409e-b033-aeee997740ab\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ee3f02d-a628-4fba-a59c-d57d47df75fa\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/2c3565ac-2106-4474-9bad-484755f73e4c\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-01-16T07:36:03.375443+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\": \"MTcwNTM5MDU2MzM3NTQ0MzAwMA\"\n },\n \"resourceType\": \"Patient\"\n}"
}
]
},
{
"name": "Practitioner - By ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Practitioner_Id\", data.id);\r",
"var Practitioner_name = \"\";\r",
"data.name.forEach(name => {\r",
" if(name.use === \"official\"){\r",
" name.prefix.forEach(prefix => {Practitioner_name = Practitioner_name + prefix});\r",
" Practitioner_name = Practitioner_name + name.text;\r",
" name.suffix.forEach(suffix =>{Practitioner_name = Practitioner_name +\",\"+ suffix});\r",
" }\r",
"})\r",
"pm.collectionVariables.set(\"Practitioner_Name\", Practitioner_name);\r",
"console.log(Practitioner_name)\r",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000001"
}
]
}
},
"response": [
{
"name": "Practitioner - By ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000001"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTY2OTE3MjI5NTIzMTQ1MjAwMA\""
},
{
"key": "content-type",
"value": "application/fhir+json;charset=utf-8"
},
{
"key": "last-modified",
"value": "Wed, 23 Nov 2022 02:58:15 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Thu, 24 Nov 2022 00:22:35 GMT"
},
{
"key": "content-length",
"value": "3189"
},
{
"key": "x-xss-protection",
"value": "0"
},
{
"key": "x-frame-options",
"value": "SAMEORIGIN"
},
{
"key": "x-content-type-options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "a0a33bde-3338-437c-bd7f-15de9fb3e8e8"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionId\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2023-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"voigt@xyz.com\"\n }\n ]\n}"
}
]
},
{
"name": "Patient - Search Name, Birthdate, Gender",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"pm.collectionVariables.set(\"Patient_Id\", data.id);\r",
"data.name.forEach(name =>{\r",
" if(name.use === \"official\"){pm.collectionVariables.set(\"Patient_Name\", name.text)}\r",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 2&birthdate=2010-04-08&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 2"
},
{
"key": "birthdate",
"value": "2010-04-08"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"response": [
{
"name": "Patient - Search Name, Birthdate, Gender",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 2&birthdate=2010-04-08&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 2"
},
{
"key": "birthdate",
"value": "2010-04-08"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 02 Mar 2024 07:52:39 GMT"
},
{
"key": "content-length",
"value": "3361"
},
{
"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": "c341ef0e-57ab-4f7e-9ff3-8477811550d3"
},
{
"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/P03647103112\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"MALANG\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"7\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"33\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"2005\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"32\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"3\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"DUSUN KRA***\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"2010-04-08\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P03647103112\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P03647103112\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d15ed5ce-85f0-49f5-abc0-b0ebb6b29526\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d20bbee0-af21-4794-a95f-47579d1e15be\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e28ebe98-2ed7-46a9-a795-6dbcbd23d38c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7a39d2c4-6c52-4457-82df-24b69efe31e1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35e9a64e-3896-4235-bae4-5a6bdd95e86b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cd8fe34c-b4f4-4eca-a081-b4b0786996b1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/08e427c5-2e10-40df-be8f-7e05ba219763\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7b046615-320d-4e7c-a414-72036eab9706\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ba7906d5-b0c0-41ef-ac07-3009aed90874\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/1a3be152-cb5c-4971-8add-9722dd69d4dc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/82aad5d5-960a-4dc4-8661-82be0cba6967\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/33e74d62-68c6-4dda-80de-776efd96fd18\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/af68e558-4e05-4569-84c0-1889708462cb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/71f9b4fa-8b78-409e-b033-aeee997740ab\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ee3f02d-a628-4fba-a59c-d57d47df75fa\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/2c3565ac-2106-4474-9bad-484755f73e4c\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-01-16T07:36:03.375443+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\": \"MTcwNTM5MDU2MzM3NTQ0MzAwMA\"\n },\n \"multipleBirthBoolean\": false,\n \"name\": [\n {\n \"text\": \"patient 2\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
}
]
},
{
"name": "02. Pendaftaran Kunjungan Pasien",
"item": [
{
"name": "Encounter - Kunjungan Baru",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Encounter_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
},
{
"listen": "prerequest",
"script": {
"exec": [
"//defining yyymmdd as currentDate's YYYYMMDD in string format\r",
"var now = new Date();\r",
"var year = now.getFullYear();\r",
"var month = String(now.getMonth() + 1).padStart(2, '0');\r",
"var day = String(now.getDate()).padStart(2, '0');\r",
"var yyyymmdd = `${year}${month}${day}`;\r",
"\r",
"//Generating 5 digits of stringified random integer to make 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": {}
}
}
],
"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\": \"2024031692291\"\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\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02: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\": \"2024-03-14T02: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\": \"2024031692291\"\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\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02: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\": \"2024-03-14T02: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": "etag",
"value": "W/\"MTcxNTY0NTkyNjc2MzExODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Encounter/{{Encounter_id}}/_history/MTcxNTY0NTkyNjc2MzExODAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 00:18:46 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 00:18:46 GMT"
},
{
"key": "content-length",
"value": "1526"
},
{
"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": "a00a598b-40e9-4160-b4dc-b63fc81598d2"
},
{
"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\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000005\",\n \"value\": \"2024031692291\"\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\": \"Poli Umum\",\n \"reference\": \"Location/82b95bbe-3ec6-40c8-bbe9-250037d9b989\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T00:18:46.763118+00:00\",\n \"versionId\": \"MTcxNTY0NTkyNjc2MzExODAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02: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\": \"2024-03-14T02:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Encounter - Masuk Ruang Pemeriksaan",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024031692291\"\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\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02: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\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T02:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-14T02:15: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 Pemeriksaan",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024031692291\"\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\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02: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\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T02:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-14T02:15: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Encounter/{{Encounter_id}}/_history/MTcxNTY0NjA2ODU5ODUwODAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0NjA2ODU5ODUwODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 00:21:08 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 00:21:08 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": "7434b656-6506-4764-b78e-ae5ce3562426"
},
{
"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\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000005\",\n \"value\": \"2024031692291\"\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\": \"Poli Umum\",\n \"reference\": \"Location/82b95bbe-3ec6-40c8-bbe9-250037d9b989\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T00:21:08.598508+00:00\",\n \"versionId\": \"MTcxNTY0NjA2ODU5ODUwODAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02: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\": \"2024-03-14T02:15:00+00:00\",\n \"start\": \"2024-03-14T02:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-14T02:15:00+00:00\"\n },\n \"status\": \"in-progress\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Encounter - Kunjungan Baru",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Encounter_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
},
{
"listen": "prerequest",
"script": {
"exec": [
"//defining yyymmdd as currentDate's YYYYMMDD in string format\r",
"var now = new Date();\r",
"var year = now.getFullYear();\r",
"var month = String(now.getMonth() + 1).padStart(2, '0');\r",
"var day = String(now.getDate()).padStart(2, '0');\r",
"var yyyymmdd = `${year}${month}${day}`;\r",
"\r",
"//Generating 5 digits of stringified random integer to make 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": {}
}
}
],
"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\": \"2024031692291\"\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\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02: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\": \"2024-03-14T02: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\": \"2024031692291\"\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\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02: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\": \"2024-03-14T02: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": "etag",
"value": "W/\"MTcxNTY0NTkyNjc2MzExODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Encounter/{{Encounter_id}}/_history/MTcxNTY0NTkyNjc2MzExODAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 00:18:46 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 00:18:46 GMT"
},
{
"key": "content-length",
"value": "1526"
},
{
"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": "a00a598b-40e9-4160-b4dc-b63fc81598d2"
},
{
"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\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000005\",\n \"value\": \"2024031692291\"\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\": \"Poli Umum\",\n \"reference\": \"Location/82b95bbe-3ec6-40c8-bbe9-250037d9b989\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T00:18:46.763118+00:00\",\n \"versionId\": \"MTcxNTY0NTkyNjc2MzExODAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02: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\": \"2024-03-14T02:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Encounter - Masuk Ruang Pemeriksaan",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024031692291\"\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\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02: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\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T02:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-14T02:15: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 Pemeriksaan",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024031692291\"\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\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02: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\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T02:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-14T02:15: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Encounter/{{Encounter_id}}/_history/MTcxNTY0NjA2ODU5ODUwODAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0NjA2ODU5ODUwODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 00:21:08 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 00:21:08 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": "7434b656-6506-4764-b78e-ae5ce3562426"
},
{
"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\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000005\",\n \"value\": \"2024031692291\"\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\": \"Poli Umum\",\n \"reference\": \"Location/82b95bbe-3ec6-40c8-bbe9-250037d9b989\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T00:21:08.598508+00:00\",\n \"versionId\": \"MTcxNTY0NjA2ODU5ODUwODAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02: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\": \"2024-03-14T02:15:00+00:00\",\n \"start\": \"2024-03-14T02:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-14T02:15:00+00:00\"\n },\n \"status\": \"in-progress\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "03. Anamnesis",
"item": [
{
"name": "Riwayat Penyakit",
"item": [
{
"name": "Condition - Riwayat Penyakit",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:17:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Riwayat Penyakit",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:17: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/\"MTcxMDgzMjgyOTQ5NTg4NjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 07:20:29 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/3f0a2cb8-44e1-4ccf-bd00-caf84fa60730/_history/MTcxMDgzMjgyOTQ5NTg4NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 07:20:29 GMT"
},
{
"key": "Content-Length",
"value": "762"
},
{
"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": "ff27a292-163d-4f1f-9303-de001bc26205"
},
{
"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\": \"161527007\",\n \"display\": \"H/O: asthma\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"3f0a2cb8-44e1-4ccf-bd00-caf84fa60730\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T07:20:29.495886+00:00\",\n \"versionId\": \"MTcxMDgzMjgyOTQ5NTg4NjAwMA\"\n },\n \"recordedDate\": \"2024-03-14T02:17:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Riwayat Penyakit Keluarga",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:18:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Riwayat Penyakit Keluarga",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:18: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/\"MTcxMDgzMjg2NDgzMDc0ODAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 07:21: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/Condition/04e0a285-f12b-4cdf-959e-772b130c14eb/_history/MTcxMDgzMjg2NDgzMDc0ODAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 07:21:04 GMT"
},
{
"key": "Content-Length",
"value": "782"
},
{
"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": "d6b206f0-3134-4331-9922-13a1b382ac65"
},
{
"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\": \"429959009\",\n \"display\": \"Family history of heart failure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"04e0a285-f12b-4cdf-959e-772b130c14eb\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T07:21:04.830748+00:00\",\n \"versionId\": \"MTcxMDgzMjg2NDgzMDc0ODAwMA\"\n },\n \"recordedDate\": \"2024-03-14T02:18:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Riwayat Penyakit",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:17:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Riwayat Penyakit",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:17: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/\"MTcxMDgzMjgyOTQ5NTg4NjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 07:20:29 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/3f0a2cb8-44e1-4ccf-bd00-caf84fa60730/_history/MTcxMDgzMjgyOTQ5NTg4NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 07:20:29 GMT"
},
{
"key": "Content-Length",
"value": "762"
},
{
"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": "ff27a292-163d-4f1f-9303-de001bc26205"
},
{
"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\": \"161527007\",\n \"display\": \"H/O: asthma\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"3f0a2cb8-44e1-4ccf-bd00-caf84fa60730\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T07:20:29.495886+00:00\",\n \"versionId\": \"MTcxMDgzMjgyOTQ5NTg4NjAwMA\"\n },\n \"recordedDate\": \"2024-03-14T02:17:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Riwayat Penyakit Keluarga",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:18:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Riwayat Penyakit Keluarga",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:18: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/\"MTcxMDgzMjg2NDgzMDc0ODAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 07:21: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/Condition/04e0a285-f12b-4cdf-959e-772b130c14eb/_history/MTcxMDgzMjg2NDgzMDc0ODAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 07:21:04 GMT"
},
{
"key": "Content-Length",
"value": "782"
},
{
"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": "d6b206f0-3134-4331-9922-13a1b382ac65"
},
{
"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\": \"429959009\",\n \"display\": \"Family history of heart failure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"04e0a285-f12b-4cdf-959e-772b130c14eb\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T07:21:04.830748+00:00\",\n \"versionId\": \"MTcxMDgzMjg2NDgzMDc0ODAwMA\"\n },\n \"recordedDate\": \"2024-03-14T02:18:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Riwayat Alergi",
"item": [
{
"name": "AllergyIntolerance - Alergi Telur",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"food\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-14T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/AllergyIntolerance",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
]
}
},
"response": [
{
"name": "AllergyIntolerance - Alergi Telur",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"food\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-14T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/AllergyIntolerance",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNTY0Nzk4MzUyNDM1NDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 00:53: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/AllergyIntolerance/4f2a49ae-4876-4e91-aa37-3f2ab761f45f/_history/MTcxNTY0Nzk4MzUyNDM1NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 00:53:03 GMT"
},
{
"key": "content-length",
"value": "1035"
},
{
"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": "56af03e1-5112-4977-90fa-fec6f9e93950"
},
{
"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 \"food\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"4f2a49ae-4876-4e91-aa37-3f2ab761f45f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000005\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T00:53:03.524354+00:00\",\n \"versionId\": \"MTcxNTY0Nzk4MzUyNDM1NDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2024-03-14T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n}"
}
]
},
{
"name": "AllergyIntolerance - Alergi Telur",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"food\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-14T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/AllergyIntolerance",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
]
}
},
"response": [
{
"name": "AllergyIntolerance - Alergi Telur",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"food\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-14T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/AllergyIntolerance",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNTY0Nzk4MzUyNDM1NDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 00:53: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/AllergyIntolerance/4f2a49ae-4876-4e91-aa37-3f2ab761f45f/_history/MTcxNTY0Nzk4MzUyNDM1NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 00:53:03 GMT"
},
{
"key": "content-length",
"value": "1035"
},
{
"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": "56af03e1-5112-4977-90fa-fec6f9e93950"
},
{
"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 \"food\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"4f2a49ae-4876-4e91-aa37-3f2ab761f45f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000005\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T00:53:03.524354+00:00\",\n \"versionId\": \"MTcxNTY0Nzk4MzUyNDM1NDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2024-03-14T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Riwayat Pengobatan",
"item": [
{
"name": "Obat dari Fasyankes Sendiri",
"item": [
{
"name": "MedicationDispense - Search by Subject",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense?subject=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
],
"query": [
{
"key": "subject",
"value": "100000030006"
}
]
}
},
"response": [
{
"name": "MedicationDispense - Search by Subject",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/MedicationDispense?subject=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
],
"query": [
{
"key": "subject",
"value": "100000030006"
}
]
}
},
"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, 14 May 2024 00:55:05 GMT"
},
{
"key": "content-length",
"value": "31088"
},
{
"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": "e7e27159-ee0b-403f-a1f5-f538eddbebe9"
},
{
"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/MedicationDispense/928db3aa-7087-414e-8acb-3c8a1aff373a\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/59395a17-306d-4941-9e2e-d11765115572\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024041931420-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024041931420-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/10000004\"\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/9d3b8d8a-bc0d-4054-958e-8b106bab6240\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"coding\": [\n {\n \"code\": \"421984009\",\n \"display\": \"Until finished\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Diminum setiap hari sampai habis\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"Jika muncul gejala ruam atau gatal, hubungi IGD RS secepatnya\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"928db3aa-7087-414e-8acb-3c8a1aff373a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024041931420-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-04-19T10:17:42.171297+00:00\",\n \"versionId\": \"MTcxMzUyMTg2MjE3MTI5NzAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/6860499d-da49-4ec7-b699-17bbcb26359e\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/ecaefdbf-3a43-4fdb-8400-7cdde675ba96\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge003\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93020397\",\n \"display\": \"Ibuprofen 400 mg Tablet (PHAPROS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-med003\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"IB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \" 1 kapsul; 3x; Tiap 1 hari; Setelah makan\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"6860499d-da49-4ec7-b699-17bbcb26359e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Ibuprofen 400mg\",\n \"reference\": \"#2024032201944-med003\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:33.928579+00:00\",\n \"versionId\": \"MTcxMTA4MzIxMzkyODU3OTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 15\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/9ddf4471-e729-47d3-a4a7-6d8fc0c4aff1\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/59395a17-306d-4941-9e2e-d11765115572\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge002\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93009470\",\n \"display\": \"Paracetamol 350 mg / Caffeine 50 mg / Ibuprofen 200 mg Tablet (FARSIFEN PLUS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-002\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"PCT001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000101\",\n \"display\": \"Paracetamol\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 350\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000884\",\n \"display\": \"Caffeine\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 50\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 200\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1x1 Tablet per 8 jam, Setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 8,\n \"periodUnit\": \"h\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"9ddf4471-e729-47d3-a4a7-6d8fc0c4aff1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Obat Paracetamol Extra\",\n \"reference\": \"#2024032201944-002\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:19.603965+00:00\",\n \"versionId\": \"MTcxMTA4MzE5OTYwMzk2NTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 10\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/56c173c8-8200-450a-94de-28ee26b53f97\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/08dbc0be-cbac-41a7-ad58-dc5d5f5477e1\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"3 kapsul per hari, diminum setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"56c173c8-8200-450a-94de-28ee26b53f97\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024032201944-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:01.686104+00:00\",\n \"versionId\": \"MTcxMTA4MzE4MTY4NjEwNDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/f89b52ed-f0b4-4595-a7d5-8f5f1583dd9b\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/4b94218d-897b-46b5-ae6c-e5c492e34ee3\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge003\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93020397\",\n \"display\": \"Ibuprofen 400 mg Tablet (PHAPROS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-med003\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"IB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \" 1 kapsul; 3x; Tiap 1 hari; Setelah makan\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"f89b52ed-f0b4-4595-a7d5-8f5f1583dd9b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Ibuprofen 400mg\",\n \"reference\": \"#2024032128460-med003\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:18:48.311454+00:00\",\n \"versionId\": \"MTcxMDk5MTEyODMxMTQ1NDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 15\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/7f4244b3-8560-414d-88b1-70cebd0373cb\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/df03ac28-df55-4814-9b7c-98d2cbf304f4\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge002\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93009470\",\n \"display\": \"Paracetamol 350 mg / Caffeine 50 mg / Ibuprofen 200 mg Tablet (FARSIFEN PLUS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-002\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"PCT001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000101\",\n \"display\": \"Paracetamol\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 350\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000884\",\n \"display\": \"Caffeine\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 50\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 200\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1x1 Tablet per 8 jam, Setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 8,\n \"periodUnit\": \"h\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"7f4244b3-8560-414d-88b1-70cebd0373cb\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Obat Paracetamol Extra\",\n \"reference\": \"#2024032128460-002\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:13:56.474784+00:00\",\n \"versionId\": \"MTcxMDk5MDgzNjQ3NDc4NDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 10\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/897c8a05-e1e6-442b-baa7-2983373013d4\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/de1837bc-a267-40f2-a6d8-006b59fd9a48\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"3 kapsul per hari, diminum setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"897c8a05-e1e6-442b-baa7-2983373013d4\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024032128460-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:06:38.548381+00:00\",\n \"versionId\": \"MTcxMDk5MDM5ODU0ODM4MTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/b8984d91-295a-41ab-8b58-4d38e64d6b64\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/f430fdde-93d8-4dc8-9787-9f0f822cbd70\"\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 \"context\": {\n \"reference\": \"Encounter/b08d1113-74ac-4283-8f54-6292d057a780\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"Day\",\n \"value\": 30\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\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 \"text\": \"1 tablet per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"id\": \"b8984d91-295a-41ab-8b58-4d38e64d6b64\",\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\": \"Apotek Puskesmas SATUSEHAT\",\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\"\n },\n \"medicationReference\": {\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\n \"reference\": \"Medication/52bb4a95-2699-4ce7-bffd-fa28bf5fec3f\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:10:32.443208+00:00\",\n \"versionId\": \"MTcxMDg3MTgzMjQ0MzIwODAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"John Miller\",\n \"reference\": \"Practitioner/N10000003\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"value\": 30\n },\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2024-03-14T03:14:00+00:00\",\n \"whenPrepared\": \"2024-03-14T03:11:00+00:00\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n },\n {\n \"relation\": \"next\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006&_page_token=AfOl5oVKHgcwUUOf5ykPQ_wx5YRmr0PG-1aX9mbdqeV9neFS3HBth6loZnTq0Cd3H4B14Yg7kiyxYAW66l3K78E4BrZh6J73MVmOYM27dRbsh4tPFk2SGqcOUhU-PwJq2L9d6spvRnOuN0i7R73ZCWAxarirFgWjVg667Ke0DUsddJ8GO3QkJ833Lr7tuo_xDSyWv4EU1P4Cre-8O_gFnikJN9vvyPQ%3D\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 8,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat dari Fasyankes Sendiri)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\",\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"response": [
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat dari Fasyankes Sendiri)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\",\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"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/MedicationStatement/708713b9-d9d2-4fb7-88fd-de4a0fbbc64e/_history/MTcxNTY0ODk4MzE2MTM3NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0ODk4MzE2MTM3NDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:09:43 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:09:43 GMT"
},
{
"key": "content-length",
"value": "971"
},
{
"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": "ec2e37c2-b1d8-4ce6-8633-80e2d605d234"
},
{
"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\": \"outpatient\",\n \"display\": \"Outpatient\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\"\n }\n ]\n },\n \"context\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"id\": \"708713b9-d9d2-4fb7-88fd-de4a0fbbc64e\",\n \"identifier\": [],\n \"informationSource\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"medicationReference\": {\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\",\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:09:43.161374+00:00\",\n \"versionId\": \"MTcxNTY0ODk4MzE2MTM3NDAwMA\"\n },\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat dari Fasyankes Sendiri)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\",\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"response": [
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat dari Fasyankes Sendiri)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\",\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"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/MedicationStatement/708713b9-d9d2-4fb7-88fd-de4a0fbbc64e/_history/MTcxNTY0ODk4MzE2MTM3NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0ODk4MzE2MTM3NDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:09:43 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:09:43 GMT"
},
{
"key": "content-length",
"value": "971"
},
{
"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": "ec2e37c2-b1d8-4ce6-8633-80e2d605d234"
},
{
"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\": \"outpatient\",\n \"display\": \"Outpatient\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\"\n }\n ]\n },\n \"context\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"id\": \"708713b9-d9d2-4fb7-88fd-de4a0fbbc64e\",\n \"identifier\": [],\n \"informationSource\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"medicationReference\": {\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\",\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:09:43.161374+00:00\",\n \"versionId\": \"MTcxNTY0ODk4MzE2MTM3NDAwMA\"\n },\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "MedicationDispense - Search by Subject",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense?subject=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
],
"query": [
{
"key": "subject",
"value": "100000030006"
}
]
}
},
"response": [
{
"name": "MedicationDispense - Search by Subject",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/MedicationDispense?subject=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
],
"query": [
{
"key": "subject",
"value": "100000030006"
}
]
}
},
"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, 14 May 2024 00:55:05 GMT"
},
{
"key": "content-length",
"value": "31088"
},
{
"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": "e7e27159-ee0b-403f-a1f5-f538eddbebe9"
},
{
"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/MedicationDispense/928db3aa-7087-414e-8acb-3c8a1aff373a\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/59395a17-306d-4941-9e2e-d11765115572\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024041931420-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024041931420-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/10000004\"\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/9d3b8d8a-bc0d-4054-958e-8b106bab6240\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"coding\": [\n {\n \"code\": \"421984009\",\n \"display\": \"Until finished\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Diminum setiap hari sampai habis\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"Jika muncul gejala ruam atau gatal, hubungi IGD RS secepatnya\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"928db3aa-7087-414e-8acb-3c8a1aff373a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024041931420-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-04-19T10:17:42.171297+00:00\",\n \"versionId\": \"MTcxMzUyMTg2MjE3MTI5NzAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/6860499d-da49-4ec7-b699-17bbcb26359e\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/ecaefdbf-3a43-4fdb-8400-7cdde675ba96\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge003\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93020397\",\n \"display\": \"Ibuprofen 400 mg Tablet (PHAPROS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-med003\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"IB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \" 1 kapsul; 3x; Tiap 1 hari; Setelah makan\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"6860499d-da49-4ec7-b699-17bbcb26359e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Ibuprofen 400mg\",\n \"reference\": \"#2024032201944-med003\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:33.928579+00:00\",\n \"versionId\": \"MTcxMTA4MzIxMzkyODU3OTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 15\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/9ddf4471-e729-47d3-a4a7-6d8fc0c4aff1\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/59395a17-306d-4941-9e2e-d11765115572\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge002\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93009470\",\n \"display\": \"Paracetamol 350 mg / Caffeine 50 mg / Ibuprofen 200 mg Tablet (FARSIFEN PLUS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-002\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"PCT001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000101\",\n \"display\": \"Paracetamol\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 350\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000884\",\n \"display\": \"Caffeine\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 50\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 200\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1x1 Tablet per 8 jam, Setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 8,\n \"periodUnit\": \"h\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"9ddf4471-e729-47d3-a4a7-6d8fc0c4aff1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Obat Paracetamol Extra\",\n \"reference\": \"#2024032201944-002\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:19.603965+00:00\",\n \"versionId\": \"MTcxMTA4MzE5OTYwMzk2NTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 10\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/56c173c8-8200-450a-94de-28ee26b53f97\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/08dbc0be-cbac-41a7-ad58-dc5d5f5477e1\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"3 kapsul per hari, diminum setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"56c173c8-8200-450a-94de-28ee26b53f97\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024032201944-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:01.686104+00:00\",\n \"versionId\": \"MTcxMTA4MzE4MTY4NjEwNDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/f89b52ed-f0b4-4595-a7d5-8f5f1583dd9b\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/4b94218d-897b-46b5-ae6c-e5c492e34ee3\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge003\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93020397\",\n \"display\": \"Ibuprofen 400 mg Tablet (PHAPROS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-med003\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"IB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \" 1 kapsul; 3x; Tiap 1 hari; Setelah makan\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"f89b52ed-f0b4-4595-a7d5-8f5f1583dd9b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Ibuprofen 400mg\",\n \"reference\": \"#2024032128460-med003\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:18:48.311454+00:00\",\n \"versionId\": \"MTcxMDk5MTEyODMxMTQ1NDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 15\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/7f4244b3-8560-414d-88b1-70cebd0373cb\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/df03ac28-df55-4814-9b7c-98d2cbf304f4\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge002\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93009470\",\n \"display\": \"Paracetamol 350 mg / Caffeine 50 mg / Ibuprofen 200 mg Tablet (FARSIFEN PLUS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-002\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"PCT001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000101\",\n \"display\": \"Paracetamol\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 350\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000884\",\n \"display\": \"Caffeine\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 50\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 200\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1x1 Tablet per 8 jam, Setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 8,\n \"periodUnit\": \"h\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"7f4244b3-8560-414d-88b1-70cebd0373cb\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Obat Paracetamol Extra\",\n \"reference\": \"#2024032128460-002\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:13:56.474784+00:00\",\n \"versionId\": \"MTcxMDk5MDgzNjQ3NDc4NDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 10\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/897c8a05-e1e6-442b-baa7-2983373013d4\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/de1837bc-a267-40f2-a6d8-006b59fd9a48\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"3 kapsul per hari, diminum setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"897c8a05-e1e6-442b-baa7-2983373013d4\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024032128460-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:06:38.548381+00:00\",\n \"versionId\": \"MTcxMDk5MDM5ODU0ODM4MTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/b8984d91-295a-41ab-8b58-4d38e64d6b64\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/f430fdde-93d8-4dc8-9787-9f0f822cbd70\"\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 \"context\": {\n \"reference\": \"Encounter/b08d1113-74ac-4283-8f54-6292d057a780\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"Day\",\n \"value\": 30\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\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 \"text\": \"1 tablet per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"id\": \"b8984d91-295a-41ab-8b58-4d38e64d6b64\",\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\": \"Apotek Puskesmas SATUSEHAT\",\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\"\n },\n \"medicationReference\": {\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\n \"reference\": \"Medication/52bb4a95-2699-4ce7-bffd-fa28bf5fec3f\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:10:32.443208+00:00\",\n \"versionId\": \"MTcxMDg3MTgzMjQ0MzIwODAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"John Miller\",\n \"reference\": \"Practitioner/N10000003\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"value\": 30\n },\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2024-03-14T03:14:00+00:00\",\n \"whenPrepared\": \"2024-03-14T03:11:00+00:00\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n },\n {\n \"relation\": \"next\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006&_page_token=AfOl5oVKHgcwUUOf5ykPQ_wx5YRmr0PG-1aX9mbdqeV9neFS3HBth6loZnTq0Cd3H4B14Yg7kiyxYAW66l3K78E4BrZh6J73MVmOYM27dRbsh4tPFk2SGqcOUhU-PwJq2L9d6spvRnOuN0i7R73ZCWAxarirFgWjVg667Ke0DUsddJ8GO3QkJ833Lr7tuo_xDSyWv4EU1P4Cre-8O_gFnikJN9vvyPQ%3D\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 8,\n \"type\": \"searchset\"\n}"
}
]
}
]
},
{
"name": "Obat bukan dari Fasyankes Sendiri",
"item": [
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat bukan dari Fasyankes Sendiri)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"response": [
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat bukan dari Fasyankes Sendiri)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:10:48 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0OTA0ODU1MDQyMDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/MedicationStatement/83fe07a3-0554-43ad-b25e-9c01c004b008/_history/MTcxNTY0OTA0ODU1MDQyMDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:10:48 GMT"
},
{
"key": "content-length",
"value": "955"
},
{
"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": "f1dd9fb3-8032-4b69-b058-07c0f9710bd1"
},
{
"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\": \"outpatient\",\n \"display\": \"Outpatient\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\"\n }\n ]\n },\n \"context\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"id\": \"83fe07a3-0554-43ad-b25e-9c01c004b008\",\n \"identifier\": [],\n \"informationSource\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:10:48.550420+00:00\",\n \"versionId\": \"MTcxNTY0OTA0ODU1MDQyMDAwMA\"\n },\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat bukan dari Fasyankes Sendiri)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"response": [
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat bukan dari Fasyankes Sendiri)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:10:48 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0OTA0ODU1MDQyMDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/MedicationStatement/83fe07a3-0554-43ad-b25e-9c01c004b008/_history/MTcxNTY0OTA0ODU1MDQyMDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:10:48 GMT"
},
{
"key": "content-length",
"value": "955"
},
{
"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": "f1dd9fb3-8032-4b69-b058-07c0f9710bd1"
},
{
"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\": \"outpatient\",\n \"display\": \"Outpatient\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\"\n }\n ]\n },\n \"context\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"id\": \"83fe07a3-0554-43ad-b25e-9c01c004b008\",\n \"identifier\": [],\n \"informationSource\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:10:48.550420+00:00\",\n \"versionId\": \"MTcxNTY0OTA0ODU1MDQyMDAwMA\"\n },\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "Faktor Risiko PTM",
"item": [
{
"name": "Observation - Status merokok",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_statusMerokok\", 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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:20:00+00:00\",\n \"issued\": \"2024-03-14T02:20:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Status merokok",
"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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:20:00+00:00\",\n \"issued\": \"2024-03-14T02:20:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 00:48:28 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0NzcwODg1Mjc1NDAwMA\""
},
{
"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/2c21a654-7ecb-4c72-b69c-834f322437e2/_history/MTcxNTY0NzcwODg1Mjc1NDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 00:48:28 GMT"
},
{
"key": "content-length",
"value": "849"
},
{
"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": "f5ca16b2-f4b7-4b45-90a8-cbf0a9993484"
},
{
"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\": \"social-history\",\n \"display\": \"Social History\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:20:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"2c21a654-7ecb-4c72-b69c-834f322437e2\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:20:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T00:48:28.852754+00:00\",\n \"versionId\": \"MTcxNTY0NzcwODg1Mjc1NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"77176002\",\n \"display\": \"Smoker\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "QuestionnaireResponse - Faktor Risiko PTM",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"QuestionnaireResponse_SkriningPTM\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0013\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2024-03-14T02:20:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Layanan bagi usia dewasa (18 - 59 thn): Skrining PTM\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah peserta pernah merokok?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Berapa rata-rata jumlah batang rokok per hari\",\n \"answer\": [\n {\n \"valueInteger\": 10\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Lama merokok dalam tahun\",\n \"answer\": [\n {\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Status merokok\",\n \"answer\": [\n {\n \"valueReference\": {\n \"reference\": \"Observation/2c21a654-7ecb-4c72-b69c-834f322437e2\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.5\",\n \"text\": \"Apakah peserta terpapar asap rokok orang lain dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.6\",\n \"text\": \"Apakah peserta menambahkan gula pada makanan/minuman peserta > 4 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.7\",\n \"text\": \"Apakah peserta menggunakan garam pada makanan peserta > 1 sendok teh dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.8\",\n \"text\": \"Apakah peserta konsumsi makanan yang diolah dengan minyak > 5 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.9\",\n \"text\": \"Apakah peserta makan sayur dan atau buah kurang dari 5 porsi sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000026\",\n \"display\": \"Tidak makan sayur dan atau buah kurang dari 5 porsi\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.10\",\n \"text\": \"Apakah peserta melakukan aktivitas fisik kurang dari minimal 30 menit/ hari atau minimal 150 menit/minggu?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.11\",\n \"text\": \"Apakah peserta konsumsi alkohol dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"response": [
{
"name": "QuestionnaireResponse - Faktor Risiko PTM",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0013\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2024-03-14T02:20:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Layanan bagi usia dewasa (18 - 59 thn): Skrining PTM\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah peserta pernah merokok?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Berapa rata-rata jumlah batang rokok per hari\",\n \"answer\": [\n {\n \"valueInteger\": 10\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Lama merokok dalam tahun\",\n \"answer\": [\n {\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Status merokok\",\n \"answer\": [\n {\n \"valueReference\": {\n \"reference\": \"Observation/2c21a654-7ecb-4c72-b69c-834f322437e2\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.5\",\n \"text\": \"Apakah peserta terpapar asap rokok orang lain dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.6\",\n \"text\": \"Apakah peserta menambahkan gula pada makanan/minuman peserta > 4 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.7\",\n \"text\": \"Apakah peserta menggunakan garam pada makanan peserta > 1 sendok teh dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.8\",\n \"text\": \"Apakah peserta konsumsi makanan yang diolah dengan minyak > 5 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.9\",\n \"text\": \"Apakah peserta makan sayur dan atau buah kurang dari 5 porsi sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000026\",\n \"display\": \"Tidak makan sayur dan atau buah kurang dari 5 porsi\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.10\",\n \"text\": \"Apakah peserta melakukan aktivitas fisik kurang dari minimal 30 menit/ hari atau minimal 150 menit/minggu?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.11\",\n \"text\": \"Apakah peserta konsumsi alkohol dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 00:51:34 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0Nzg5NDcwNDI0NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/QuestionnaireResponse/cb801f7d-95f5-4590-8746-489a60967762/_history/MTcxNTY0Nzg5NDcwNDI0NzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 00:51:34 GMT"
},
{
"key": "content-length",
"value": "3027"
},
{
"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": "59f14a67-de78-4833-9db3-6ad15bf1348b"
},
{
"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 \"reference\": \"Practitioner/N10000001\"\n },\n \"authored\": \"2024-03-14T02:20:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"cb801f7d-95f5-4590-8746-489a60967762\",\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 peserta pernah merokok?\"\n },\n {\n \"answer\": [\n {\n \"valueInteger\": 10\n }\n ],\n \"linkId\": \"1.2\",\n \"text\": \"Berapa rata-rata jumlah batang rokok per hari\"\n },\n {\n \"answer\": [\n {\n \"valueQuantity\": {\n \"code\": \"a\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"years\",\n \"value\": 5\n }\n }\n ],\n \"linkId\": \"1.3\",\n \"text\": \"Lama merokok dalam tahun\"\n },\n {\n \"answer\": [\n {\n \"valueReference\": {\n \"reference\": \"Observation/2c21a654-7ecb-4c72-b69c-834f322437e2\"\n }\n }\n ],\n \"linkId\": \"1.4\",\n \"text\": \"Status merokok\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.5\",\n \"text\": \"Apakah peserta terpapar asap rokok orang lain dalam waktu 1 bulan terakhir?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.6\",\n \"text\": \"Apakah peserta menambahkan gula pada makanan/minuman peserta > 4 sendok makan dalam sehari?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.7\",\n \"text\": \"Apakah peserta menggunakan garam pada makanan peserta > 1 sendok teh dalam sehari?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.8\",\n \"text\": \"Apakah peserta konsumsi makanan yang diolah dengan minyak > 5 sendok makan dalam sehari?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000026\",\n \"display\": \"Tidak makan sayur dan atau buah kurang dari 5 porsi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.9\",\n \"text\": \"Apakah peserta makan sayur dan atau buah kurang dari 5 porsi sehari?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.10\",\n \"text\": \"Apakah peserta melakukan aktivitas fisik kurang dari minimal 30 menit/ hari atau minimal 150 menit/minggu?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.11\",\n \"text\": \"Apakah peserta konsumsi alkohol dalam waktu 1 bulan terakhir?\"\n }\n ],\n \"linkId\": \"1\",\n \"text\": \"Layanan bagi usia dewasa (18 - 59 thn): Skrining PTM\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T00:51:34.704247+00:00\",\n \"versionId\": \"MTcxNTY0Nzg5NDcwNDI0NzAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0013\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "QuestionnaireResponse - Faktor Risiko PTM",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"QuestionnaireResponse_SkriningPTM\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0013\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2024-03-14T02:20:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Layanan bagi usia dewasa (18 - 59 thn): Skrining PTM\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah peserta pernah merokok?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Berapa rata-rata jumlah batang rokok per hari\",\n \"answer\": [\n {\n \"valueInteger\": 10\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Lama merokok dalam tahun\",\n \"answer\": [\n {\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Status merokok\",\n \"answer\": [\n {\n \"valueReference\": {\n \"reference\": \"Observation/2c21a654-7ecb-4c72-b69c-834f322437e2\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.5\",\n \"text\": \"Apakah peserta terpapar asap rokok orang lain dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.6\",\n \"text\": \"Apakah peserta menambahkan gula pada makanan/minuman peserta > 4 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.7\",\n \"text\": \"Apakah peserta menggunakan garam pada makanan peserta > 1 sendok teh dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.8\",\n \"text\": \"Apakah peserta konsumsi makanan yang diolah dengan minyak > 5 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.9\",\n \"text\": \"Apakah peserta makan sayur dan atau buah kurang dari 5 porsi sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000026\",\n \"display\": \"Tidak makan sayur dan atau buah kurang dari 5 porsi\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.10\",\n \"text\": \"Apakah peserta melakukan aktivitas fisik kurang dari minimal 30 menit/ hari atau minimal 150 menit/minggu?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.11\",\n \"text\": \"Apakah peserta konsumsi alkohol dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"response": [
{
"name": "QuestionnaireResponse - Faktor Risiko PTM",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0013\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2024-03-14T02:20:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Layanan bagi usia dewasa (18 - 59 thn): Skrining PTM\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah peserta pernah merokok?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Berapa rata-rata jumlah batang rokok per hari\",\n \"answer\": [\n {\n \"valueInteger\": 10\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Lama merokok dalam tahun\",\n \"answer\": [\n {\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Status merokok\",\n \"answer\": [\n {\n \"valueReference\": {\n \"reference\": \"Observation/2c21a654-7ecb-4c72-b69c-834f322437e2\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.5\",\n \"text\": \"Apakah peserta terpapar asap rokok orang lain dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.6\",\n \"text\": \"Apakah peserta menambahkan gula pada makanan/minuman peserta > 4 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.7\",\n \"text\": \"Apakah peserta menggunakan garam pada makanan peserta > 1 sendok teh dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.8\",\n \"text\": \"Apakah peserta konsumsi makanan yang diolah dengan minyak > 5 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.9\",\n \"text\": \"Apakah peserta makan sayur dan atau buah kurang dari 5 porsi sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000026\",\n \"display\": \"Tidak makan sayur dan atau buah kurang dari 5 porsi\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.10\",\n \"text\": \"Apakah peserta melakukan aktivitas fisik kurang dari minimal 30 menit/ hari atau minimal 150 menit/minggu?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.11\",\n \"text\": \"Apakah peserta konsumsi alkohol dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 00:51:34 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0Nzg5NDcwNDI0NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/QuestionnaireResponse/cb801f7d-95f5-4590-8746-489a60967762/_history/MTcxNTY0Nzg5NDcwNDI0NzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 00:51:34 GMT"
},
{
"key": "content-length",
"value": "3027"
},
{
"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": "59f14a67-de78-4833-9db3-6ad15bf1348b"
},
{
"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 \"reference\": \"Practitioner/N10000001\"\n },\n \"authored\": \"2024-03-14T02:20:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"cb801f7d-95f5-4590-8746-489a60967762\",\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 peserta pernah merokok?\"\n },\n {\n \"answer\": [\n {\n \"valueInteger\": 10\n }\n ],\n \"linkId\": \"1.2\",\n \"text\": \"Berapa rata-rata jumlah batang rokok per hari\"\n },\n {\n \"answer\": [\n {\n \"valueQuantity\": {\n \"code\": \"a\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"years\",\n \"value\": 5\n }\n }\n ],\n \"linkId\": \"1.3\",\n \"text\": \"Lama merokok dalam tahun\"\n },\n {\n \"answer\": [\n {\n \"valueReference\": {\n \"reference\": \"Observation/2c21a654-7ecb-4c72-b69c-834f322437e2\"\n }\n }\n ],\n \"linkId\": \"1.4\",\n \"text\": \"Status merokok\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.5\",\n \"text\": \"Apakah peserta terpapar asap rokok orang lain dalam waktu 1 bulan terakhir?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.6\",\n \"text\": \"Apakah peserta menambahkan gula pada makanan/minuman peserta > 4 sendok makan dalam sehari?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.7\",\n \"text\": \"Apakah peserta menggunakan garam pada makanan peserta > 1 sendok teh dalam sehari?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.8\",\n \"text\": \"Apakah peserta konsumsi makanan yang diolah dengan minyak > 5 sendok makan dalam sehari?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000026\",\n \"display\": \"Tidak makan sayur dan atau buah kurang dari 5 porsi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.9\",\n \"text\": \"Apakah peserta makan sayur dan atau buah kurang dari 5 porsi sehari?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.10\",\n \"text\": \"Apakah peserta melakukan aktivitas fisik kurang dari minimal 30 menit/ hari atau minimal 150 menit/minggu?\"\n },\n {\n \"answer\": [\n {\n \"valueCoding\": {\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n }\n ],\n \"linkId\": \"1.11\",\n \"text\": \"Apakah peserta konsumsi alkohol dalam waktu 1 bulan terakhir?\"\n }\n ],\n \"linkId\": \"1\",\n \"text\": \"Layanan bagi usia dewasa (18 - 59 thn): Skrining PTM\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T00:51:34.704247+00:00\",\n \"versionId\": \"MTcxNTY0Nzg5NDcwNDI0NzAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0013\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Status merokok",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_statusMerokok\", 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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:20:00+00:00\",\n \"issued\": \"2024-03-14T02:20:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Status merokok",
"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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:20:00+00:00\",\n \"issued\": \"2024-03-14T02:20:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 00:48:28 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0NzcwODg1Mjc1NDAwMA\""
},
{
"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/2c21a654-7ecb-4c72-b69c-834f322437e2/_history/MTcxNTY0NzcwODg1Mjc1NDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 00:48:28 GMT"
},
{
"key": "content-length",
"value": "849"
},
{
"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": "f5ca16b2-f4b7-4b45-90a8-cbf0a9993484"
},
{
"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\": \"social-history\",\n \"display\": \"Social History\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:20:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"2c21a654-7ecb-4c72-b69c-834f322437e2\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:20:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T00:48:28.852754+00:00\",\n \"versionId\": \"MTcxNTY0NzcwODg1Mjc1NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"77176002\",\n \"display\": \"Smoker\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Keluhan Utama",
"item": [
{
"name": "Condition - Keluhan Utama",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Keluhan Utama",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16: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/\"MTcxNTY0NzkzMzQ4Mjg2NTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 00:52:13 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/f56ff8a2-ed0c-4fa3-88d1-89fcfb07b6bd/_history/MTcxNTY0NzkzMzQ4Mjg2NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 00:52:13 GMT"
},
{
"key": "content-length",
"value": "806"
},
{
"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": "d79c7ab3-0a7b-4daf-a493-e7d024e18a3f"
},
{
"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\": \"80313002\",\n \"display\": \"Palpitations\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"f56ff8a2-ed0c-4fa3-88d1-89fcfb07b6bd\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T00:52:13.482865+00:00\",\n \"versionId\": \"MTcxNTY0NzkzMzQ4Mjg2NTAwMA\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Keluhan Utama",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Keluhan Utama",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16: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/\"MTcxNTY0NzkzMzQ4Mjg2NTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 00:52:13 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/f56ff8a2-ed0c-4fa3-88d1-89fcfb07b6bd/_history/MTcxNTY0NzkzMzQ4Mjg2NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 00:52:13 GMT"
},
{
"key": "content-length",
"value": "806"
},
{
"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": "d79c7ab3-0a7b-4daf-a493-e7d024e18a3f"
},
{
"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\": \"80313002\",\n \"display\": \"Palpitations\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"f56ff8a2-ed0c-4fa3-88d1-89fcfb07b6bd\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T00:52:13.482865+00:00\",\n \"versionId\": \"MTcxNTY0NzkzMzQ4Mjg2NTAwMA\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "04. Pemeriksaan Fisik",
"item": [
{
"name": "Pemeriksaan Tanda Tanda Vital",
"item": [
{
"name": "Observation - Nadi",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8867-4\",\n \"display\": \"Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Nadi Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"valueQuantity\": {\n \"value\": 80,\n \"unit\": \"{beats}/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Nadi",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8867-4\",\n \"display\": \"Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Nadi Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"valueQuantity\": {\n \"value\": 80,\n \"unit\": \"{beats}/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDM5MjM0MDgwMTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:33:12 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/f4b4371c-c0a9-4890-b7c8-96120b8bbc94/_history/MTcxNTY1MDM5MjM0MDgwMTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:33:12 GMT"
},
{
"key": "content-length",
"value": "877"
},
{
"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": "47410be2-a367-4a68-879a-0d5ffd8c0ce3"
},
{
"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\": \"8867-4\",\n \"display\": \"Heart rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Nadi Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"f4b4371c-c0a9-4890-b7c8-96120b8bbc94\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:33:12.340801+00:00\",\n \"versionId\": \"MTcxNTY1MDM5MjM0MDgwMTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{beats}/minute\",\n \"value\": 80\n }\n}"
}
]
},
{
"name": "Observation - Pernapasan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9279-1\",\n \"display\": \"Respiratory rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Pernapasan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:23:00+00:00\",\n \"issued\": \"2024-03-14T02:23:00+00:00\",\n \"valueQuantity\": {\n \"value\": 22,\n \"unit\": \"{breaths}/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Pernapasan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9279-1\",\n \"display\": \"Respiratory rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Pernapasan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:23:00+00:00\",\n \"issued\": \"2024-03-14T02:23:00+00:00\",\n \"valueQuantity\": {\n \"value\": 22,\n \"unit\": \"{breaths}/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"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/d9ec316a-8ad5-421d-b140-d0e2d6eebe46/_history/MTcxNTY1MDQxNzQwMzUyMTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:33:37 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDQxNzQwMzUyMTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:33:37 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": "a0079712-38e3-4465-8d74-4a44af145714"
},
{
"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\": \"9279-1\",\n \"display\": \"Respiratory rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:23:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Pernapasan Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"d9ec316a-8ad5-421d-b140-d0e2d6eebe46\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:33:37.403521+00:00\",\n \"versionId\": \"MTcxNTY1MDQxNzQwMzUyMTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{breaths}/min\",\n \"value\": 22\n }\n}"
}
]
},
{
"name": "Observation - TD Sistolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 182,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - TD Sistolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 182,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\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/256487e7-08fc-44b0-8b55-9e2f6a36f723/_history/MTcxNTY1MDQ0ODkxNzkxNDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:34:08 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDQ0ODkxNzkxNDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:34:08 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": "0f2a3175-4a54-49bd-8291-987b6149c57b"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"368209003\",\n \"display\": \"Right arm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"8480-6\",\n \"display\": \"Systolic blood pressure\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"256487e7-08fc-44b0-8b55-9e2f6a36f723\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"H\",\n \"display\": \"High\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ],\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:34:08.917914+00:00\",\n \"versionId\": \"MTcxNTY1MDQ0ODkxNzkxNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mm[Hg]\",\n \"value\": 182\n }\n}"
}
]
},
{
"name": "Observation - TD Diastolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 115,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - TD Diastolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 115,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\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": "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/f73841c1-d84a-471b-9d6c-50cdf8667cca/_history/MTcxNTY1MDQ4NzcyMDE4NDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:34:47 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDQ4NzcyMDE4NDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:34:47 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": "dffba473-54ae-4545-a5dd-2b53143d58f3"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"368209003\",\n \"display\": \"Right arm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"f73841c1-d84a-471b-9d6c-50cdf8667cca\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"H\",\n \"display\": \"High\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ],\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:34:47.720184+00:00\",\n \"versionId\": \"MTcxNTY1MDQ4NzcyMDE4NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mm[Hg]\",\n \"value\": 115\n }\n}"
}
]
},
{
"name": "Observation - Suhu",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8310-5\",\n \"display\": \"Body temperature\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Suhu Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:25:00+00:00\",\n \"issued\": \"2024-03-14T02:25:00+00:00\",\n \"valueQuantity\": {\n \"value\": 37.5,\n \"unit\": \"C\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"Cel\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Suhu",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8310-5\",\n \"display\": \"Body temperature\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Suhu Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:25:00+00:00\",\n \"issued\": \"2024-03-14T02:25:00+00:00\",\n \"valueQuantity\": {\n \"value\": 37.5,\n \"unit\": \"C\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"Cel\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\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": "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/a9497069-f2f3-48d1-8415-0a392d241f4a/_history/MTcxNTY1MDUwMDg2MjIxNTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDUwMDg2MjIxNTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:35:00 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:35:00 GMT"
},
{
"key": "content-length",
"value": "1044"
},
{
"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": "c1ff576b-6a84-4ea1-89c9-65c0b10620c5"
},
{
"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\": \"8310-5\",\n \"display\": \"Body temperature\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:25:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Suhu Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"a9497069-f2f3-48d1-8415-0a392d241f4a\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"H\",\n \"display\": \"High\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ],\n \"issued\": \"2024-03-14T02:25:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:35:00.862215+00:00\",\n \"versionId\": \"MTcxNTY1MDUwMDg2MjIxNTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"Cel\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"C\",\n \"value\": 37.5\n }\n}"
}
]
},
{
"name": "Observation - TD Sistolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 182,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - TD Sistolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 182,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\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/256487e7-08fc-44b0-8b55-9e2f6a36f723/_history/MTcxNTY1MDQ0ODkxNzkxNDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:34:08 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDQ0ODkxNzkxNDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:34:08 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": "0f2a3175-4a54-49bd-8291-987b6149c57b"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"368209003\",\n \"display\": \"Right arm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"8480-6\",\n \"display\": \"Systolic blood pressure\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"256487e7-08fc-44b0-8b55-9e2f6a36f723\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"H\",\n \"display\": \"High\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ],\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:34:08.917914+00:00\",\n \"versionId\": \"MTcxNTY1MDQ0ODkxNzkxNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mm[Hg]\",\n \"value\": 182\n }\n}"
}
]
},
{
"name": "Observation - TD Diastolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 115,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - TD Diastolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 115,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\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": "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/f73841c1-d84a-471b-9d6c-50cdf8667cca/_history/MTcxNTY1MDQ4NzcyMDE4NDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:34:47 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDQ4NzcyMDE4NDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:34:47 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": "dffba473-54ae-4545-a5dd-2b53143d58f3"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"368209003\",\n \"display\": \"Right arm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"f73841c1-d84a-471b-9d6c-50cdf8667cca\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"H\",\n \"display\": \"High\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ],\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:34:47.720184+00:00\",\n \"versionId\": \"MTcxNTY1MDQ4NzcyMDE4NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mm[Hg]\",\n \"value\": 115\n }\n}"
}
]
},
{
"name": "Observation - Pernapasan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9279-1\",\n \"display\": \"Respiratory rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Pernapasan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:23:00+00:00\",\n \"issued\": \"2024-03-14T02:23:00+00:00\",\n \"valueQuantity\": {\n \"value\": 22,\n \"unit\": \"{breaths}/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Pernapasan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9279-1\",\n \"display\": \"Respiratory rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Pernapasan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:23:00+00:00\",\n \"issued\": \"2024-03-14T02:23:00+00:00\",\n \"valueQuantity\": {\n \"value\": 22,\n \"unit\": \"{breaths}/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"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/d9ec316a-8ad5-421d-b140-d0e2d6eebe46/_history/MTcxNTY1MDQxNzQwMzUyMTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:33:37 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDQxNzQwMzUyMTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:33:37 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": "a0079712-38e3-4465-8d74-4a44af145714"
},
{
"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\": \"9279-1\",\n \"display\": \"Respiratory rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:23:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Pernapasan Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"d9ec316a-8ad5-421d-b140-d0e2d6eebe46\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:33:37.403521+00:00\",\n \"versionId\": \"MTcxNTY1MDQxNzQwMzUyMTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{breaths}/min\",\n \"value\": 22\n }\n}"
}
]
},
{
"name": "Observation - Suhu",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8310-5\",\n \"display\": \"Body temperature\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Suhu Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:25:00+00:00\",\n \"issued\": \"2024-03-14T02:25:00+00:00\",\n \"valueQuantity\": {\n \"value\": 37.5,\n \"unit\": \"C\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"Cel\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Suhu",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8310-5\",\n \"display\": \"Body temperature\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Suhu Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:25:00+00:00\",\n \"issued\": \"2024-03-14T02:25:00+00:00\",\n \"valueQuantity\": {\n \"value\": 37.5,\n \"unit\": \"C\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"Cel\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\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": "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/a9497069-f2f3-48d1-8415-0a392d241f4a/_history/MTcxNTY1MDUwMDg2MjIxNTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDUwMDg2MjIxNTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:35:00 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:35:00 GMT"
},
{
"key": "content-length",
"value": "1044"
},
{
"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": "c1ff576b-6a84-4ea1-89c9-65c0b10620c5"
},
{
"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\": \"8310-5\",\n \"display\": \"Body temperature\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:25:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Suhu Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"a9497069-f2f3-48d1-8415-0a392d241f4a\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"H\",\n \"display\": \"High\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ],\n \"issued\": \"2024-03-14T02:25:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:35:00.862215+00:00\",\n \"versionId\": \"MTcxNTY1MDUwMDg2MjIxNTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"Cel\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"C\",\n \"value\": 37.5\n }\n}"
}
]
},
{
"name": "Observation - Nadi",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8867-4\",\n \"display\": \"Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Nadi Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"valueQuantity\": {\n \"value\": 80,\n \"unit\": \"{beats}/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Nadi",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8867-4\",\n \"display\": \"Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Nadi Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"valueQuantity\": {\n \"value\": 80,\n \"unit\": \"{beats}/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDM5MjM0MDgwMTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:33:12 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/f4b4371c-c0a9-4890-b7c8-96120b8bbc94/_history/MTcxNTY1MDM5MjM0MDgwMTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:33:12 GMT"
},
{
"key": "content-length",
"value": "877"
},
{
"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": "47410be2-a367-4a68-879a-0d5ffd8c0ce3"
},
{
"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\": \"8867-4\",\n \"display\": \"Heart rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Nadi Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"f4b4371c-c0a9-4890-b7c8-96120b8bbc94\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:33:12.340801+00:00\",\n \"versionId\": \"MTcxNTY1MDM5MjM0MDgwMTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{beats}/minute\",\n \"value\": 80\n }\n}"
}
]
}
]
},
{
"name": "Tingkat Kesadaran",
"item": [
{
"name": "Observation - Tingkat Kesadaran ",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67775-7\",\n \"display\": \"Level of responsiveness\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tingkat Kesadaran",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67775-7\",\n \"display\": \"Level of responsiveness\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:18:20 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/Observation/125f525a-c9b6-41ea-98ad-66ce7d8d6e2f/_history/MTcxNTY0OTUwMDMyNzgwNDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0OTUwMDMyNzgwNDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:18:20 GMT"
},
{
"key": "content-length",
"value": "830"
},
{
"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": "05d9e81a-7d8a-42e5-b23d-c5152bc93bf8"
},
{
"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\": \"67775-7\",\n \"display\": \"Level of responsiveness\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"125f525a-c9b6-41ea-98ad-66ce7d8d6e2f\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:18:20.327804+00:00\",\n \"versionId\": \"MTcxNTY0OTUwMDMyNzgwNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Tingkat Kesadaran ",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67775-7\",\n \"display\": \"Level of responsiveness\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tingkat Kesadaran",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67775-7\",\n \"display\": \"Level of responsiveness\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:18:20 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/Observation/125f525a-c9b6-41ea-98ad-66ce7d8d6e2f/_history/MTcxNTY0OTUwMDMyNzgwNDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0OTUwMDMyNzgwNDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:18:20 GMT"
},
{
"key": "content-length",
"value": "830"
},
{
"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": "05d9e81a-7d8a-42e5-b23d-c5152bc93bf8"
},
{
"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\": \"67775-7\",\n \"display\": \"Level of responsiveness\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"125f525a-c9b6-41ea-98ad-66ce7d8d6e2f\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:18:20.327804+00:00\",\n \"versionId\": \"MTcxNTY0OTUwMDMyNzgwNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Fisik Head to Toe",
"item": [
{
"name": "Kepala",
"item": [
{
"name": "Observation - Kepala",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk kepala simetris\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kepala",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk kepala simetris\"\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": "Tue, 14 May 2024 01:35:38 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/Observation/7811a855-bb75-41ce-a2b7-f27a67393d3b/_history/MTcxNTY1MDUzODEwNjQzMzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDUzODEwNjQzMzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:35:38 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": "0f9140cb-5b57-4f67-8757-5a31fe0d969c"
},
{
"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\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"7811a855-bb75-41ce-a2b7-f27a67393d3b\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:35:38.106433+00:00\",\n \"versionId\": \"MTcxNTY1MDUzODEwNjQzMzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Bentuk kepala simetris\"\n}"
}
]
},
{
"name": "Observation - Kepala",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk kepala simetris\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kepala",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk kepala simetris\"\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": "Tue, 14 May 2024 01:35:38 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/Observation/7811a855-bb75-41ce-a2b7-f27a67393d3b/_history/MTcxNTY1MDUzODEwNjQzMzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDUzODEwNjQzMzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:35:38 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": "0f9140cb-5b57-4f67-8757-5a31fe0d969c"
},
{
"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\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"7811a855-bb75-41ce-a2b7-f27a67393d3b\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:35:38.106433+00:00\",\n \"versionId\": \"MTcxNTY1MDUzODEwNjQzMzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Bentuk kepala simetris\"\n}"
}
]
}
]
},
{
"name": "Mata",
"item": [
{
"name": "Observation - Mata",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Mata",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}",
"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/d300ee4c-f29d-4c23-bb0d-0531e25ee160/_history/MTcxNTY1MDU2ODU1OTM5NDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:36:08 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDU2ODU1OTM5NDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:36:08 GMT"
},
{
"key": "content-length",
"value": "824"
},
{
"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": "bd563813-c983-407c-adab-1a7501028bb2"
},
{
"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\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"d300ee4c-f29d-4c23-bb0d-0531e25ee160\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:36:08.559394+00:00\",\n \"versionId\": \"MTcxNTY1MDU2ODU1OTM5NDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}"
}
]
},
{
"name": "Observation - Mata",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Mata",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}",
"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/d300ee4c-f29d-4c23-bb0d-0531e25ee160/_history/MTcxNTY1MDU2ODU1OTM5NDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:36:08 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDU2ODU1OTM5NDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:36:08 GMT"
},
{
"key": "content-length",
"value": "824"
},
{
"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": "bd563813-c983-407c-adab-1a7501028bb2"
},
{
"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\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"d300ee4c-f29d-4c23-bb0d-0531e25ee160\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:36:08.559394+00:00\",\n \"versionId\": \"MTcxNTY1MDU2ODU1OTM5NDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}"
}
]
}
]
},
{
"name": "Telinga",
"item": [
{
"name": "Observation - Telinga",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Telinga",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}",
"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/\"MTcxNTY1MDYwNTMyNTgzMDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/f17dfe94-fa36-4d7a-bd51-1d0f2e77f617/_history/MTcxNTY1MDYwNTMyNTgzMDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:36:45 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:36:45 GMT"
},
{
"key": "content-length",
"value": "854"
},
{
"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": "9064e7bf-485d-449e-807e-c563adb3d345"
},
{
"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\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"f17dfe94-fa36-4d7a-bd51-1d0f2e77f617\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:36:45.325830+00:00\",\n \"versionId\": \"MTcxNTY1MDYwNTMyNTgzMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}"
}
]
},
{
"name": "Observation - Telinga",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Telinga",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}",
"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/\"MTcxNTY1MDYwNTMyNTgzMDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/f17dfe94-fa36-4d7a-bd51-1d0f2e77f617/_history/MTcxNTY1MDYwNTMyNTgzMDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:36:45 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:36:45 GMT"
},
{
"key": "content-length",
"value": "854"
},
{
"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": "9064e7bf-485d-449e-807e-c563adb3d345"
},
{
"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\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"f17dfe94-fa36-4d7a-bd51-1d0f2e77f617\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:36:45.325830+00:00\",\n \"versionId\": \"MTcxNTY1MDYwNTMyNTgzMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}"
}
]
}
]
},
{
"name": "Hidung",
"item": [
{
"name": "Observation - Hidung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Hidung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MDYzNjMzMjg2NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:37:16 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/a573f2e7-045e-4335-b919-f28286b4d93e/_history/MTcxNTY1MDYzNjMzMjg2NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:37:16 GMT"
},
{
"key": "content-length",
"value": "866"
},
{
"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": "d7d72cef-03c7-473e-82e0-0642eee86598"
},
{
"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\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"a573f2e7-045e-4335-b919-f28286b4d93e\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:37:16.332866+00:00\",\n \"versionId\": \"MTcxNTY1MDYzNjMzMjg2NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Hidung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Hidung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MDYzNjMzMjg2NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:37:16 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/a573f2e7-045e-4335-b919-f28286b4d93e/_history/MTcxNTY1MDYzNjMzMjg2NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:37:16 GMT"
},
{
"key": "content-length",
"value": "866"
},
{
"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": "d7d72cef-03c7-473e-82e0-0642eee86598"
},
{
"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\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"a573f2e7-045e-4335-b919-f28286b4d93e\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:37:16.332866+00:00\",\n \"versionId\": \"MTcxNTY1MDYzNjMzMjg2NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Rambut",
"item": [
{
"name": "Observation - Rambut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32436-8\",\n \"display\": \"Physical findings of Hair\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Rambut dalam batas normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Rambut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32436-8\",\n \"display\": \"Physical findings of Hair\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Rambut dalam batas normal\"\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": "Tue, 14 May 2024 01:37:43 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDY2MzMzOTc1MzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/6dbe23c2-3a52-4d1d-811d-b389a721a791/_history/MTcxNTY1MDY2MzMzOTc1MzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:37:43 GMT"
},
{
"key": "content-length",
"value": "798"
},
{
"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": "945f6ec8-3e80-496e-85d6-64dba81053e4"
},
{
"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\": \"32436-8\",\n \"display\": \"Physical findings of Hair\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"6dbe23c2-3a52-4d1d-811d-b389a721a791\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:37:43.339753+00:00\",\n \"versionId\": \"MTcxNTY1MDY2MzMzOTc1MzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Rambut dalam batas normal\"\n}"
}
]
},
{
"name": "Observation - Rambut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32436-8\",\n \"display\": \"Physical findings of Hair\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Rambut dalam batas normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Rambut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32436-8\",\n \"display\": \"Physical findings of Hair\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Rambut dalam batas normal\"\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": "Tue, 14 May 2024 01:37:43 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDY2MzMzOTc1MzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/6dbe23c2-3a52-4d1d-811d-b389a721a791/_history/MTcxNTY1MDY2MzMzOTc1MzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:37:43 GMT"
},
{
"key": "content-length",
"value": "798"
},
{
"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": "945f6ec8-3e80-496e-85d6-64dba81053e4"
},
{
"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\": \"32436-8\",\n \"display\": \"Physical findings of Hair\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"6dbe23c2-3a52-4d1d-811d-b389a721a791\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:37:43.339753+00:00\",\n \"versionId\": \"MTcxNTY1MDY2MzMzOTc1MzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Rambut dalam batas normal\"\n}"
}
]
}
]
},
{
"name": "Bibir",
"item": [
{
"name": "Observation - Bibir",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32446-7\",\n \"display\": \"Physical findings of Lip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Bibir",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32446-7\",\n \"display\": \"Physical findings of Lip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\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": "Tue, 14 May 2024 01:38:13 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/Observation/90f1422b-758d-415a-ab76-38224fd0eb22/_history/MTcxNTY1MDY5MzU0MTA4NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDY5MzU0MTA4NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:38:13 GMT"
},
{
"key": "content-length",
"value": "822"
},
{
"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": "3eb55119-81d2-4cea-a1b4-bece45c3cf72"
},
{
"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\": \"32446-7\",\n \"display\": \"Physical findings of Lip\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"90f1422b-758d-415a-ab76-38224fd0eb22\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:38:13.541085+00:00\",\n \"versionId\": \"MTcxNTY1MDY5MzU0MTA4NTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
},
{
"name": "Observation - Bibir",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32446-7\",\n \"display\": \"Physical findings of Lip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Bibir",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32446-7\",\n \"display\": \"Physical findings of Lip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\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": "Tue, 14 May 2024 01:38:13 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/Observation/90f1422b-758d-415a-ab76-38224fd0eb22/_history/MTcxNTY1MDY5MzU0MTA4NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDY5MzU0MTA4NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:38:13 GMT"
},
{
"key": "content-length",
"value": "822"
},
{
"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": "3eb55119-81d2-4cea-a1b4-bece45c3cf72"
},
{
"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\": \"32446-7\",\n \"display\": \"Physical findings of Lip\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"90f1422b-758d-415a-ab76-38224fd0eb22\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:38:13.541085+00:00\",\n \"versionId\": \"MTcxNTY1MDY5MzU0MTA4NTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
}
]
},
{
"name": "Gigi Geligi",
"item": [
{
"name": "Observation - Gigi Geligi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gigi Geligi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}",
"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/\"MTcxNTY1MDc2MTgwNjk0NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:39:21 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/3ec1c761-bffa-434a-8827-d4a036f3d1fa/_history/MTcxNTY1MDc2MTgwNjk0NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:39:21 GMT"
},
{
"key": "content-length",
"value": "830"
},
{
"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": "24e3c05f-b2d8-4762-8386-365b0b3e39dc"
},
{
"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\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"3ec1c761-bffa-434a-8827-d4a036f3d1fa\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:39:21.806946+00:00\",\n \"versionId\": \"MTcxNTY1MDc2MTgwNjk0NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}"
}
]
},
{
"name": "Observation - Gigi Geligi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gigi Geligi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}",
"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/\"MTcxNTY1MDc2MTgwNjk0NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:39:21 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/3ec1c761-bffa-434a-8827-d4a036f3d1fa/_history/MTcxNTY1MDc2MTgwNjk0NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:39:21 GMT"
},
{
"key": "content-length",
"value": "830"
},
{
"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": "24e3c05f-b2d8-4762-8386-365b0b3e39dc"
},
{
"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\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"3ec1c761-bffa-434a-8827-d4a036f3d1fa\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:39:21.806946+00:00\",\n \"versionId\": \"MTcxNTY1MDc2MTgwNjk0NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}"
}
]
}
]
},
{
"name": "Lidah",
"item": [
{
"name": "Observation - Lidah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lidah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}",
"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/\"MTcxNTY1MDc4NTkwNjcyOTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:39:45 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/9557c5c4-4414-434e-9045-d33d7fce671c/_history/MTcxNTY1MDc4NTkwNjcyOTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:39:45 GMT"
},
{
"key": "content-length",
"value": "823"
},
{
"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": "b5b03004-83f4-44d6-99ac-3f97e56d38c6"
},
{
"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\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"9557c5c4-4414-434e-9045-d33d7fce671c\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:39:45.906729+00:00\",\n \"versionId\": \"MTcxNTY1MDc4NTkwNjcyOTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}"
}
]
},
{
"name": "Observation - Lidah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lidah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}",
"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/\"MTcxNTY1MDc4NTkwNjcyOTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:39:45 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/9557c5c4-4414-434e-9045-d33d7fce671c/_history/MTcxNTY1MDc4NTkwNjcyOTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:39:45 GMT"
},
{
"key": "content-length",
"value": "823"
},
{
"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": "b5b03004-83f4-44d6-99ac-3f97e56d38c6"
},
{
"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\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"9557c5c4-4414-434e-9045-d33d7fce671c\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:39:45.906729+00:00\",\n \"versionId\": \"MTcxNTY1MDc4NTkwNjcyOTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}"
}
]
}
]
},
{
"name": "Langit-langit",
"item": [
{
"name": "Observation - Langit-Langit",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Langit-Langit",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}",
"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/\"MTcxNTY1MDgxMjA5NjI5OTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:40:12 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/Observation/a2693908-c026-4c9c-9bc7-eb3e446777fb/_history/MTcxNTY1MDgxMjA5NjI5OTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:40:12 GMT"
},
{
"key": "content-length",
"value": "971"
},
{
"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": "e3fd77ca-66b2-48cd-9373-b87ba5dd385c"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"a2693908-c026-4c9c-9bc7-eb3e446777fb\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:40:12.096299+00:00\",\n \"versionId\": \"MTcxNTY1MDgxMjA5NjI5OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}"
}
]
},
{
"name": "Observation - Langit-Langit",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Langit-Langit",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}",
"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/\"MTcxNTY1MDgxMjA5NjI5OTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:40:12 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/Observation/a2693908-c026-4c9c-9bc7-eb3e446777fb/_history/MTcxNTY1MDgxMjA5NjI5OTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:40:12 GMT"
},
{
"key": "content-length",
"value": "971"
},
{
"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": "e3fd77ca-66b2-48cd-9373-b87ba5dd385c"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"a2693908-c026-4c9c-9bc7-eb3e446777fb\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:40:12.096299+00:00\",\n \"versionId\": \"MTcxNTY1MDgxMjA5NjI5OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}"
}
]
}
]
},
{
"name": "Leher",
"item": [
{
"name": "Observation - Leher",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Leher",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}",
"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/8cb4fe7a-277b-4fb6-bf87-e76892122114/_history/MTcxNTY1MDg0OTY5NTAwNjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDg0OTY5NTAwNjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:40:49 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:40:49 GMT"
},
{
"key": "content-length",
"value": "894"
},
{
"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": "15ed29ad-87e3-4ec2-b538-88add7e4f9e3"
},
{
"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\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"8cb4fe7a-277b-4fb6-bf87-e76892122114\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:40:49.695006+00:00\",\n \"versionId\": \"MTcxNTY1MDg0OTY5NTAwNjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}"
}
]
},
{
"name": "Observation - Leher",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Leher",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}",
"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/8cb4fe7a-277b-4fb6-bf87-e76892122114/_history/MTcxNTY1MDg0OTY5NTAwNjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDg0OTY5NTAwNjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:40:49 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:40:49 GMT"
},
{
"key": "content-length",
"value": "894"
},
{
"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": "15ed29ad-87e3-4ec2-b538-88add7e4f9e3"
},
{
"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\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"8cb4fe7a-277b-4fb6-bf87-e76892122114\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:40:49.695006+00:00\",\n \"versionId\": \"MTcxNTY1MDg0OTY5NTAwNjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}"
}
]
}
]
},
{
"name": "Tenggorokan",
"item": [
{
"name": "Observation - Tenggorokan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tenggorokan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\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/09befb6a-8adc-4975-a2b2-889b05b03331/_history/MTcxNTY1MDg3Nzg3NDE3MDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDg3Nzg3NDE3MDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:41:17 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:41:17 GMT"
},
{
"key": "content-length",
"value": "828"
},
{
"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": "617ec805-d841-4648-92c3-67473f37423a"
},
{
"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\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"09befb6a-8adc-4975-a2b2-889b05b03331\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:41:17.874170+00:00\",\n \"versionId\": \"MTcxNTY1MDg3Nzg3NDE3MDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Tenggorokan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tenggorokan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\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/09befb6a-8adc-4975-a2b2-889b05b03331/_history/MTcxNTY1MDg3Nzg3NDE3MDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDg3Nzg3NDE3MDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:41:17 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:41:17 GMT"
},
{
"key": "content-length",
"value": "828"
},
{
"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": "617ec805-d841-4648-92c3-67473f37423a"
},
{
"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\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"09befb6a-8adc-4975-a2b2-889b05b03331\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:41:17.874170+00:00\",\n \"versionId\": \"MTcxNTY1MDg3Nzg3NDE3MDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Tonsil",
"item": [
{
"name": "Observation - Tonsil",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tonsil",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\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/95215908-270e-4187-9d6b-ae65cc4d7634/_history/MTcxNTY1MDkwODc1MzgzMzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:41:48 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDkwODc1MzgzMzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:41:48 GMT"
},
{
"key": "content-length",
"value": "961"
},
{
"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": "8a1ec79d-1f17-47a8-8a15-93ccd5b4f973"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"95215908-270e-4187-9d6b-ae65cc4d7634\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:41:48.753833+00:00\",\n \"versionId\": \"MTcxNTY1MDkwODc1MzgzMzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Tonsil",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tonsil",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\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/95215908-270e-4187-9d6b-ae65cc4d7634/_history/MTcxNTY1MDkwODc1MzgzMzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:41:48 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDkwODc1MzgzMzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:41:48 GMT"
},
{
"key": "content-length",
"value": "961"
},
{
"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": "8a1ec79d-1f17-47a8-8a15-93ccd5b4f973"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"95215908-270e-4187-9d6b-ae65cc4d7634\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:41:48.753833+00:00\",\n \"versionId\": \"MTcxNTY1MDkwODc1MzgzMzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Dada",
"item": [
{
"name": "Observation - Dada",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dada",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\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/39274871-1afe-4149-bb78-4fb37483a904/_history/MTcxNTY1MDk0Njk5OTA5MjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:42:26 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDk0Njk5OTA5MjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:42:27 GMT"
},
{
"key": "content-length",
"value": "869"
},
{
"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": "406158b9-4257-4ff4-a113-9a0f11400b44"
},
{
"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\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"39274871-1afe-4149-bb78-4fb37483a904\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:42:26.999092+00:00\",\n \"versionId\": \"MTcxNTY1MDk0Njk5OTA5MjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\n}"
}
]
},
{
"name": "Observation - Dada",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dada",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\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/39274871-1afe-4149-bb78-4fb37483a904/_history/MTcxNTY1MDk0Njk5OTA5MjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:42:26 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDk0Njk5OTA5MjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:42:27 GMT"
},
{
"key": "content-length",
"value": "869"
},
{
"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": "406158b9-4257-4ff4-a113-9a0f11400b44"
},
{
"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\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"39274871-1afe-4149-bb78-4fb37483a904\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:42:26.999092+00:00\",\n \"versionId\": \"MTcxNTY1MDk0Njk5OTA5MjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\n}"
}
]
}
]
},
{
"name": "Payudara",
"item": [
{
"name": "Observation - Payudara",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Payudara",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MDk2ODMzNDA3ODAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:42: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/Observation/dbcdd566-c18c-4867-a0b7-62b3f7485f68/_history/MTcxNTY1MDk2ODMzNDA3ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:42:48 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": "efe10b53-f3fe-4032-ab37-e65375069d2e"
},
{
"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\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"dbcdd566-c18c-4867-a0b7-62b3f7485f68\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:42:48.334078+00:00\",\n \"versionId\": \"MTcxNTY1MDk2ODMzNDA3ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Payudara",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Payudara",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MDk2ODMzNDA3ODAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:42: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/Observation/dbcdd566-c18c-4867-a0b7-62b3f7485f68/_history/MTcxNTY1MDk2ODMzNDA3ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:42:48 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": "efe10b53-f3fe-4032-ab37-e65375069d2e"
},
{
"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\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"dbcdd566-c18c-4867-a0b7-62b3f7485f68\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:42:48.334078+00:00\",\n \"versionId\": \"MTcxNTY1MDk2ODMzNDA3ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Punggung",
"item": [
{
"name": "Observation - Punggung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Punggung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\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/81af7310-2504-4d24-90d6-bba0b960c654/_history/MTcxNTY1MTAwMDg5NDk4OTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MTAwMDg5NDk4OTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:43:20 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:43:20 GMT"
},
{
"key": "content-length",
"value": "827"
},
{
"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": "677484a8-dd60-4880-bcc8-51de45119451"
},
{
"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\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"81af7310-2504-4d24-90d6-bba0b960c654\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:43:20.894989+00:00\",\n \"versionId\": \"MTcxNTY1MTAwMDg5NDk4OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\n}"
}
]
},
{
"name": "Observation - Punggung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Punggung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\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/81af7310-2504-4d24-90d6-bba0b960c654/_history/MTcxNTY1MTAwMDg5NDk4OTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MTAwMDg5NDk4OTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:43:20 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:43:20 GMT"
},
{
"key": "content-length",
"value": "827"
},
{
"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": "677484a8-dd60-4880-bcc8-51de45119451"
},
{
"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\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"81af7310-2504-4d24-90d6-bba0b960c654\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:43:20.894989+00:00\",\n \"versionId\": \"MTcxNTY1MTAwMDg5NDk4OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\n}"
}
]
}
]
},
{
"name": "Perut",
"item": [
{
"name": "Observation - Perut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Perut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}",
"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/\"MTcxNTY1MTAyNzY2OTI2NDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:43:47 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/6c848591-736e-4cb9-9649-b1dbaf0cdd70/_history/MTcxNTY1MTAyNzY2OTI2NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:43:47 GMT"
},
{
"key": "content-length",
"value": "977"
},
{
"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": "2824f930-bda5-4cbe-af3d-b96eb3005216"
},
{
"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\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"6c848591-736e-4cb9-9649-b1dbaf0cdd70\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:43:47.669264+00:00\",\n \"versionId\": \"MTcxNTY1MTAyNzY2OTI2NDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}"
}
]
},
{
"name": "Observation - Perut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Perut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}",
"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/\"MTcxNTY1MTAyNzY2OTI2NDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:43:47 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/6c848591-736e-4cb9-9649-b1dbaf0cdd70/_history/MTcxNTY1MTAyNzY2OTI2NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:43:47 GMT"
},
{
"key": "content-length",
"value": "977"
},
{
"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": "2824f930-bda5-4cbe-af3d-b96eb3005216"
},
{
"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\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"6c848591-736e-4cb9-9649-b1dbaf0cdd70\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:43:47.669264+00:00\",\n \"versionId\": \"MTcxNTY1MTAyNzY2OTI2NDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}"
}
]
}
]
},
{
"name": "Genital",
"item": [
{
"name": "Observation - Genital",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Genital",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}",
"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/\"MTcxNTY1MTEyNTYwNjk1NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/c43ce090-7635-49e6-a99d-588354024ec9/_history/MTcxNTY1MTEyNTYwNjk1NjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:45:25 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:45:25 GMT"
},
{
"key": "content-length",
"value": "1004"
},
{
"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": "01b9f9c2-f9d0-42e4-b082-23246da6c654"
},
{
"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\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"c43ce090-7635-49e6-a99d-588354024ec9\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:45:25.606956+00:00\",\n \"versionId\": \"MTcxNTY1MTEyNTYwNjk1NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}"
}
]
},
{
"name": "Observation - Genital",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Genital",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}",
"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/\"MTcxNTY1MTEyNTYwNjk1NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/c43ce090-7635-49e6-a99d-588354024ec9/_history/MTcxNTY1MTEyNTYwNjk1NjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:45:25 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:45:25 GMT"
},
{
"key": "content-length",
"value": "1004"
},
{
"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": "01b9f9c2-f9d0-42e4-b082-23246da6c654"
},
{
"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\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"c43ce090-7635-49e6-a99d-588354024ec9\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:45:25.606956+00:00\",\n \"versionId\": \"MTcxNTY1MTEyNTYwNjk1NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}"
}
]
}
]
},
{
"name": "Anus/Dubur",
"item": [
{
"name": "Observation - Anus/Dubur",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"53505006\",\n \"display\": \"Anal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Anus/Dubur",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"53505006\",\n \"display\": \"Anal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MzQzNjIwMzQ3NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/a91f3236-6f8b-4ec8-b171-426ab43dc869/_history/MTcxNTY1MzQzNjIwMzQ3NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:23:56 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:23:56 GMT"
},
{
"key": "content-length",
"value": "942"
},
{
"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": "3cee66ac-d198-4898-a12c-e723fc81f9eb"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"53505006\",\n \"display\": \"Anal structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"a91f3236-6f8b-4ec8-b171-426ab43dc869\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:23:56.203476+00:00\",\n \"versionId\": \"MTcxNTY1MzQzNjIwMzQ3NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Anus/Dubur",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"53505006\",\n \"display\": \"Anal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Anus/Dubur",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"53505006\",\n \"display\": \"Anal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MzQzNjIwMzQ3NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/a91f3236-6f8b-4ec8-b171-426ab43dc869/_history/MTcxNTY1MzQzNjIwMzQ3NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:23:56 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:23:56 GMT"
},
{
"key": "content-length",
"value": "942"
},
{
"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": "3cee66ac-d198-4898-a12c-e723fc81f9eb"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"53505006\",\n \"display\": \"Anal structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"a91f3236-6f8b-4ec8-b171-426ab43dc869\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:23:56.203476+00:00\",\n \"versionId\": \"MTcxNTY1MzQzNjIwMzQ3NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Lengan Atas",
"item": [
{
"name": "Observation - Lengan Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lengan Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\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/fc066d29-fc9e-4c85-9214-6562af06181e/_history/MTcxNTY1MzUxMDg0NzE2MTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:25:10 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MzUxMDg0NzE2MTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:25:10 GMT"
},
{
"key": "content-length",
"value": "860"
},
{
"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": "b00dd34b-3689-4215-abed-1dcbcc8a8cad"
},
{
"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\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"fc066d29-fc9e-4c85-9214-6562af06181e\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:25:10.847161+00:00\",\n \"versionId\": \"MTcxNTY1MzUxMDg0NzE2MTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}"
}
]
},
{
"name": "Observation - Lengan Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lengan Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\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/fc066d29-fc9e-4c85-9214-6562af06181e/_history/MTcxNTY1MzUxMDg0NzE2MTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:25:10 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MzUxMDg0NzE2MTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:25:10 GMT"
},
{
"key": "content-length",
"value": "860"
},
{
"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": "b00dd34b-3689-4215-abed-1dcbcc8a8cad"
},
{
"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\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"fc066d29-fc9e-4c85-9214-6562af06181e\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:25:10.847161+00:00\",\n \"versionId\": \"MTcxNTY1MzUxMDg0NzE2MTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}"
}
]
}
]
},
{
"name": "Lengan Bawah",
"item": [
{
"name": "Observation - Lengan Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lengan Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"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/\"MTcxNTY1MzQ5NDU2NzY5OTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:24: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/Observation/2d9cdf22-cef0-4527-adc7-d9f03f3c06c1/_history/MTcxNTY1MzQ5NDU2NzY5OTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:24:54 GMT"
},
{
"key": "content-length",
"value": "859"
},
{
"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": "2e4e9854-43ee-45f7-b2a6-0d048e1a1d30"
},
{
"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\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"2d9cdf22-cef0-4527-adc7-d9f03f3c06c1\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:24:54.567699+00:00\",\n \"versionId\": \"MTcxNTY1MzQ5NDU2NzY5OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}"
}
]
},
{
"name": "Observation - Lengan Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lengan Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"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/\"MTcxNTY1MzQ5NDU2NzY5OTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:24: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/Observation/2d9cdf22-cef0-4527-adc7-d9f03f3c06c1/_history/MTcxNTY1MzQ5NDU2NzY5OTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:24:54 GMT"
},
{
"key": "content-length",
"value": "859"
},
{
"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": "2e4e9854-43ee-45f7-b2a6-0d048e1a1d30"
},
{
"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\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"2d9cdf22-cef0-4527-adc7-d9f03f3c06c1\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:24:54.567699+00:00\",\n \"versionId\": \"MTcxNTY1MzQ5NDU2NzY5OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}"
}
]
}
]
},
{
"name": "Jari Tangan",
"item": [
{
"name": "Observation - Jari Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"7569003\",\n \"display\": \"Finger structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jari Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"7569003\",\n \"display\": \"Finger structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MzU1NzMyMDQ4NzAwMA\""
},
{
"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/9bc2a713-750c-4891-b4aa-538a0c975f2e/_history/MTcxNTY1MzU1NzMyMDQ4NzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:25:57 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:25:57 GMT"
},
{
"key": "content-length",
"value": "946"
},
{
"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": "47c73bb6-ce82-4c80-a847-770884b4e544"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"7569003\",\n \"display\": \"Finger structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"9bc2a713-750c-4891-b4aa-538a0c975f2e\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:25:57.320487+00:00\",\n \"versionId\": \"MTcxNTY1MzU1NzMyMDQ4NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Jari Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"7569003\",\n \"display\": \"Finger structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jari Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"7569003\",\n \"display\": \"Finger structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MzU1NzMyMDQ4NzAwMA\""
},
{
"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/9bc2a713-750c-4891-b4aa-538a0c975f2e/_history/MTcxNTY1MzU1NzMyMDQ4NzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:25:57 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:25:57 GMT"
},
{
"key": "content-length",
"value": "946"
},
{
"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": "47c73bb6-ce82-4c80-a847-770884b4e544"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"7569003\",\n \"display\": \"Finger structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"9bc2a713-750c-4891-b4aa-538a0c975f2e\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:25:57.320487+00:00\",\n \"versionId\": \"MTcxNTY1MzU1NzMyMDQ4NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Kuku Tangan",
"item": [
{
"name": "Observation - Kuku Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kuku Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}",
"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/b00c829f-c4d1-4752-86ff-9365750a5a1d/_history/MTcxNTY1NDUyMTAzNTA4NTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:42:01 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDUyMTAzNTA4NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:42:01 GMT"
},
{
"key": "content-length",
"value": "947"
},
{
"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": "7cd844e7-c5bc-4aee-8ec1-7b0d448585de"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"32456-6\",\n \"display\": \"Physical findings of Nail\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"b00c829f-c4d1-4752-86ff-9365750a5a1d\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:42:01.035085+00:00\",\n \"versionId\": \"MTcxNTY1NDUyMTAzNTA4NTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
},
{
"name": "Observation - Kuku Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kuku Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}",
"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/b00c829f-c4d1-4752-86ff-9365750a5a1d/_history/MTcxNTY1NDUyMTAzNTA4NTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:42:01 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDUyMTAzNTA4NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:42:01 GMT"
},
{
"key": "content-length",
"value": "947"
},
{
"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": "7cd844e7-c5bc-4aee-8ec1-7b0d448585de"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"32456-6\",\n \"display\": \"Physical findings of Nail\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"b00c829f-c4d1-4752-86ff-9365750a5a1d\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:42:01.035085+00:00\",\n \"versionId\": \"MTcxNTY1NDUyMTAzNTA4NTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
}
]
},
{
"name": "Persendian Tangan",
"item": [
{
"name": "Observation - Persendian Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Persendian Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}",
"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": "last-modified",
"value": "Tue, 14 May 2024 02:42:32 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDU1MjMzMTA4ODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/f5612b80-df4f-4155-96fc-319bc911a003/_history/MTcxNTY1NDU1MjMzMTA4ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:42:32 GMT"
},
{
"key": "content-length",
"value": "840"
},
{
"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": "b1e17248-0893-49bc-8367-b130fa136dc6"
},
{
"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\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"f5612b80-df4f-4155-96fc-319bc911a003\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:42:32.331088+00:00\",\n \"versionId\": \"MTcxNTY1NDU1MjMzMTA4ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}"
}
]
},
{
"name": "Observation - Persendian Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Persendian Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}",
"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": "last-modified",
"value": "Tue, 14 May 2024 02:42:32 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDU1MjMzMTA4ODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/f5612b80-df4f-4155-96fc-319bc911a003/_history/MTcxNTY1NDU1MjMzMTA4ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:42:32 GMT"
},
{
"key": "content-length",
"value": "840"
},
{
"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": "b1e17248-0893-49bc-8367-b130fa136dc6"
},
{
"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\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"f5612b80-df4f-4155-96fc-319bc911a003\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:42:32.331088+00:00\",\n \"versionId\": \"MTcxNTY1NDU1MjMzMTA4ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}"
}
]
}
]
},
{
"name": "Tungkai Atas",
"item": [
{
"name": "Observation - Tungkai Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tungkai Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\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/af181a48-ce4b-4759-a560-e5dba79623c1/_history/MTcxNTY1NDU4MDY2NjU0ODAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:43:00 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDU4MDY2NjU0ODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:43:00 GMT"
},
{
"key": "content-length",
"value": "855"
},
{
"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": "5bc948bc-8709-4957-8cd1-07759d3253cc"
},
{
"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\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"af181a48-ce4b-4759-a560-e5dba79623c1\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:43:00.666548+00:00\",\n \"versionId\": \"MTcxNTY1NDU4MDY2NjU0ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}"
}
]
},
{
"name": "Observation - Tungkai Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tungkai Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\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/af181a48-ce4b-4759-a560-e5dba79623c1/_history/MTcxNTY1NDU4MDY2NjU0ODAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:43:00 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDU4MDY2NjU0ODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:43:00 GMT"
},
{
"key": "content-length",
"value": "855"
},
{
"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": "5bc948bc-8709-4957-8cd1-07759d3253cc"
},
{
"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\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"af181a48-ce4b-4759-a560-e5dba79623c1\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:43:00.666548+00:00\",\n \"versionId\": \"MTcxNTY1NDU4MDY2NjU0ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}"
}
]
}
]
},
{
"name": "Tungkai Bawah",
"item": [
{
"name": "Observation - Tungkai Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tungkai Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"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/ba4f22fe-6a3d-4786-a67d-cdeeeefb7953/_history/MTcxNTY1NDYwNjc3NTAyNzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:43:26 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDYwNjc3NTAyNzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:43:26 GMT"
},
{
"key": "content-length",
"value": "855"
},
{
"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": "b33c10a5-e180-4ac2-a47d-1c2fada5f49f"
},
{
"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\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"ba4f22fe-6a3d-4786-a67d-cdeeeefb7953\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:43:26.775027+00:00\",\n \"versionId\": \"MTcxNTY1NDYwNjc3NTAyNzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}"
}
]
},
{
"name": "Observation - Tungkai Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tungkai Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"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/ba4f22fe-6a3d-4786-a67d-cdeeeefb7953/_history/MTcxNTY1NDYwNjc3NTAyNzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:43:26 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDYwNjc3NTAyNzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:43:26 GMT"
},
{
"key": "content-length",
"value": "855"
},
{
"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": "b33c10a5-e180-4ac2-a47d-1c2fada5f49f"
},
{
"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\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"ba4f22fe-6a3d-4786-a67d-cdeeeefb7953\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:43:26.775027+00:00\",\n \"versionId\": \"MTcxNTY1NDYwNjc3NTAyNzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}"
}
]
}
]
},
{
"name": "Jari Kaki",
"item": [
{
"name": "Observation - Jari Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"29707007\",\n \"display\": \"Toe structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jari Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"29707007\",\n \"display\": \"Toe structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\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": "Tue, 14 May 2024 02:43: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/Observation/54f1f2cf-73b7-451e-864b-df0e894fc1e4/_history/MTcxNTY1NDYyODg2MTMxOTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDYyODg2MTMxOTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:43:48 GMT"
},
{
"key": "content-length",
"value": "942"
},
{
"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": "0929ddb2-c8ee-40d4-bf5a-78fbf667cc98"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"29707007\",\n \"display\": \"Toe structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"54f1f2cf-73b7-451e-864b-df0e894fc1e4\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:43:48.861319+00:00\",\n \"versionId\": \"MTcxNTY1NDYyODg2MTMxOTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Jari Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"29707007\",\n \"display\": \"Toe structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jari Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"29707007\",\n \"display\": \"Toe structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\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": "Tue, 14 May 2024 02:43: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/Observation/54f1f2cf-73b7-451e-864b-df0e894fc1e4/_history/MTcxNTY1NDYyODg2MTMxOTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDYyODg2MTMxOTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:43:48 GMT"
},
{
"key": "content-length",
"value": "942"
},
{
"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": "0929ddb2-c8ee-40d4-bf5a-78fbf667cc98"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"29707007\",\n \"display\": \"Toe structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"54f1f2cf-73b7-451e-864b-df0e894fc1e4\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:43:48.861319+00:00\",\n \"versionId\": \"MTcxNTY1NDYyODg2MTMxOTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Kuku Kaki",
"item": [
{
"name": "Observation - Kuku Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kuku Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\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/fbd1ee39-73fd-46e5-a1ae-f48b29dbf3f4/_history/MTcxNTY1NDY1NTQ5NTEwNTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:44:15 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDY1NTQ5NTEwNTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:44:15 GMT"
},
{
"key": "content-length",
"value": "948"
},
{
"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": "6a8943c5-6e1a-4ed5-8550-d794b967cb91"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"32456-6\",\n \"display\": \"Physical findings of Nail\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"fbd1ee39-73fd-46e5-a1ae-f48b29dbf3f4\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:44:15.495105+00:00\",\n \"versionId\": \"MTcxNTY1NDY1NTQ5NTEwNTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
},
{
"name": "Observation - Kuku Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kuku Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\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/fbd1ee39-73fd-46e5-a1ae-f48b29dbf3f4/_history/MTcxNTY1NDY1NTQ5NTEwNTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:44:15 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDY1NTQ5NTEwNTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:44:15 GMT"
},
{
"key": "content-length",
"value": "948"
},
{
"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": "6a8943c5-6e1a-4ed5-8550-d794b967cb91"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"32456-6\",\n \"display\": \"Physical findings of Nail\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"fbd1ee39-73fd-46e5-a1ae-f48b29dbf3f4\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:44:15.495105+00:00\",\n \"versionId\": \"MTcxNTY1NDY1NTQ5NTEwNTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
}
]
},
{
"name": "Persendian Kaki",
"item": [
{
"name": "Observation - Persendian Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Persendian Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\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/72357ac8-2a0a-4dbb-8451-48c4c9080e38/_history/MTcxNTY1NDY3MzA0MDcyMTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:44:33 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDY3MzA0MDcyMTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:44:33 GMT"
},
{
"key": "content-length",
"value": "949"
},
{
"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": "86cb407b-37ee-41f0-a8ee-b853bed80408"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"72357ac8-2a0a-4dbb-8451-48c4c9080e38\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:44:33.040721+00:00\",\n \"versionId\": \"MTcxNTY1NDY3MzA0MDcyMTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\n}"
}
]
},
{
"name": "Observation - Persendian Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Persendian Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\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/72357ac8-2a0a-4dbb-8451-48c4c9080e38/_history/MTcxNTY1NDY3MzA0MDcyMTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:44:33 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDY3MzA0MDcyMTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:44:33 GMT"
},
{
"key": "content-length",
"value": "949"
},
{
"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": "86cb407b-37ee-41f0-a8ee-b853bed80408"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"72357ac8-2a0a-4dbb-8451-48c4c9080e38\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:44:33.040721+00:00\",\n \"versionId\": \"MTcxNTY1NDY3MzA0MDcyMTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\n}"
}
]
}
]
}
]
},
{
"name": "Pemeriksaan Antropometri",
"item": [
{
"name": "Observation - Berat Badan",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:26:00+00:00\",\n \"issued\": \"2024-03-14T02:26:00+00:00\",\n \"valueQuantity\": {\n \"value\": 75,\n \"unit\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"kg\"\n }\n}",
"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": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:26:00+00:00\",\n \"issued\": \"2024-03-14T02:26:00+00:00\",\n \"valueQuantity\": {\n \"value\": 75,\n \"unit\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"kg\"\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": "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/add7ce13-c586-40a2-a0b6-28d835ef47fa/_history/MTcxNTY1NDcyMTM0NDc2MzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDcyMTM0NDc2MzAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:45:21 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:45:21 GMT"
},
{
"key": "content-length",
"value": "867"
},
{
"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": "a7155535-0dac-4b0e-b66d-5e63910b201a"
},
{
"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\": \"2024-03-14T02:26:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"add7ce13-c586-40a2-a0b6-28d835ef47fa\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:26:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:45:21.344763+00:00\",\n \"versionId\": \"MTcxNTY1NDcyMTM0NDc2MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"kg\",\n \"value\": 75\n }\n}"
}
]
},
{
"name": "Observation - Tinggi Badan",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:27:00+00:00\",\n \"issued\": \"2024-03-14T02:27:00+00:00\",\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tinggi Badan",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:27:00+00:00\",\n \"issued\": \"2024-03-14T02:27:00+00:00\",\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNTY1NDczNzg4OTMwNjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/45fe5e2f-a81e-44bd-b45d-bfa4a913b8e4/_history/MTcxNTY1NDczNzg4OTMwNjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:45:37 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:45:37 GMT"
},
{
"key": "content-length",
"value": "867"
},
{
"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": "20d86acd-9e26-410b-b808-f1d8e6bcde99"
},
{
"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\": \"2024-03-14T02:27:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"45fe5e2f-a81e-44bd-b45d-bfa4a913b8e4\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:27:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:45:37.889306+00:00\",\n \"versionId\": \"MTcxNTY1NDczNzg4OTMwNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"cm\",\n \"value\": 160\n }\n}"
}
]
},
{
"name": "Observation - Tinggi Badan",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:27:00+00:00\",\n \"issued\": \"2024-03-14T02:27:00+00:00\",\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tinggi Badan",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:27:00+00:00\",\n \"issued\": \"2024-03-14T02:27:00+00:00\",\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNTY1NDczNzg4OTMwNjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/45fe5e2f-a81e-44bd-b45d-bfa4a913b8e4/_history/MTcxNTY1NDczNzg4OTMwNjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:45:37 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:45:37 GMT"
},
{
"key": "content-length",
"value": "867"
},
{
"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": "20d86acd-9e26-410b-b808-f1d8e6bcde99"
},
{
"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\": \"2024-03-14T02:27:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"45fe5e2f-a81e-44bd-b45d-bfa4a913b8e4\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:27:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:45:37.889306+00:00\",\n \"versionId\": \"MTcxNTY1NDczNzg4OTMwNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"cm\",\n \"value\": 160\n }\n}"
}
]
},
{
"name": "Observation - Berat Badan",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:26:00+00:00\",\n \"issued\": \"2024-03-14T02:26:00+00:00\",\n \"valueQuantity\": {\n \"value\": 75,\n \"unit\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"kg\"\n }\n}",
"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": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:26:00+00:00\",\n \"issued\": \"2024-03-14T02:26:00+00:00\",\n \"valueQuantity\": {\n \"value\": 75,\n \"unit\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"kg\"\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": "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/add7ce13-c586-40a2-a0b6-28d835ef47fa/_history/MTcxNTY1NDcyMTM0NDc2MzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDcyMTM0NDc2MzAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:45:21 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:45:21 GMT"
},
{
"key": "content-length",
"value": "867"
},
{
"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": "a7155535-0dac-4b0e-b66d-5e63910b201a"
},
{
"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\": \"2024-03-14T02:26:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"add7ce13-c586-40a2-a0b6-28d835ef47fa\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:26:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:45:21.344763+00:00\",\n \"versionId\": \"MTcxNTY1NDcyMTM0NDc2MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"kg\",\n \"value\": 75\n }\n}"
}
]
}
]
}
]
},
{
"name": "05. Pemeriksaan Psikologis",
"item": [
{
"name": "Status Psikologis",
"item": [
{
"name": "Observation - Status Psikologis",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8693-4\",\n \"display\": \"Mental Status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Status Psikologis",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8693-4\",\n \"display\": \"Mental Status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/d247377f-e0be-4ab2-9798-b9a213930ddc/_history/MTcxNTY1NDc2ODM0MjkxNTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:46:08 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDc2ODM0MjkxNTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:46:08 GMT"
},
{
"key": "content-length",
"value": "809"
},
{
"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": "1a49914c-1f6a-4e9b-8faf-bf576d69dec1"
},
{
"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\": \"8693-4\",\n \"display\": \"Mental Status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"d247377f-e0be-4ab2-9798-b9a213930ddc\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:46:08.342915+00:00\",\n \"versionId\": \"MTcxNTY1NDc2ODM0MjkxNTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Status Psikologis",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8693-4\",\n \"display\": \"Mental Status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Status Psikologis",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8693-4\",\n \"display\": \"Mental Status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/d247377f-e0be-4ab2-9798-b9a213930ddc/_history/MTcxNTY1NDc2ODM0MjkxNTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:46:08 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDc2ODM0MjkxNTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:46:08 GMT"
},
{
"key": "content-length",
"value": "809"
},
{
"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": "1a49914c-1f6a-4e9b-8faf-bf576d69dec1"
},
{
"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\": \"8693-4\",\n \"display\": \"Mental Status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:22:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"d247377f-e0be-4ab2-9798-b9a213930ddc\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:46:08.342915+00:00\",\n \"versionId\": \"MTcxNTY1NDc2ODM0MjkxNTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
}
]
},
{
"name": "06. Pemeriksaan Penunjang",
"item": [
{
"name": "Pemeriksaan Gula Darah Puasa",
"item": [
{
"name": "ServiceRequest - Gula Darah Puasa",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Gula Darah Puasa",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/c91e936e-3bbb-4471-986d-139428a66ba0/_history/MTcxNTY5MDg4NTE2MDY3NTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 12:48:05 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MDg4NTE2MDY3NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 12:48:05 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": "d20e5688-7511-41f2-97fc-9fc55dda2a03"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"c91e936e-3bbb-4471-986d-139428a66ba0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T12:48:05.160675+00:00\",\n \"versionId\": \"MTcxNTY5MDg4NTE2MDY3NTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Gula Darah Puasa",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Gula Darah Puasa",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 12:50:22 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/552e9883-d674-4b5b-a9b7-a99403b4388c/_history/MTcxNTY5MTAyMjQzNTM3MDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTAyMjQzNTM3MDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 12:50:22 GMT"
},
{
"key": "content-length",
"value": "1677"
},
{
"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": "c061daba-bc1d-4d66-b635-bbf3840a3010"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"552e9883-d674-4b5b-a9b7-a99403b4388c\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T12:50:22.435370+00:00\",\n \"versionId\": \"MTcxNTY5MTAyMjQzNTM3MDAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/c91e936e-3bbb-4471-986d-139428a66ba0\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Gula Darah Puasa",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000022\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 220,\n \"unit\": \"mg/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gula Darah Puasa",
"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\": \"O000022\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 220,\n \"unit\": \"mg/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 14 May 2024 12:51:01 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/77d9504e-09f1-4272-b8c0-e6d0db5bd4b6/_history/MTcxNTY5MTA2MTE2NDMwOTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTA2MTE2NDMwOTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 12:51:01 GMT"
},
{
"key": "content-length",
"value": "1101"
},
{
"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": "ec4ccd12-2626-4227-8bff-65498c07aae5"
},
{
"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/c91e936e-3bbb-4471-986d-139428a66ba0\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"77d9504e-09f1-4272-b8c0-e6d0db5bd4b6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000022\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T12:51:01.164309+00:00\",\n \"versionId\": \"MTcxNTY5MTA2MTE2NDMwOTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/552e9883-d674-4b5b-a9b7-a99403b4388c\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dl\",\n \"value\": 220\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Gula Darah Puasa",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GulaDarahPuasa}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Gula Darah Puasa",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GulaDarahPuasa}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTExMTA4ODkxNjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/b246201b-8f65-4cbb-b5ae-60be84155773/_history/MTcxNTY5MTExMTA4ODkxNjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 12:51:51 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 12:51:51 GMT"
},
{
"key": "content-length",
"value": "1191"
},
{
"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": "ad73da9b-1b48-457e-bf7b-6c5e3f766f0d"
},
{
"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/c91e936e-3bbb-4471-986d-139428a66ba0\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"b246201b-8f65-4cbb-b5ae-60be84155773\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T12:51:51.088916+00:00\",\n \"versionId\": \"MTcxNTY5MTExMTA4ODkxNjAwMA\"\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/77d9504e-09f1-4272-b8c0-e6d0db5bd4b6\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/552e9883-d674-4b5b-a9b7-a99403b4388c\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Gula Darah Puasa",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GulaDarahPuasa}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Gula Darah Puasa",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GulaDarahPuasa}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTExMTA4ODkxNjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/b246201b-8f65-4cbb-b5ae-60be84155773/_history/MTcxNTY5MTExMTA4ODkxNjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 12:51:51 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 12:51:51 GMT"
},
{
"key": "content-length",
"value": "1191"
},
{
"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": "ad73da9b-1b48-457e-bf7b-6c5e3f766f0d"
},
{
"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/c91e936e-3bbb-4471-986d-139428a66ba0\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"b246201b-8f65-4cbb-b5ae-60be84155773\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T12:51:51.088916+00:00\",\n \"versionId\": \"MTcxNTY5MTExMTA4ODkxNjAwMA\"\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/77d9504e-09f1-4272-b8c0-e6d0db5bd4b6\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/552e9883-d674-4b5b-a9b7-a99403b4388c\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Gula Darah Puasa",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000022\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 220,\n \"unit\": \"mg/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gula Darah Puasa",
"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\": \"O000022\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 220,\n \"unit\": \"mg/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 14 May 2024 12:51:01 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/77d9504e-09f1-4272-b8c0-e6d0db5bd4b6/_history/MTcxNTY5MTA2MTE2NDMwOTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTA2MTE2NDMwOTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 12:51:01 GMT"
},
{
"key": "content-length",
"value": "1101"
},
{
"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": "ec4ccd12-2626-4227-8bff-65498c07aae5"
},
{
"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/c91e936e-3bbb-4471-986d-139428a66ba0\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"77d9504e-09f1-4272-b8c0-e6d0db5bd4b6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000022\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T12:51:01.164309+00:00\",\n \"versionId\": \"MTcxNTY5MTA2MTE2NDMwOTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/552e9883-d674-4b5b-a9b7-a99403b4388c\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dl\",\n \"value\": 220\n }\n}"
}
]
},
{
"name": "Specimen - Gula Darah Puasa",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Gula Darah Puasa",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 12:50:22 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/552e9883-d674-4b5b-a9b7-a99403b4388c/_history/MTcxNTY5MTAyMjQzNTM3MDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTAyMjQzNTM3MDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 12:50:22 GMT"
},
{
"key": "content-length",
"value": "1677"
},
{
"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": "c061daba-bc1d-4d66-b635-bbf3840a3010"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"552e9883-d674-4b5b-a9b7-a99403b4388c\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T12:50:22.435370+00:00\",\n \"versionId\": \"MTcxNTY5MTAyMjQzNTM3MDAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/c91e936e-3bbb-4471-986d-139428a66ba0\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "ServiceRequest - Gula Darah Puasa",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Gula Darah Puasa",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/c91e936e-3bbb-4471-986d-139428a66ba0/_history/MTcxNTY5MDg4NTE2MDY3NTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 12:48:05 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MDg4NTE2MDY3NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 12:48:05 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": "d20e5688-7511-41f2-97fc-9fc55dda2a03"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"c91e936e-3bbb-4471-986d-139428a66ba0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T12:48:05.160675+00:00\",\n \"versionId\": \"MTcxNTY5MDg4NTE2MDY3NTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Gula Darah 2 Jam PP",
"item": [
{
"name": "ServiceRequest - Gula Darah 2 Jam PP",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000002\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah 2 Jam PP Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Gula Darah 2 Jam PP",
"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\": \"0000002\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah 2 Jam PP Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "Tue, 14 May 2024 12:55:13 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTMxMzk1MzExNjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/04afe5f3-f4bd-487a-9175-a27908457419/_history/MTcxNTY5MTMxMzk1MzExNjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 12:55:13 GMT"
},
{
"key": "content-length",
"value": "1125"
},
{
"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": "58e4dcbc-a37c-416b-acaa-f668b3bf9581"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Gula Darah 2 Jam PP Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"04afe5f3-f4bd-487a-9175-a27908457419\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000002\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T12:55:13.953116+00:00\",\n \"versionId\": \"MTcxNTY5MTMxMzk1MzExNjAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Gula Darah 2 Jam PP",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000002\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarah2PP}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Gula Darah 2 Jam PP",
"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\": \"0000002\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarah2PP}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNTY5MTM3Nzc5MDIzMDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/69a4f36c-2670-4e26-b550-7aefbd41ce82/_history/MTcxNTY5MTM3Nzc5MDIzMDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 12:56:17 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 12:56:17 GMT"
},
{
"key": "content-length",
"value": "1698"
},
{
"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": "96eda3ec-fd46-49f8-83ec-3afedfd62bdf"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"69a4f36c-2670-4e26-b550-7aefbd41ce82\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000002\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T12:56:17.790230+00:00\",\n \"versionId\": \"MTcxNTY5MTM3Nzc5MDIzMDAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/04afe5f3-f4bd-487a-9175-a27908457419\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Gula Darah 2 Jam PP",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000023\"\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\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36:01+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_GulaDarah2PP}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarah2PP}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 175,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gula Darah 2 Jam PP",
"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\": \"O000023\"\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\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36:01+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_GulaDarah2PP}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarah2PP}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 175,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "etag",
"value": "W/\"MTcxNTY5MTQ4ODMzMDQyNDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 12:58:08 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/Observation/2ed0076a-2493-47c5-ae70-06743600e2c7/_history/MTcxNTY5MTQ4ODMzMDQyNDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 12:58:08 GMT"
},
{
"key": "content-length",
"value": "1113"
},
{
"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": "4b8dd45f-9aa6-404b-bb2c-1131ab989e53"
},
{
"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/04afe5f3-f4bd-487a-9175-a27908457419\"\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\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"2ed0076a-2493-47c5-ae70-06743600e2c7\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000023\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:01+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T12:58:08.330424+00:00\",\n \"versionId\": \"MTcxNTY5MTQ4ODMzMDQyNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/69a4f36c-2670-4e26-b550-7aefbd41ce82\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 175\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Gula Darah 2 Jam PP",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah 2 Jam PP\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarah2PP}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GulaDarah2PP}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarah2PP}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah 2 jam PP dinyatakan tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Gula Darah 2 Jam PP",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah 2 Jam PP\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarah2PP}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GulaDarah2PP}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarah2PP}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah 2 jam PP dinyatakan tinggi\"\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": "Tue, 14 May 2024 13:01:09 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/4d54e173-30e1-4bf5-91be-dfd57dff1a87/_history/MTcxNTY5MTY2OTA4OTY5NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTY2OTA4OTY5NjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:01:09 GMT"
},
{
"key": "content-length",
"value": "1209"
},
{
"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": "bbfd41d0-1da2-49ca-bd7d-375097136092"
},
{
"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/04afe5f3-f4bd-487a-9175-a27908457419\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah 2 Jam PP\"\n },\n \"conclusion\": \"Hasil pemeriksaan gula darah 2 jam PP dinyatakan tinggi\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"4d54e173-30e1-4bf5-91be-dfd57dff1a87\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:01:09.089696+00:00\",\n \"versionId\": \"MTcxNTY5MTY2OTA4OTY5NjAwMA\"\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/2ed0076a-2493-47c5-ae70-06743600e2c7\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/69a4f36c-2670-4e26-b550-7aefbd41ce82\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Gula Darah 2 Jam PP",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000002\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah 2 Jam PP Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Gula Darah 2 Jam PP",
"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\": \"0000002\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah 2 Jam PP Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "Tue, 14 May 2024 12:55:13 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTMxMzk1MzExNjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/04afe5f3-f4bd-487a-9175-a27908457419/_history/MTcxNTY5MTMxMzk1MzExNjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 12:55:13 GMT"
},
{
"key": "content-length",
"value": "1125"
},
{
"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": "58e4dcbc-a37c-416b-acaa-f668b3bf9581"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Gula Darah 2 Jam PP Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"04afe5f3-f4bd-487a-9175-a27908457419\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000002\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T12:55:13.953116+00:00\",\n \"versionId\": \"MTcxNTY5MTMxMzk1MzExNjAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Gula Darah 2 Jam PP",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000023\"\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\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36:01+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_GulaDarah2PP}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarah2PP}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 175,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gula Darah 2 Jam PP",
"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\": \"O000023\"\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\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36:01+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_GulaDarah2PP}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarah2PP}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 175,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "etag",
"value": "W/\"MTcxNTY5MTQ4ODMzMDQyNDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 12:58:08 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/Observation/2ed0076a-2493-47c5-ae70-06743600e2c7/_history/MTcxNTY5MTQ4ODMzMDQyNDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 12:58:08 GMT"
},
{
"key": "content-length",
"value": "1113"
},
{
"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": "4b8dd45f-9aa6-404b-bb2c-1131ab989e53"
},
{
"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/04afe5f3-f4bd-487a-9175-a27908457419\"\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\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"2ed0076a-2493-47c5-ae70-06743600e2c7\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000023\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:01+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T12:58:08.330424+00:00\",\n \"versionId\": \"MTcxNTY5MTQ4ODMzMDQyNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/69a4f36c-2670-4e26-b550-7aefbd41ce82\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 175\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Gula Darah 2 Jam PP",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah 2 Jam PP\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarah2PP}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GulaDarah2PP}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarah2PP}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah 2 jam PP dinyatakan tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Gula Darah 2 Jam PP",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah 2 Jam PP\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarah2PP}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GulaDarah2PP}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarah2PP}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah 2 jam PP dinyatakan tinggi\"\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": "Tue, 14 May 2024 13:01:09 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/4d54e173-30e1-4bf5-91be-dfd57dff1a87/_history/MTcxNTY5MTY2OTA4OTY5NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTY2OTA4OTY5NjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:01:09 GMT"
},
{
"key": "content-length",
"value": "1209"
},
{
"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": "bbfd41d0-1da2-49ca-bd7d-375097136092"
},
{
"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/04afe5f3-f4bd-487a-9175-a27908457419\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah 2 Jam PP\"\n },\n \"conclusion\": \"Hasil pemeriksaan gula darah 2 jam PP dinyatakan tinggi\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"4d54e173-30e1-4bf5-91be-dfd57dff1a87\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:01:09.089696+00:00\",\n \"versionId\": \"MTcxNTY5MTY2OTA4OTY5NjAwMA\"\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/2ed0076a-2493-47c5-ae70-06743600e2c7\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/69a4f36c-2670-4e26-b550-7aefbd41ce82\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Gula Darah 2 Jam PP",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000002\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarah2PP}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Gula Darah 2 Jam PP",
"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\": \"0000002\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarah2PP}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNTY5MTM3Nzc5MDIzMDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/69a4f36c-2670-4e26-b550-7aefbd41ce82/_history/MTcxNTY5MTM3Nzc5MDIzMDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 12:56:17 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 12:56:17 GMT"
},
{
"key": "content-length",
"value": "1698"
},
{
"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": "96eda3ec-fd46-49f8-83ec-3afedfd62bdf"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"69a4f36c-2670-4e26-b550-7aefbd41ce82\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000002\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T12:56:17.790230+00:00\",\n \"versionId\": \"MTcxNTY5MTM3Nzc5MDIzMDAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/04afe5f3-f4bd-487a-9175-a27908457419\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan HbA1c",
"item": [
{
"name": "ServiceRequest - HbA1c",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000003\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan HbA1c Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - HbA1c",
"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\": \"0000003\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan HbA1c Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "etag",
"value": "W/\"MTcxNTY5MTczNDI4NzM4NTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:02:14 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/ac9b17b5-c453-460c-af55-a74bbfc56fa9/_history/MTcxNTY5MTczNDI4NzM4NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:02:14 GMT"
},
{
"key": "content-length",
"value": "1080"
},
{
"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": "e808fd37-a11a-4a89-ada5-c3ceb192b70a"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan HbA1c Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"ac9b17b5-c453-460c-af55-a74bbfc56fa9\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000003\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:02:14.287385+00:00\",\n \"versionId\": \"MTcxNTY5MTczNDI4NzM4NTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - HbA1c",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000003\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_HbA1c}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - HbA1c",
"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\": \"0000003\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_HbA1c}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:03:22 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/36075f06-1bb0-4727-8ffd-8c83351cf05c/_history/MTcxNTY5MTgwMjU4NzIwNjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTgwMjU4NzIwNjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:03:22 GMT"
},
{
"key": "content-length",
"value": "1698"
},
{
"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": "abc15638-04ea-414e-9cea-7fbf8be90b7a"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"36075f06-1bb0-4727-8ffd-8c83351cf05c\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000003\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:03:22.587206+00:00\",\n \"versionId\": \"MTcxNTY5MTgwMjU4NzIwNjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/ac9b17b5-c453-460c-af55-a74bbfc56fa9\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - HbA1c",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000024\"\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\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_HbA1c}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_HbA1c}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - HbA1c",
"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\": \"O000024\"\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\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_HbA1c}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_HbA1c}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\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": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:04:04 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTg0NDMwNTcwMjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/ebd5e304-b715-48ed-90e0-a74fac9ca8e0/_history/MTcxNTY5MTg0NDMwNTcwMjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:04:04 GMT"
},
{
"key": "content-length",
"value": "1083"
},
{
"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": "df6298a6-308c-4bf7-94c6-1e7ba807f9e5"
},
{
"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/ac9b17b5-c453-460c-af55-a74bbfc56fa9\"\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\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"ebd5e304-b715-48ed-90e0-a74fac9ca8e0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000024\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:04:04.305702+00:00\",\n \"versionId\": \"MTcxNTY5MTg0NDMwNTcwMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/36075f06-1bb0-4727-8ffd-8c83351cf05c\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"%\",\n \"value\": 5\n }\n}"
}
]
},
{
"name": "DiagnosticReport - HbA1c",
"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\": \"5234348\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_HbA1c}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_HbA1c}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_HbA1c}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan HbA1c masih dalam keadaan normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - HbA1c",
"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\": \"5234348\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_HbA1c}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_HbA1c}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_HbA1c}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan HbA1c masih dalam keadaan normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:05:36 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTkzNjA5MTc4NTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/77dc850b-da73-4b5a-b8ff-5ae0fa4cd3bc/_history/MTcxNTY5MTkzNjA5MTc4NTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:05:36 GMT"
},
{
"key": "content-length",
"value": "1170"
},
{
"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": "d3c13f2f-eb34-4698-8d2e-891a47f679e3"
},
{
"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/ac9b17b5-c453-460c-af55-a74bbfc56fa9\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"conclusion\": \"Hasil pemeriksaan HbA1c masih dalam keadaan normal\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"77dc850b-da73-4b5a-b8ff-5ae0fa4cd3bc\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234348\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:05:36.091785+00:00\",\n \"versionId\": \"MTcxNTY5MTkzNjA5MTc4NTAwMA\"\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/ebd5e304-b715-48ed-90e0-a74fac9ca8e0\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/36075f06-1bb0-4727-8ffd-8c83351cf05c\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - HbA1c",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000024\"\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\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_HbA1c}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_HbA1c}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - HbA1c",
"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\": \"O000024\"\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\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_HbA1c}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_HbA1c}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\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": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:04:04 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTg0NDMwNTcwMjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/ebd5e304-b715-48ed-90e0-a74fac9ca8e0/_history/MTcxNTY5MTg0NDMwNTcwMjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:04:04 GMT"
},
{
"key": "content-length",
"value": "1083"
},
{
"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": "df6298a6-308c-4bf7-94c6-1e7ba807f9e5"
},
{
"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/ac9b17b5-c453-460c-af55-a74bbfc56fa9\"\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\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"ebd5e304-b715-48ed-90e0-a74fac9ca8e0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000024\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:04:04.305702+00:00\",\n \"versionId\": \"MTcxNTY5MTg0NDMwNTcwMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/36075f06-1bb0-4727-8ffd-8c83351cf05c\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"%\",\n \"value\": 5\n }\n}"
}
]
},
{
"name": "Specimen - HbA1c",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000003\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_HbA1c}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - HbA1c",
"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\": \"0000003\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_HbA1c}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:03:22 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/36075f06-1bb0-4727-8ffd-8c83351cf05c/_history/MTcxNTY5MTgwMjU4NzIwNjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTgwMjU4NzIwNjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:03:22 GMT"
},
{
"key": "content-length",
"value": "1698"
},
{
"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": "abc15638-04ea-414e-9cea-7fbf8be90b7a"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"36075f06-1bb0-4727-8ffd-8c83351cf05c\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000003\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:03:22.587206+00:00\",\n \"versionId\": \"MTcxNTY5MTgwMjU4NzIwNjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/ac9b17b5-c453-460c-af55-a74bbfc56fa9\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "DiagnosticReport - HbA1c",
"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\": \"5234348\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_HbA1c}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_HbA1c}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_HbA1c}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan HbA1c masih dalam keadaan normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - HbA1c",
"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\": \"5234348\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_HbA1c}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_HbA1c}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_HbA1c}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan HbA1c masih dalam keadaan normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:05:36 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MTkzNjA5MTc4NTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/77dc850b-da73-4b5a-b8ff-5ae0fa4cd3bc/_history/MTcxNTY5MTkzNjA5MTc4NTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:05:36 GMT"
},
{
"key": "content-length",
"value": "1170"
},
{
"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": "d3c13f2f-eb34-4698-8d2e-891a47f679e3"
},
{
"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/ac9b17b5-c453-460c-af55-a74bbfc56fa9\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"conclusion\": \"Hasil pemeriksaan HbA1c masih dalam keadaan normal\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"77dc850b-da73-4b5a-b8ff-5ae0fa4cd3bc\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234348\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:05:36.091785+00:00\",\n \"versionId\": \"MTcxNTY5MTkzNjA5MTc4NTAwMA\"\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/ebd5e304-b715-48ed-90e0-a74fac9ca8e0\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/36075f06-1bb0-4727-8ffd-8c83351cf05c\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - HbA1c",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000003\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan HbA1c Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - HbA1c",
"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\": \"0000003\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan HbA1c Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "etag",
"value": "W/\"MTcxNTY5MTczNDI4NzM4NTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:02:14 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/ac9b17b5-c453-460c-af55-a74bbfc56fa9/_history/MTcxNTY5MTczNDI4NzM4NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:02:14 GMT"
},
{
"key": "content-length",
"value": "1080"
},
{
"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": "e808fd37-a11a-4a89-ada5-c3ceb192b70a"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan HbA1c Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"ac9b17b5-c453-460c-af55-a74bbfc56fa9\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000003\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:02:14.287385+00:00\",\n \"versionId\": \"MTcxNTY5MTczNDI4NzM4NTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Profil Lipid",
"item": [
{
"name": "ServiceRequest - Profil Lipid",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000004\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Profil Lipid Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Profil Lipid",
"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\": \"0000004\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Profil Lipid Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8/_history/MTcxNTY5MjA2Nzc5NjY5MjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MjA2Nzc5NjY5MjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:07:47 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:07:47 GMT"
},
{
"key": "content-length",
"value": "1085"
},
{
"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": "2d28bd75-e6ce-4591-baf2-fcae8cc8fd78"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Profil Lipid Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"9c55a02e-c9fd-432a-b7a5-3ec1793544e8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000004\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:07:47.796692+00:00\",\n \"versionId\": \"MTcxNTY5MjA2Nzc5NjY5MjAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Profil Lipid",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000004\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Profil Lipid",
"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\": \"0000004\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNTY5MjE2MDQ3MTM2NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:09:20 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/Specimen/103cf80a-e89d-4dd0-9364-b2731a969969/_history/MTcxNTY5MjE2MDQ3MTM2NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:09:20 GMT"
},
{
"key": "content-length",
"value": "1698"
},
{
"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": "d164eb7d-4e4e-4ff1-90e0-0d276580add3"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"103cf80a-e89d-4dd0-9364-b2731a969969\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000004\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:09:20.471366+00:00\",\n \"versionId\": \"MTcxNTY5MjE2MDQ3MTM2NjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Kolesterol",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 206,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kolesterol",
"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\": \"O000025\"\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\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 206,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 14 May 2024 13:11:12 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/Observation/fbe6edb4-4946-4397-b583-f9fc0578f1e7/_history/MTcxNTY5MjI3MjY3NTM2MTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MjI3MjY3NTM2MTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:11:12 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": "609b3063-1781-484d-95b0-79436fa7be7c"
},
{
"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/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\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\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"fbe6edb4-4946-4397-b583-f9fc0578f1e7\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:11:12.675361+00:00\",\n \"versionId\": \"MTcxNTY5MjI3MjY3NTM2MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 206\n }\n}"
}
]
},
{
"name": "Observation - Trigliserida",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2571-8\",\n \"display\": \"Triglyceride [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Trigliserida",
"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\": \"O000025\"\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\": \"2571-8\",\n \"display\": \"Triglyceride [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 14 May 2024 13:11:53 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MjMxMzMzMTQzODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/532b0e4f-0ec4-4b59-aeb0-3ec4d1a39c7b/_history/MTcxNTY5MjMxMzMzMTQzODAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:11:53 GMT"
},
{
"key": "content-length",
"value": "1098"
},
{
"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": "1018ef1f-bc0f-4cb6-a6c8-29d637984e12"
},
{
"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/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\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\": \"2571-8\",\n \"display\": \"Triglyceride [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"532b0e4f-0ec4-4b59-aeb0-3ec4d1a39c7b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:11:53.331438+00:00\",\n \"versionId\": \"MTcxNTY5MjMxMzMzMTQzODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 160\n }\n}"
}
]
},
{
"name": "Observation - LDL",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2089-1\",\n \"display\": \"Cholesterol in LDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 140,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - LDL",
"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\": \"O000025\"\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\": \"2089-1\",\n \"display\": \"Cholesterol in LDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 140,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "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/01f16215-6894-4504-9a83-43e724070755/_history/MTcxNTY5MjMzMzgxODQwNjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:12:13 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MjMzMzgxODQwNjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:12:13 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": "e4dab578-4e36-4e20-92ca-2ab324a3d42f"
},
{
"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/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\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\": \"2089-1\",\n \"display\": \"Cholesterol in LDL [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"01f16215-6894-4504-9a83-43e724070755\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:12:13.818406+00:00\",\n \"versionId\": \"MTcxNTY5MjMzMzgxODQwNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 140\n }\n}"
}
]
},
{
"name": "Observation - HDL",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2085-9\",\n \"display\": \"Cholesterol in HDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 38,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - HDL",
"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\": \"O000025\"\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\": \"2085-9\",\n \"display\": \"Cholesterol in HDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 38,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 14 May 2024 13:13:46 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MjQyNjAyMTMwMDAwMA\""
},
{
"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/3108240e-c6c5-41f5-9338-35dbcb482e07/_history/MTcxNTY5MjQyNjAyMTMwMDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:13:46 GMT"
},
{
"key": "content-length",
"value": "1103"
},
{
"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": "ea90f37d-93cc-40d6-a39f-0c2ff7658bea"
},
{
"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/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\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\": \"2085-9\",\n \"display\": \"Cholesterol in HDL [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"3108240e-c6c5-41f5-9338-35dbcb482e07\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:13:46.021300+00:00\",\n \"versionId\": \"MTcxNTY5MjQyNjAyMTMwMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 38\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Profil Lipid",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/fbe6edb4-4946-4397-b583-f9fc0578f1e7\"\n },\n {\n \"reference\": \"Observation/532b0e4f-0ec4-4b59-aeb0-3ec4d1a39c7b\"\n },\n {\n \"reference\": \"Observation/01f16215-6894-4504-9a83-43e724070755\"\n },\n {\n \"reference\": \"Observation/3108240e-c6c5-41f5-9338-35dbcb482e07\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/103cf80a-e89d-4dd0-9364-b2731a969969\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan profil lipid dengan rincian Kolesterol tinggi, Trigliserida tinggi, LDL tinggi, dan HDL rendah menunjukkan adanya risiko terkena penyakit jantung\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Profil Lipid",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/fbe6edb4-4946-4397-b583-f9fc0578f1e7\"\n },\n {\n \"reference\": \"Observation/532b0e4f-0ec4-4b59-aeb0-3ec4d1a39c7b\"\n },\n {\n \"reference\": \"Observation/01f16215-6894-4504-9a83-43e724070755\"\n },\n {\n \"reference\": \"Observation/3108240e-c6c5-41f5-9338-35dbcb482e07\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/103cf80a-e89d-4dd0-9364-b2731a969969\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan profil lipid dengan rincian Kolesterol tinggi, Trigliserida tinggi, LDL tinggi, dan HDL rendah menunjukkan adanya risiko terkena penyakit jantung\"\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": "Tue, 14 May 2024 13:16:21 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/DiagnosticReport/464fafa0-4d31-43f9-b0e3-9bfe53f33ab7/_history/MTcxNTY5MjU4MTAyNjM2NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MjU4MTAyNjM2NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:16:21 GMT"
},
{
"key": "content-length",
"value": "1477"
},
{
"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": "3e83e6e7-734a-4720-af66-eb474a87ef51"
},
{
"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/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"conclusion\": \"Hasil pemeriksaan profil lipid dengan rincian Kolesterol tinggi, Trigliserida tinggi, LDL tinggi, dan HDL rendah menunjukkan adanya risiko terkena penyakit jantung\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"464fafa0-4d31-43f9-b0e3-9bfe53f33ab7\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:16:21.026365+00:00\",\n \"versionId\": \"MTcxNTY5MjU4MTAyNjM2NTAwMA\"\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/fbe6edb4-4946-4397-b583-f9fc0578f1e7\"\n },\n {\n \"reference\": \"Observation/532b0e4f-0ec4-4b59-aeb0-3ec4d1a39c7b\"\n },\n {\n \"reference\": \"Observation/01f16215-6894-4504-9a83-43e724070755\"\n },\n {\n \"reference\": \"Observation/3108240e-c6c5-41f5-9338-35dbcb482e07\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/103cf80a-e89d-4dd0-9364-b2731a969969\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Profil Lipid",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/fbe6edb4-4946-4397-b583-f9fc0578f1e7\"\n },\n {\n \"reference\": \"Observation/532b0e4f-0ec4-4b59-aeb0-3ec4d1a39c7b\"\n },\n {\n \"reference\": \"Observation/01f16215-6894-4504-9a83-43e724070755\"\n },\n {\n \"reference\": \"Observation/3108240e-c6c5-41f5-9338-35dbcb482e07\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/103cf80a-e89d-4dd0-9364-b2731a969969\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan profil lipid dengan rincian Kolesterol tinggi, Trigliserida tinggi, LDL tinggi, dan HDL rendah menunjukkan adanya risiko terkena penyakit jantung\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Profil Lipid",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/fbe6edb4-4946-4397-b583-f9fc0578f1e7\"\n },\n {\n \"reference\": \"Observation/532b0e4f-0ec4-4b59-aeb0-3ec4d1a39c7b\"\n },\n {\n \"reference\": \"Observation/01f16215-6894-4504-9a83-43e724070755\"\n },\n {\n \"reference\": \"Observation/3108240e-c6c5-41f5-9338-35dbcb482e07\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/103cf80a-e89d-4dd0-9364-b2731a969969\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan profil lipid dengan rincian Kolesterol tinggi, Trigliserida tinggi, LDL tinggi, dan HDL rendah menunjukkan adanya risiko terkena penyakit jantung\"\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": "Tue, 14 May 2024 13:16:21 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/DiagnosticReport/464fafa0-4d31-43f9-b0e3-9bfe53f33ab7/_history/MTcxNTY5MjU4MTAyNjM2NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MjU4MTAyNjM2NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:16:21 GMT"
},
{
"key": "content-length",
"value": "1477"
},
{
"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": "3e83e6e7-734a-4720-af66-eb474a87ef51"
},
{
"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/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"conclusion\": \"Hasil pemeriksaan profil lipid dengan rincian Kolesterol tinggi, Trigliserida tinggi, LDL tinggi, dan HDL rendah menunjukkan adanya risiko terkena penyakit jantung\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"464fafa0-4d31-43f9-b0e3-9bfe53f33ab7\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:16:21.026365+00:00\",\n \"versionId\": \"MTcxNTY5MjU4MTAyNjM2NTAwMA\"\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/fbe6edb4-4946-4397-b583-f9fc0578f1e7\"\n },\n {\n \"reference\": \"Observation/532b0e4f-0ec4-4b59-aeb0-3ec4d1a39c7b\"\n },\n {\n \"reference\": \"Observation/01f16215-6894-4504-9a83-43e724070755\"\n },\n {\n \"reference\": \"Observation/3108240e-c6c5-41f5-9338-35dbcb482e07\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/103cf80a-e89d-4dd0-9364-b2731a969969\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Kolesterol",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 206,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kolesterol",
"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\": \"O000025\"\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\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 206,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 14 May 2024 13:11:12 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/Observation/fbe6edb4-4946-4397-b583-f9fc0578f1e7/_history/MTcxNTY5MjI3MjY3NTM2MTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MjI3MjY3NTM2MTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:11:12 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": "609b3063-1781-484d-95b0-79436fa7be7c"
},
{
"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/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\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\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"fbe6edb4-4946-4397-b583-f9fc0578f1e7\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:11:12.675361+00:00\",\n \"versionId\": \"MTcxNTY5MjI3MjY3NTM2MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 206\n }\n}"
}
]
},
{
"name": "Observation - LDL",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2089-1\",\n \"display\": \"Cholesterol in LDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 140,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - LDL",
"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\": \"O000025\"\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\": \"2089-1\",\n \"display\": \"Cholesterol in LDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 140,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "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/01f16215-6894-4504-9a83-43e724070755/_history/MTcxNTY5MjMzMzgxODQwNjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:12:13 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MjMzMzgxODQwNjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:12:13 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": "e4dab578-4e36-4e20-92ca-2ab324a3d42f"
},
{
"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/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\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\": \"2089-1\",\n \"display\": \"Cholesterol in LDL [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"01f16215-6894-4504-9a83-43e724070755\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:12:13.818406+00:00\",\n \"versionId\": \"MTcxNTY5MjMzMzgxODQwNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 140\n }\n}"
}
]
},
{
"name": "Specimen - Profil Lipid",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000004\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Profil Lipid",
"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\": \"0000004\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNTY5MjE2MDQ3MTM2NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:09:20 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/Specimen/103cf80a-e89d-4dd0-9364-b2731a969969/_history/MTcxNTY5MjE2MDQ3MTM2NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:09:20 GMT"
},
{
"key": "content-length",
"value": "1698"
},
{
"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": "d164eb7d-4e4e-4ff1-90e0-0d276580add3"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"103cf80a-e89d-4dd0-9364-b2731a969969\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000004\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:09:20.471366+00:00\",\n \"versionId\": \"MTcxNTY5MjE2MDQ3MTM2NjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Trigliserida",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2571-8\",\n \"display\": \"Triglyceride [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Trigliserida",
"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\": \"O000025\"\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\": \"2571-8\",\n \"display\": \"Triglyceride [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 14 May 2024 13:11:53 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MjMxMzMzMTQzODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/532b0e4f-0ec4-4b59-aeb0-3ec4d1a39c7b/_history/MTcxNTY5MjMxMzMzMTQzODAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:11:53 GMT"
},
{
"key": "content-length",
"value": "1098"
},
{
"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": "1018ef1f-bc0f-4cb6-a6c8-29d637984e12"
},
{
"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/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\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\": \"2571-8\",\n \"display\": \"Triglyceride [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"532b0e4f-0ec4-4b59-aeb0-3ec4d1a39c7b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:11:53.331438+00:00\",\n \"versionId\": \"MTcxNTY5MjMxMzMzMTQzODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 160\n }\n}"
}
]
},
{
"name": "ServiceRequest - Profil Lipid",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000004\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Profil Lipid Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Profil Lipid",
"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\": \"0000004\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Profil Lipid Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8/_history/MTcxNTY5MjA2Nzc5NjY5MjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MjA2Nzc5NjY5MjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:07:47 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:07:47 GMT"
},
{
"key": "content-length",
"value": "1085"
},
{
"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": "2d28bd75-e6ce-4591-baf2-fcae8cc8fd78"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Profil Lipid Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"9c55a02e-c9fd-432a-b7a5-3ec1793544e8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000004\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:07:47.796692+00:00\",\n \"versionId\": \"MTcxNTY5MjA2Nzc5NjY5MjAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - HDL",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2085-9\",\n \"display\": \"Cholesterol in HDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 38,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - HDL",
"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\": \"O000025\"\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\": \"2085-9\",\n \"display\": \"Cholesterol in HDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 38,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 14 May 2024 13:13:46 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5MjQyNjAyMTMwMDAwMA\""
},
{
"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/3108240e-c6c5-41f5-9338-35dbcb482e07/_history/MTcxNTY5MjQyNjAyMTMwMDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:13:46 GMT"
},
{
"key": "content-length",
"value": "1103"
},
{
"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": "ea90f37d-93cc-40d6-a39f-0c2ff7658bea"
},
{
"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/9c55a02e-c9fd-432a-b7a5-3ec1793544e8\"\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\": \"2085-9\",\n \"display\": \"Cholesterol in HDL [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"3108240e-c6c5-41f5-9338-35dbcb482e07\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:13:46.021300+00:00\",\n \"versionId\": \"MTcxNTY5MjQyNjAyMTMwMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/103cf80a-e89d-4dd0-9364-b2731a969969\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 38\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Fungsi Ginjal",
"item": [
{
"name": "Pemeriksaan Urinalisis - Proteinuria",
"item": [
{
"name": "ServiceRequest - Urinalisis - Proteinuria",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000005\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Urinalisis-Proteinuria Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Urinalisis - Proteinuria",
"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\": \"0000005\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Urinalisis-Proteinuria Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "etag",
"value": "W/\"MTcxMDg2ODI4ODIwNzkzOTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:11:28 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/ServiceRequest/7a25ce62-8840-4be2-86b5-8bafb074dfc7/_history/MTcxMDg2ODI4ODIwNzkzOTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:11:28 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": "7ece545d-0ad6-47d9-a1c6-1a483923dc02"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Urinalisis-Proteinuria Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"7a25ce62-8840-4be2-86b5-8bafb074dfc7\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000005\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:11:28.207939+00:00\",\n \"versionId\": \"MTcxMDg2ODI4ODIwNzkzOTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Urinalisis - Proteinuria",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000005\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Urinalisis - Proteinuria",
"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\": \"0000005\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:13:01 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2ODM4MTA1ODE5NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0/_history/MTcxMDg2ODM4MTA1ODE5NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:13:01 GMT"
},
{
"key": "Content-Length",
"value": "1680"
},
{
"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": "377aaea4-08a7-407e-b70f-88546bb3776c"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000005\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:13:01.058196+00:00\",\n \"versionId\": \"MTcxMDg2ODM4MTA1ODE5NjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/7a25ce62-8840-4be2-86b5-8bafb074dfc7\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Urinalisis - Proteinuria",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000026\"\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\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/{{Observation_UrinalisisProteinuria}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 19,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Urinalisis - Proteinuria",
"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\": \"O000026\"\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\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/{{Observation_UrinalisisProteinuria}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 19,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 19 Mar 2024 17:15:16 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2ODUxNjQ3MTgxMTAwMA\""
},
{
"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/c35068f5-3a64-4cae-8fa6-3f34252df222/_history/MTcxMDg2ODUxNjQ3MTgxMTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:15:16 GMT"
},
{
"key": "Content-Length",
"value": "1082"
},
{
"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": "82aad55d-cbe9-4846-8de0-5d3a511f7345"
},
{
"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/7a25ce62-8840-4be2-86b5-8bafb074dfc7\"\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\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"c35068f5-3a64-4cae-8fa6-3f34252df222\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000026\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:15:16.471811+00:00\",\n \"versionId\": \"MTcxMDg2ODUxNjQ3MTgxMTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 19\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Urinalisis - Proteinuria",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_UrinalisisProteinuria}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_UrinalisisProteinuria}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan urinalisis-proteinuria menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Urinalisis - Proteinuria",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_UrinalisisProteinuria}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_UrinalisisProteinuria}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan urinalisis-proteinuria menunjukkan nilai normal\"\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/e521c8d1-e535-427e-8514-50c5dc0f4c02/_history/MTcxMDg2ODY1MTQwMTA0MDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:17:31 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2ODY1MTQwMTA0MDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:17:31 GMT"
},
{
"key": "Content-Length",
"value": "1192"
},
{
"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": "654a5a6a-ec29-4273-a9d7-2a60c731c159"
},
{
"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/7a25ce62-8840-4be2-86b5-8bafb074dfc7\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"conclusion\": \"Hasil pemeriksaan urinalisis-proteinuria menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"e521c8d1-e535-427e-8514-50c5dc0f4c02\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:17:31.401040+00:00\",\n \"versionId\": \"MTcxMDg2ODY1MTQwMTA0MDAwMA\"\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/c35068f5-3a64-4cae-8fa6-3f34252df222\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Urinalisis - Proteinuria",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000026\"\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\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/{{Observation_UrinalisisProteinuria}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 19,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Urinalisis - Proteinuria",
"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\": \"O000026\"\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\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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/{{Observation_UrinalisisProteinuria}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 19,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 19 Mar 2024 17:15:16 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2ODUxNjQ3MTgxMTAwMA\""
},
{
"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/c35068f5-3a64-4cae-8fa6-3f34252df222/_history/MTcxMDg2ODUxNjQ3MTgxMTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:15:16 GMT"
},
{
"key": "Content-Length",
"value": "1082"
},
{
"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": "82aad55d-cbe9-4846-8de0-5d3a511f7345"
},
{
"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/7a25ce62-8840-4be2-86b5-8bafb074dfc7\"\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\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"c35068f5-3a64-4cae-8fa6-3f34252df222\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000026\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:15:16.471811+00:00\",\n \"versionId\": \"MTcxMDg2ODUxNjQ3MTgxMTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 19\n }\n}"
}
]
},
{
"name": "Specimen - Urinalisis - Proteinuria",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000005\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Urinalisis - Proteinuria",
"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\": \"0000005\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:13:01 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2ODM4MTA1ODE5NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0/_history/MTcxMDg2ODM4MTA1ODE5NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:13:01 GMT"
},
{
"key": "Content-Length",
"value": "1680"
},
{
"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": "377aaea4-08a7-407e-b70f-88546bb3776c"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000005\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:13:01.058196+00:00\",\n \"versionId\": \"MTcxMDg2ODM4MTA1ODE5NjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/7a25ce62-8840-4be2-86b5-8bafb074dfc7\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "ServiceRequest - Urinalisis - Proteinuria",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000005\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Urinalisis-Proteinuria Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Urinalisis - Proteinuria",
"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\": \"0000005\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Urinalisis-Proteinuria Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "etag",
"value": "W/\"MTcxMDg2ODI4ODIwNzkzOTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:11:28 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/ServiceRequest/7a25ce62-8840-4be2-86b5-8bafb074dfc7/_history/MTcxMDg2ODI4ODIwNzkzOTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:11:28 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": "7ece545d-0ad6-47d9-a1c6-1a483923dc02"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Urinalisis-Proteinuria Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"7a25ce62-8840-4be2-86b5-8bafb074dfc7\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000005\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:11:28.207939+00:00\",\n \"versionId\": \"MTcxMDg2ODI4ODIwNzkzOTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Urinalisis - Proteinuria",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_UrinalisisProteinuria}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_UrinalisisProteinuria}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan urinalisis-proteinuria menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Urinalisis - Proteinuria",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_UrinalisisProteinuria}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_UrinalisisProteinuria}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan urinalisis-proteinuria menunjukkan nilai normal\"\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/e521c8d1-e535-427e-8514-50c5dc0f4c02/_history/MTcxMDg2ODY1MTQwMTA0MDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:17:31 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2ODY1MTQwMTA0MDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:17:31 GMT"
},
{
"key": "Content-Length",
"value": "1192"
},
{
"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": "654a5a6a-ec29-4273-a9d7-2a60c731c159"
},
{
"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/7a25ce62-8840-4be2-86b5-8bafb074dfc7\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"conclusion\": \"Hasil pemeriksaan urinalisis-proteinuria menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"e521c8d1-e535-427e-8514-50c5dc0f4c02\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:17:31.401040+00:00\",\n \"versionId\": \"MTcxMDg2ODY1MTQwMTA0MDAwMA\"\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/c35068f5-3a64-4cae-8fa6-3f34252df222\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Rasio Albumin: Kreatinin Urin",
"item": [
{
"name": "ServiceRequest - Rasio Albumin: Kreatinin Urin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000006\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Rasio Albumin: Kreatinin Urin Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Rasio Albumin: Kreatinin Urin",
"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\": \"0000006\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Rasio Albumin: Kreatinin Urin Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/c1f8488b-5c9f-4707-b115-1e9e3502054b/_history/MTcxMDg2OTA5MDQ2MjU4NDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTA5MDQ2MjU4NDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:24:50 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:24:50 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": "b53b559f-1c66-4c0e-854f-165df5c23601"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Rasio Albumin: Kreatinin Urin Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"c1f8488b-5c9f-4707-b115-1e9e3502054b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000006\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:24:50.462584+00:00\",\n \"versionId\": \"MTcxMDg2OTA5MDQ2MjU4NDAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Rasio Albumin: Kreatinin Urin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000006\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Rasio Albumin: Kreatinin Urin",
"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\": \"0000006\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:30:20 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTQyMDEwMTYwODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/f826230e-d8f0-41e8-bbfc-7057bd7e8653/_history/MTcxMDg2OTQyMDEwMTYwODAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:30:20 GMT"
},
{
"key": "Content-Length",
"value": "1680"
},
{
"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": "498ad610-30fa-4ccb-b4fd-485687e7df53"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"f826230e-d8f0-41e8-bbfc-7057bd7e8653\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000006\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:30:20.101608+00:00\",\n \"versionId\": \"MTcxMDg2OTQyMDEwMTYwODAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/c1f8488b-5c9f-4707-b115-1e9e3502054b\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Rasio Albumin: Kreatinin Urin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000027\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_RasioAlbuminKreatininUrin}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 28,\n \"unit\": \"mg/g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Rasio Albumin: Kreatinin Urin",
"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\": \"O000027\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_RasioAlbuminKreatininUrin}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 28,\n \"unit\": \"mg/g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"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/8507e092-65bf-47f0-a46f-5d0e0986b1f9/_history/MTcxMDg2OTYwOTEyMTA3OTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:33:29 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTYwOTEyMTA3OTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:33:29 GMT"
},
{
"key": "Content-Length",
"value": "1096"
},
{
"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": "5ac4e206-4dd1-4424-824d-01925488d17d"
},
{
"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/c1f8488b-5c9f-4707-b115-1e9e3502054b\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"8507e092-65bf-47f0-a46f-5d0e0986b1f9\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000027\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:33:29.121079+00:00\",\n \"versionId\": \"MTcxMDg2OTYwOTEyMTA3OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/f826230e-d8f0-41e8-bbfc-7057bd7e8653\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/g\",\n \"value\": 28\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Rasio Albumin: Kreatinin Urin",
"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\": \"5234342\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan rasio albumin: kreatinin menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Rasio Albumin: Kreatinin Urin",
"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\": \"5234342\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan rasio albumin: kreatinin menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTcwNTYzOTcyNTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/3a40c5cc-7dec-4688-8af8-f3af20405c55/_history/MTcxMDg2OTcwNTYzOTcyNTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:35:05 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:35:05 GMT"
},
{
"key": "Content-Length",
"value": "1220"
},
{
"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": "d8803c84-8c93-4eac-8c78-cecbbc724468"
},
{
"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"
},
{
"key": "Connection",
"value": "close"
}
],
"cookie": [],
"body": "{\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/c1f8488b-5c9f-4707-b115-1e9e3502054b\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"conclusion\": \"Hasil pemeriksaan rasio albumin: kreatinin menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"3a40c5cc-7dec-4688-8af8-f3af20405c55\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:35:05.639725+00:00\",\n \"versionId\": \"MTcxMDg2OTcwNTYzOTcyNTAwMA\"\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/8507e092-65bf-47f0-a46f-5d0e0986b1f9\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/f826230e-d8f0-41e8-bbfc-7057bd7e8653\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Rasio Albumin: Kreatinin Urin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000027\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_RasioAlbuminKreatininUrin}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 28,\n \"unit\": \"mg/g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Rasio Albumin: Kreatinin Urin",
"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\": \"O000027\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_RasioAlbuminKreatininUrin}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 28,\n \"unit\": \"mg/g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"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/8507e092-65bf-47f0-a46f-5d0e0986b1f9/_history/MTcxMDg2OTYwOTEyMTA3OTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:33:29 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTYwOTEyMTA3OTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:33:29 GMT"
},
{
"key": "Content-Length",
"value": "1096"
},
{
"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": "5ac4e206-4dd1-4424-824d-01925488d17d"
},
{
"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/c1f8488b-5c9f-4707-b115-1e9e3502054b\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"8507e092-65bf-47f0-a46f-5d0e0986b1f9\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000027\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:33:29.121079+00:00\",\n \"versionId\": \"MTcxMDg2OTYwOTEyMTA3OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/f826230e-d8f0-41e8-bbfc-7057bd7e8653\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/g\",\n \"value\": 28\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Rasio Albumin: Kreatinin Urin",
"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\": \"5234342\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan rasio albumin: kreatinin menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Rasio Albumin: Kreatinin Urin",
"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\": \"5234342\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan rasio albumin: kreatinin menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTcwNTYzOTcyNTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/3a40c5cc-7dec-4688-8af8-f3af20405c55/_history/MTcxMDg2OTcwNTYzOTcyNTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:35:05 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:35:05 GMT"
},
{
"key": "Content-Length",
"value": "1220"
},
{
"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": "d8803c84-8c93-4eac-8c78-cecbbc724468"
},
{
"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"
},
{
"key": "Connection",
"value": "close"
}
],
"cookie": [],
"body": "{\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/c1f8488b-5c9f-4707-b115-1e9e3502054b\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"conclusion\": \"Hasil pemeriksaan rasio albumin: kreatinin menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"3a40c5cc-7dec-4688-8af8-f3af20405c55\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:35:05.639725+00:00\",\n \"versionId\": \"MTcxMDg2OTcwNTYzOTcyNTAwMA\"\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/8507e092-65bf-47f0-a46f-5d0e0986b1f9\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/f826230e-d8f0-41e8-bbfc-7057bd7e8653\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Rasio Albumin: Kreatinin Urin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000006\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Rasio Albumin: Kreatinin Urin Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Rasio Albumin: Kreatinin Urin",
"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\": \"0000006\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Rasio Albumin: Kreatinin Urin Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/c1f8488b-5c9f-4707-b115-1e9e3502054b/_history/MTcxMDg2OTA5MDQ2MjU4NDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTA5MDQ2MjU4NDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:24:50 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:24:50 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": "b53b559f-1c66-4c0e-854f-165df5c23601"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Rasio Albumin: Kreatinin Urin Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"c1f8488b-5c9f-4707-b115-1e9e3502054b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000006\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:24:50.462584+00:00\",\n \"versionId\": \"MTcxMDg2OTA5MDQ2MjU4NDAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Rasio Albumin: Kreatinin Urin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000006\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Rasio Albumin: Kreatinin Urin",
"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\": \"0000006\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:30:20 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTQyMDEwMTYwODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/f826230e-d8f0-41e8-bbfc-7057bd7e8653/_history/MTcxMDg2OTQyMDEwMTYwODAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:30:20 GMT"
},
{
"key": "Content-Length",
"value": "1680"
},
{
"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": "498ad610-30fa-4ccb-b4fd-485687e7df53"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"f826230e-d8f0-41e8-bbfc-7057bd7e8653\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000006\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:30:20.101608+00:00\",\n \"versionId\": \"MTcxMDg2OTQyMDEwMTYwODAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/c1f8488b-5c9f-4707-b115-1e9e3502054b\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Ureum",
"item": [
{
"name": "ServiceRequest - Ureum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000007\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Ureum Puasa Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Ureum",
"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\": \"0000007\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Ureum Puasa Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTg5ODAwMzk0MzAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:38:18 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/982b0c89-ceac-4645-86ff-cc2e792b7cc8/_history/MTcxMDg2OTg5ODAwMzk0MzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:38:18 GMT"
},
{
"key": "Content-Length",
"value": "1074"
},
{
"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": "678130d6-3e89-4a7e-a73a-79b05177b73c"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Ureum Puasa Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"982b0c89-ceac-4645-86ff-cc2e792b7cc8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000007\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:38:18.003943+00:00\",\n \"versionId\": \"MTcxMDg2OTg5ODAwMzk0MzAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Ureum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000007\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:10+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Ureum",
"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\": \"0000007\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:10+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:45:39 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/2a69e435-3fd4-4415-914f-8deff3cdedc9/_history/MTcxMDg3MDMzOTk5MDU0MjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDMzOTk5MDU0MjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:45:40 GMT"
},
{
"key": "Content-Length",
"value": "1698"
},
{
"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": "ddcf01cb-82ea-415a-a50d-9da97d9c5651"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"2a69e435-3fd4-4415-914f-8deff3cdedc9\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000007\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:45:39.990542+00:00\",\n \"versionId\": \"MTcxMDg3MDMzOTk5MDU0MjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:10+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/982b0c89-ceac-4645-86ff-cc2e792b7cc8\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Ureum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000028\"\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\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Ureum}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Ureum",
"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\": \"O000028\"\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\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Ureum}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 19 Mar 2024 17:46:27 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDM4NzM3MTQwNjAwMA\""
},
{
"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/e9b880fa-5f19-479a-831a-bb736329034e/_history/MTcxMDg3MDM4NzM3MTQwNjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:46:27 GMT"
},
{
"key": "Content-Length",
"value": "1080"
},
{
"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": "14937ffa-db42-4f63-840c-ce9adc3a1d97"
},
{
"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/982b0c89-ceac-4645-86ff-cc2e792b7cc8\"\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\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"e9b880fa-5f19-479a-831a-bb736329034e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000028\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:46:27.371406+00:00\",\n \"versionId\": \"MTcxMDg3MDM4NzM3MTQwNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/2a69e435-3fd4-4415-914f-8deff3cdedc9\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 35\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Ureum",
"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\": \"5233342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Ureum}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Ureum}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan ureum menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Ureum",
"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\": \"5233342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Ureum}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Ureum}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan ureum menunjukkan nilai normal\"\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/aa79c994-9a3d-4acf-b74a-f12ba0ce3868/_history/MTcxMDg3MDQzMzY2NzMzNzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:47:13 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDQzMzY2NzMzNzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:47:13 GMT"
},
{
"key": "Content-Length",
"value": "1156"
},
{
"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": "73ebe9ff-90c3-4785-a629-9543ed70ba00"
},
{
"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/982b0c89-ceac-4645-86ff-cc2e792b7cc8\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"conclusion\": \"Hasil pemeriksaan ureum menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"aa79c994-9a3d-4acf-b74a-f12ba0ce3868\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5233342\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:47:13.667337+00:00\",\n \"versionId\": \"MTcxMDg3MDQzMzY2NzMzNzAwMA\"\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/e9b880fa-5f19-479a-831a-bb736329034e\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/2a69e435-3fd4-4415-914f-8deff3cdedc9\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Ureum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000028\"\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\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Ureum}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Ureum",
"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\": \"O000028\"\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\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Ureum}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 19 Mar 2024 17:46:27 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDM4NzM3MTQwNjAwMA\""
},
{
"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/e9b880fa-5f19-479a-831a-bb736329034e/_history/MTcxMDg3MDM4NzM3MTQwNjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:46:27 GMT"
},
{
"key": "Content-Length",
"value": "1080"
},
{
"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": "14937ffa-db42-4f63-840c-ce9adc3a1d97"
},
{
"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/982b0c89-ceac-4645-86ff-cc2e792b7cc8\"\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\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"e9b880fa-5f19-479a-831a-bb736329034e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000028\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:46:27.371406+00:00\",\n \"versionId\": \"MTcxMDg3MDM4NzM3MTQwNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/2a69e435-3fd4-4415-914f-8deff3cdedc9\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 35\n }\n}"
}
]
},
{
"name": "Specimen - Ureum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000007\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:10+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Ureum",
"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\": \"0000007\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:10+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:45:39 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/2a69e435-3fd4-4415-914f-8deff3cdedc9/_history/MTcxMDg3MDMzOTk5MDU0MjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDMzOTk5MDU0MjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:45:40 GMT"
},
{
"key": "Content-Length",
"value": "1698"
},
{
"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": "ddcf01cb-82ea-415a-a50d-9da97d9c5651"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"2a69e435-3fd4-4415-914f-8deff3cdedc9\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000007\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:45:39.990542+00:00\",\n \"versionId\": \"MTcxMDg3MDMzOTk5MDU0MjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:10+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/982b0c89-ceac-4645-86ff-cc2e792b7cc8\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "ServiceRequest - Ureum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000007\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Ureum Puasa Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Ureum",
"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\": \"0000007\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Ureum Puasa Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTg5ODAwMzk0MzAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:38:18 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/982b0c89-ceac-4645-86ff-cc2e792b7cc8/_history/MTcxMDg2OTg5ODAwMzk0MzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:38:18 GMT"
},
{
"key": "Content-Length",
"value": "1074"
},
{
"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": "678130d6-3e89-4a7e-a73a-79b05177b73c"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Ureum Puasa Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"982b0c89-ceac-4645-86ff-cc2e792b7cc8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000007\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:38:18.003943+00:00\",\n \"versionId\": \"MTcxMDg2OTg5ODAwMzk0MzAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Ureum",
"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\": \"5233342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Ureum}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Ureum}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan ureum menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Ureum",
"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\": \"5233342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Ureum}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Ureum}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan ureum menunjukkan nilai normal\"\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/aa79c994-9a3d-4acf-b74a-f12ba0ce3868/_history/MTcxMDg3MDQzMzY2NzMzNzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:47:13 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDQzMzY2NzMzNzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:47:13 GMT"
},
{
"key": "Content-Length",
"value": "1156"
},
{
"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": "73ebe9ff-90c3-4785-a629-9543ed70ba00"
},
{
"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/982b0c89-ceac-4645-86ff-cc2e792b7cc8\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"conclusion\": \"Hasil pemeriksaan ureum menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"aa79c994-9a3d-4acf-b74a-f12ba0ce3868\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5233342\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:47:13.667337+00:00\",\n \"versionId\": \"MTcxMDg3MDQzMzY2NzMzNzAwMA\"\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/e9b880fa-5f19-479a-831a-bb736329034e\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/2a69e435-3fd4-4415-914f-8deff3cdedc9\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Kreatinin",
"item": [
{
"name": "ServiceRequest - Kreatinin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000008\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Kreatinin Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Kreatinin",
"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\": \"0000008\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Kreatinin Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "etag",
"value": "W/\"MTcxMDg3MDUzNDY2MDg1NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/8392111e-b6d9-4192-803a-865fb8e8416f/_history/MTcxMDg3MDUzNDY2MDg1NzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:48:54 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:48:54 GMT"
},
{
"key": "Content-Length",
"value": "1082"
},
{
"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": "8ce0c7b3-a936-446a-adad-073f3dc85d6c"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Kreatinin Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"8392111e-b6d9-4192-803a-865fb8e8416f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000008\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:48:54.660857+00:00\",\n \"versionId\": \"MTcxMDg3MDUzNDY2MDg1NzAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Kreatinin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000008\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Kreatinin",
"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\": \"0000008\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:50:34 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDYzNDg3OTU1ODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/a6363fce-14ff-45dd-9e04-e07c08e2b902/_history/MTcxMDg3MDYzNDg3OTU1ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:50:34 GMT"
},
{
"key": "Content-Length",
"value": "1698"
},
{
"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": "2dc15a41-1203-4576-9219-362ab94fb0d1"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"a6363fce-14ff-45dd-9e04-e07c08e2b902\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000008\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:50:34.879558+00:00\",\n \"versionId\": \"MTcxMDg3MDYzNDg3OTU1ODAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/8392111e-b6d9-4192-803a-865fb8e8416f\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Kreatinin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000028\"\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\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Creatinine}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 1,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kreatinin",
"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\": \"O000028\"\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\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Creatinine}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 1,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 19 Mar 2024 17:52:22 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/87339903-e873-4274-979e-059988f70b4a/_history/MTcxMDg3MDc0MjAwNTMyNDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDc0MjAwNTMyNDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:52:22 GMT"
},
{
"key": "Content-Length",
"value": "1085"
},
{
"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": "c6309bf2-5990-4e23-9b87-04458a10cb2c"
},
{
"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/8392111e-b6d9-4192-803a-865fb8e8416f\"\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\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"87339903-e873-4274-979e-059988f70b4a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000028\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:52:22.005324+00:00\",\n \"versionId\": \"MTcxMDg3MDc0MjAwNTMyNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/a6363fce-14ff-45dd-9e04-e07c08e2b902\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 1\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Kreatinin",
"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\": \"5434342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Creatinine}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Creatinine}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan kreatinin menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Kreatinin",
"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\": \"5434342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Creatinine}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Creatinine}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan kreatinin menunjukkan nilai normal\"\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/8e43bda4-9693-4652-876c-a8e87c7db835/_history/MTcxMDg3MDkxODY1OTc2NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDkxODY1OTc2NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:55:18 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:55:18 GMT"
},
{
"key": "Content-Length",
"value": "1170"
},
{
"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": "dbe671da-491a-49df-8eff-43f0b8f17d17"
},
{
"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/8392111e-b6d9-4192-803a-865fb8e8416f\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"conclusion\": \"Hasil pemeriksaan kreatinin menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"8e43bda4-9693-4652-876c-a8e87c7db835\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5434342\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:55:18.659766+00:00\",\n \"versionId\": \"MTcxMDg3MDkxODY1OTc2NjAwMA\"\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/87339903-e873-4274-979e-059988f70b4a\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/a6363fce-14ff-45dd-9e04-e07c08e2b902\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Kreatinin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000028\"\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\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Creatinine}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 1,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kreatinin",
"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\": \"O000028\"\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\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Creatinine}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 1,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 19 Mar 2024 17:52:22 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/87339903-e873-4274-979e-059988f70b4a/_history/MTcxMDg3MDc0MjAwNTMyNDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDc0MjAwNTMyNDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:52:22 GMT"
},
{
"key": "Content-Length",
"value": "1085"
},
{
"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": "c6309bf2-5990-4e23-9b87-04458a10cb2c"
},
{
"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/8392111e-b6d9-4192-803a-865fb8e8416f\"\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\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"87339903-e873-4274-979e-059988f70b4a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000028\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:52:22.005324+00:00\",\n \"versionId\": \"MTcxMDg3MDc0MjAwNTMyNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/a6363fce-14ff-45dd-9e04-e07c08e2b902\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 1\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Kreatinin",
"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\": \"5434342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Creatinine}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Creatinine}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan kreatinin menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Kreatinin",
"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\": \"5434342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_Creatinine}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Creatinine}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan kreatinin menunjukkan nilai normal\"\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/8e43bda4-9693-4652-876c-a8e87c7db835/_history/MTcxMDg3MDkxODY1OTc2NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDkxODY1OTc2NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:55:18 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:55:18 GMT"
},
{
"key": "Content-Length",
"value": "1170"
},
{
"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": "dbe671da-491a-49df-8eff-43f0b8f17d17"
},
{
"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/8392111e-b6d9-4192-803a-865fb8e8416f\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"conclusion\": \"Hasil pemeriksaan kreatinin menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"8e43bda4-9693-4652-876c-a8e87c7db835\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5434342\"\n }\n ],\n \"issued\": \"2024-03-14T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:55:18.659766+00:00\",\n \"versionId\": \"MTcxMDg3MDkxODY1OTc2NjAwMA\"\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/87339903-e873-4274-979e-059988f70b4a\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/a6363fce-14ff-45dd-9e04-e07c08e2b902\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Kreatinin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000008\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Kreatinin Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Kreatinin",
"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\": \"0000008\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Kreatinin Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "etag",
"value": "W/\"MTcxMDg3MDUzNDY2MDg1NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/8392111e-b6d9-4192-803a-865fb8e8416f/_history/MTcxMDg3MDUzNDY2MDg1NzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:48:54 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:48:54 GMT"
},
{
"key": "Content-Length",
"value": "1082"
},
{
"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": "8ce0c7b3-a936-446a-adad-073f3dc85d6c"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Kreatinin Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"8392111e-b6d9-4192-803a-865fb8e8416f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000008\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:48:54.660857+00:00\",\n \"versionId\": \"MTcxMDg3MDUzNDY2MDg1NzAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Kreatinin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000008\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Kreatinin",
"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\": \"0000008\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:50:34 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDYzNDg3OTU1ODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/a6363fce-14ff-45dd-9e04-e07c08e2b902/_history/MTcxMDg3MDYzNDg3OTU1ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:50:34 GMT"
},
{
"key": "Content-Length",
"value": "1698"
},
{
"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": "2dc15a41-1203-4576-9219-362ab94fb0d1"
},
{
"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\": \"2024-03-14T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"a6363fce-14ff-45dd-9e04-e07c08e2b902\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000008\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:50:34.879558+00:00\",\n \"versionId\": \"MTcxMDg3MDYzNDg3OTU1ODAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/8392111e-b6d9-4192-803a-865fb8e8416f\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
}
]
}
]
},
{
"name": "07. Tindakan/Prosedur Medis Diagnostik",
"item": [
{
"name": "Procedure - EKG",
"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\": \"89.52\",\n \"display\": \"Electrocardiogram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-14T02:50:00+00:00\",\n \"end\": \"2024-03-14T03:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - EKG",
"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\": \"89.52\",\n \"display\": \"Electrocardiogram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-14T02:50:00+00:00\",\n \"end\": \"2024-03-14T03:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\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/\"MTcxNTY1NTI5MzAxODU2MDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Procedure/b1fc61fc-0165-4e77-b698-f33ba3a8b6dd/_history/MTcxNTY1NTI5MzAxODU2MDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:54:53 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:54:53 GMT"
},
{
"key": "content-length",
"value": "758"
},
{
"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": "cf311ffb-478a-420b-a2b0-623ff601572e"
},
{
"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\": \"89.52\",\n \"display\": \"Electrocardiogram\",\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"b1fc61fc-0165-4e77-b698-f33ba3a8b6dd\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:54:53.018560+00:00\",\n \"versionId\": \"MTcxNTY1NTI5MzAxODU2MDAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-14T03:00:00+00:00\",\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/N10000001\"\n }\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - EKG",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34534-8\",\n \"display\": \"12 lead EKG panel\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T03:05:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - EKG",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34534-8\",\n \"display\": \"12 lead EKG panel\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T03:05:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\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/4fffb7a0-ed28-4470-91b6-0ff851b890b7/_history/MTcxNTY1NTMyNDEzMTUxMzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NTMyNDEzMTUxMzAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:55:24 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:55:24 GMT"
},
{
"key": "content-length",
"value": "1460"
},
{
"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": "f3416f90-ae89-42fd-ab13-f5f64232708d"
},
{
"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\": \"34534-8\",\n \"display\": \"12 lead EKG panel\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"4fffb7a0-ed28-4470-91b6-0ff851b890b7\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T03:05:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:55:24.131513+00:00\",\n \"versionId\": \"MTcxNTY1NTMyNDEzMTUxMzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\n}"
}
]
},
{
"name": "Procedure - EKG",
"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\": \"89.52\",\n \"display\": \"Electrocardiogram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-14T02:50:00+00:00\",\n \"end\": \"2024-03-14T03:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - EKG",
"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\": \"89.52\",\n \"display\": \"Electrocardiogram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-14T02:50:00+00:00\",\n \"end\": \"2024-03-14T03:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\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/\"MTcxNTY1NTI5MzAxODU2MDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Procedure/b1fc61fc-0165-4e77-b698-f33ba3a8b6dd/_history/MTcxNTY1NTI5MzAxODU2MDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:54:53 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:54:53 GMT"
},
{
"key": "content-length",
"value": "758"
},
{
"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": "cf311ffb-478a-420b-a2b0-623ff601572e"
},
{
"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\": \"89.52\",\n \"display\": \"Electrocardiogram\",\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"b1fc61fc-0165-4e77-b698-f33ba3a8b6dd\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:54:53.018560+00:00\",\n \"versionId\": \"MTcxNTY1NTI5MzAxODU2MDAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-14T03:00:00+00:00\",\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/N10000001\"\n }\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - EKG",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34534-8\",\n \"display\": \"12 lead EKG panel\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T03:05:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - EKG",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34534-8\",\n \"display\": \"12 lead EKG panel\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T03:05:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\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/4fffb7a0-ed28-4470-91b6-0ff851b890b7/_history/MTcxNTY1NTMyNDEzMTUxMzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NTMyNDEzMTUxMzAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:55:24 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:55:24 GMT"
},
{
"key": "content-length",
"value": "1460"
},
{
"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": "f3416f90-ae89-42fd-ab13-f5f64232708d"
},
{
"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\": \"34534-8\",\n \"display\": \"12 lead EKG panel\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"4fffb7a0-ed28-4470-91b6-0ff851b890b7\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T03:05:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:55:24.131513+00:00\",\n \"versionId\": \"MTcxNTY1NTMyNDEzMTUxMzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\n}"
}
]
}
]
},
{
"name": "08. Diagnosis",
"item": [
{
"name": "Diagnosis - Hipertensi (Ketika pertama kali terdiagnosa perlu mencantumkan stage)",
"item": [
{
"name": "Condition - Diagnosis - Hypertension",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"stage\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"summary\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Diagnosis - Hypertension",
"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\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"stage\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"summary\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/bdf57c91-d684-4542-b399-3701275f94b9/_history/MTcxNTY1NjA0ODAyMjQ1NDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NjA0ODAyMjQ1NDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:07:28 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:07:28 GMT"
},
{
"key": "content-length",
"value": "1023"
},
{
"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": "4d3fdbdb-3721-4b26-a1d2-e451d6a36ae6"
},
{
"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\": \"I10\",\n \"display\": \"Essential (primary) hypertension\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"719bcedc-35e6-4e4b-b7fb-aa851de6924a\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:07:28.022454+00:00\",\n \"versionId\": \"MTcxNTY1NjA0ODAyMjQ1NDAwMA\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\",\n \"resourceType\": \"Condition\",\n \"stage\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"summary\": {\n \"coding\": [\n {\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Diagnosis - Hypertension",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"stage\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"summary\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Diagnosis - Hypertension",
"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\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"stage\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"summary\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/bdf57c91-d684-4542-b399-3701275f94b9/_history/MTcxNTY1NjA0ODAyMjQ1NDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NjA0ODAyMjQ1NDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:07:28 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:07:28 GMT"
},
{
"key": "content-length",
"value": "1023"
},
{
"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": "4d3fdbdb-3721-4b26-a1d2-e451d6a36ae6"
},
{
"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\": \"I10\",\n \"display\": \"Essential (primary) hypertension\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"719bcedc-35e6-4e4b-b7fb-aa851de6924a\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:07:28.022454+00:00\",\n \"versionId\": \"MTcxNTY1NjA0ODAyMjQ1NDAwMA\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\",\n \"resourceType\": \"Condition\",\n \"stage\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"summary\": {\n \"coding\": [\n {\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Target Organ Damage Hipertensi",
"item": [
{
"name": "Condition - Diagnosis - Chronic ischaemic heart disease, unspecified",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Diagnosis - Chronic ischaemic heart disease, unspecified",
"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\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/4b7fdd80-6c3e-45db-8dcb-95316852f46b/_history/MTcxNTY1NjAwNjkyODk2MTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NjAwNjkyODk2MTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:06:46 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:06:46 GMT"
},
{
"key": "content-length",
"value": "803"
},
{
"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": "db1dddd9-64f9-48ac-9faf-ae133186c8be"
},
{
"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\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"4b7fdd80-6c3e-45db-8dcb-95316852f46b\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:06:46.928961+00:00\",\n \"versionId\": \"MTcxNTY1NjAwNjkyODk2MTAwMA\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Target Organ Damage Hipertensi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T02:50:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Target Organ Damage Hipertensi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T02:50:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNTY1NjEwNjQ0NzM4NDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:08:26 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/Observation/9a47f7e9-5c32-409a-97c6-4ff4d7040f3c/_history/MTcxNTY1NjEwNjQ0NzM4NDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:08:26 GMT"
},
{
"key": "content-length",
"value": "876"
},
{
"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": "28f1ed19-d64e-4f92-a9bd-bda7e74beee0"
},
{
"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\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"9a47f7e9-5c32-409a-97c6-4ff4d7040f3c\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:50:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:08:26.447384+00:00\",\n \"versionId\": \"MTcxNTY1NjEwNjQ0NzM4NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Condition - Diagnosis - Chronic ischaemic heart disease, unspecified",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Diagnosis - Chronic ischaemic heart disease, unspecified",
"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\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/4b7fdd80-6c3e-45db-8dcb-95316852f46b/_history/MTcxNTY1NjAwNjkyODk2MTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NjAwNjkyODk2MTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:06:46 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:06:46 GMT"
},
{
"key": "content-length",
"value": "803"
},
{
"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": "db1dddd9-64f9-48ac-9faf-ae133186c8be"
},
{
"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\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"4b7fdd80-6c3e-45db-8dcb-95316852f46b\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:06:46.928961+00:00\",\n \"versionId\": \"MTcxNTY1NjAwNjkyODk2MTAwMA\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Target Organ Damage Hipertensi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T02:50:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Target Organ Damage Hipertensi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T02:50:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNTY1NjEwNjQ0NzM4NDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:08:26 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/Observation/9a47f7e9-5c32-409a-97c6-4ff4d7040f3c/_history/MTcxNTY1NjEwNjQ0NzM4NDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:08:26 GMT"
},
{
"key": "content-length",
"value": "876"
},
{
"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": "28f1ed19-d64e-4f92-a9bd-bda7e74beee0"
},
{
"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\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"9a47f7e9-5c32-409a-97c6-4ff4d7040f3c\",\n \"identifier\": [],\n \"issued\": \"2024-03-14T02:50:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:08:26.447384+00:00\",\n \"versionId\": \"MTcxNTY1NjEwNjQ0NzM4NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "EpisodeOfCare - Create Saat Pertama Kali Terdiagnosis Hipertensi dan Carta Prediksi Risiko PTM Moderate/High",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"EpisodeOfCare\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/{{Org_id}}\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"status\": \"waitlist\",\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\",\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
]
}
},
"response": [
{
"name": "EpisodeOfCare - Create Saat Pertama Kali Terdiagnosis Hipertensi dan Carta Prediksi Risiko PTM Moderate/High",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"EpisodeOfCare\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/{{Org_id}}\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"status\": \"waitlist\",\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\",\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:19:23 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1Njc2MzA4OTQ1OTAwMA\""
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8/_history/MTcxNTY1Njc2MzA4OTQ1OTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:19:23 GMT"
},
{
"key": "content-length",
"value": "726"
},
{
"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": "a4e0eb35-99c6-4ca5-8d3d-3203ad3af515"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:23.089459+00:00\",\n \"versionId\": \"MTcxNTY1Njc2MzA4OTQ1OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "EpisodeOfCare - GET No Surveilans Jantung by UUID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8"
}
]
}
},
"response": [
{
"name": "EpisodeOfCare - GET No Surveilans Jantung by UUID",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:19:24 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1Njc2NDkwNDU0NzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:35:29 GMT"
},
{
"key": "content-length",
"value": "824"
},
{
"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": "156e8189-69bd-448e-a53a-90df33d1db78"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "EpisodeOfCare - Create Saat Pertama Kali Terdiagnosis Hipertensi dan Carta Prediksi Risiko PTM Moderate/High",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"EpisodeOfCare\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/{{Org_id}}\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"status\": \"waitlist\",\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\",\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
]
}
},
"response": [
{
"name": "EpisodeOfCare - Create Saat Pertama Kali Terdiagnosis Hipertensi dan Carta Prediksi Risiko PTM Moderate/High",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"EpisodeOfCare\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/{{Org_id}}\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"status\": \"waitlist\",\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\",\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:19:23 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1Njc2MzA4OTQ1OTAwMA\""
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8/_history/MTcxNTY1Njc2MzA4OTQ1OTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:19:23 GMT"
},
{
"key": "content-length",
"value": "726"
},
{
"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": "a4e0eb35-99c6-4ca5-8d3d-3203ad3af515"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:23.089459+00:00\",\n \"versionId\": \"MTcxNTY1Njc2MzA4OTQ1OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "EpisodeOfCare - GET No Surveilans Jantung by UUID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8"
}
]
}
},
"response": [
{
"name": "EpisodeOfCare - GET No Surveilans Jantung by UUID",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:19:24 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1Njc2NDkwNDU0NzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:35:29 GMT"
},
{
"key": "content-length",
"value": "824"
},
{
"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": "156e8189-69bd-448e-a53a-90df33d1db78"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n}"
}
]
}
]
},
{
"name": "09. Tatalaksana",
"item": [
{
"name": "Edukasi",
"item": [
{
"name": "Procedure - Edukasi",
"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\": \"409073007\",\n \"display\": \"Education\"\n }\n ],\n \"text\": \"Education\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"410123007\",\n \"display\": \"Medication regimen compliance education\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-14T03:05:00+00:00\",\n \"end\": \"2024-03-14T03:10:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - Edukasi",
"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\": \"409073007\",\n \"display\": \"Education\"\n }\n ],\n \"text\": \"Education\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"410123007\",\n \"display\": \"Medication regimen compliance education\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-14T03:05:00+00:00\",\n \"end\": \"2024-03-14T03:10:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\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": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:10:21 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NjIyMTI0NDQ1NTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Procedure/2816bc2a-ccfe-4847-b279-757720e92e80/_history/MTcxNTY1NjIyMTI0NDQ1NTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:10:21 GMT"
},
{
"key": "content-length",
"value": "786"
},
{
"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": "4ca59f8a-5c02-48e1-ac67-d93d285ecd96"
},
{
"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\": \"409073007\",\n \"display\": \"Education\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Education\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"410123007\",\n \"display\": \"Medication regimen compliance education\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"2816bc2a-ccfe-4847-b279-757720e92e80\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:10:21.244455+00:00\",\n \"versionId\": \"MTcxNTY1NjIyMTI0NDQ1NTAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-14T03:10:00+00:00\",\n \"start\": \"2024-03-14T03:05:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Procedure - Edukasi",
"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\": \"409073007\",\n \"display\": \"Education\"\n }\n ],\n \"text\": \"Education\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"410123007\",\n \"display\": \"Medication regimen compliance education\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-14T03:05:00+00:00\",\n \"end\": \"2024-03-14T03:10:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - Edukasi",
"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\": \"409073007\",\n \"display\": \"Education\"\n }\n ],\n \"text\": \"Education\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"410123007\",\n \"display\": \"Medication regimen compliance education\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-14T03:05:00+00:00\",\n \"end\": \"2024-03-14T03:10:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\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": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:10:21 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NjIyMTI0NDQ1NTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Procedure/2816bc2a-ccfe-4847-b279-757720e92e80/_history/MTcxNTY1NjIyMTI0NDQ1NTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:10:21 GMT"
},
{
"key": "content-length",
"value": "786"
},
{
"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": "4ca59f8a-5c02-48e1-ac67-d93d285ecd96"
},
{
"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\": \"409073007\",\n \"display\": \"Education\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Education\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"410123007\",\n \"display\": \"Medication regimen compliance education\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"2816bc2a-ccfe-4847-b279-757720e92e80\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:10:21.244455+00:00\",\n \"versionId\": \"MTcxNTY1NjIyMTI0NDQ1NTAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-14T03:10:00+00:00\",\n \"start\": \"2024-03-14T03:05:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Obat",
"item": [
{
"name": "Peresepan Obat",
"item": [
{
"name": "Medication - Buat Obat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Medication_ForRequest\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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 \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"response": [
{
"name": "Medication - Buat Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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 \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 18:05:38 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MTUzODQ0NzA4ODAwMA\""
},
{
"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/Medication/9bdcbf01-32f3-4381-abfd-20d9bc750d25/_history/MTcxMDg3MTUzODQ0NzA4ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:05:38 GMT"
},
{
"key": "Content-Length",
"value": "1290"
},
{
"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": "c4b7a195-44fd-41c8-bc15-aaaf00f6a2d4"
},
{
"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\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"9bdcbf01-32f3-4381-abfd-20d9bc750d25\",\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\": \"91000397\",\n \"display\": \"AMLODIPINE\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 1\n },\n \"numerator\": {\n \"code\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"value\": 5\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:05:38.447088+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\n ],\n \"versionId\": \"MTcxMDg3MTUzODQ0NzA4ODAwMA\"\n },\n \"resourceType\": \"Medication\",\n \"status\": \"active\"\n}"
}
]
},
{
"name": "MedicationRequest - Resep Obat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"MedicationRequest_uuid\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationRequest\",\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 \"intent\": \"order\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n }\n ],\n \"priority\": \"routine\",\n \"medicationReference\": {\n \"reference\": \"Medication/{{Medication_forRequest}}\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authoredOn\": \"2024-03-14T03:10:10+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\",\n \"code\": \"continuous\",\n \"display\": \"Continuing long term therapy\"\n }\n ]\n },\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ],\n \"dispenseRequest\": {\n \"dispenseInterval\": {\n \"value\": 1,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"validityPeriod\": {\n \"start\": \"2024-03-14T03:10:00+00:00\",\n \"end\": \"2024-03-15T03:10:00+00:00\"\n },\n \"numberOfRepeatsAllowed\": 0,\n \"quantity\": {\n \"value\": 30,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"expectedSupplyDuration\": {\n \"value\": 30,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"performer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationRequest",
"host": [
"{{base_url}}"
],
"path": [
"MedicationRequest"
]
}
},
"response": [
{
"name": "MedicationRequest - Resep Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationRequest\",\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 \"intent\": \"order\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n }\n ],\n \"priority\": \"routine\",\n \"medicationReference\": {\n \"reference\": \"Medication/{{Medication_forRequest}}\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authoredOn\": \"2024-03-14T03:10:10+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\",\n \"code\": \"continuous\",\n \"display\": \"Continuing long term therapy\"\n }\n ]\n },\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ],\n \"dispenseRequest\": {\n \"dispenseInterval\": {\n \"value\": 1,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"validityPeriod\": {\n \"start\": \"2024-03-14T03:10:00+00:00\",\n \"end\": \"2024-03-15T03:10:00+00:00\"\n },\n \"numberOfRepeatsAllowed\": 0,\n \"quantity\": {\n \"value\": 30,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"expectedSupplyDuration\": {\n \"value\": 30,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"performer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationRequest",
"host": [
"{{base_url}}"
],
"path": [
"MedicationRequest"
]
}
},
"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/MedicationRequest/f430fdde-93d8-4dc8-9787-9f0f822cbd70/_history/MTcxMDg3MTYzNTQ5NTI5MDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 18:07:15 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MTYzNTQ5NTI5MDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:07:15 GMT"
},
{
"key": "Content-Length",
"value": "2325"
},
{
"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": "ea4d01d6-1fad-41bb-9929-974d1063a52d"
},
{
"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\": \"2024-03-14T03:10:10+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 \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"code\": \"continuous\",\n \"display\": \"Continuing long term 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 \"expectedSupplyDuration\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 30\n },\n \"numberOfRepeatsAllowed\": 0,\n \"performer\": {\n \"reference\": \"Organization/10000005\"\n },\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 30\n },\n \"validityPeriod\": {\n \"end\": \"2024-03-15T03:10:00+00:00\",\n \"start\": \"2024-03-14T03:10:00+00:00\"\n }\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\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 \"text\": \"1 tablet per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"f430fdde-93d8-4dc8-9787-9f0f822cbd70\",\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\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\n \"reference\": \"Medication/9bdcbf01-32f3-4381-abfd-20d9bc750d25\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:07:15.495290+00:00\",\n \"versionId\": \"MTcxMDg3MTYzNTQ5NTI5MDAwMA\"\n },\n \"priority\": \"routine\",\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"MedicationRequest\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Medication - Buat Obat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Medication_ForRequest\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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 \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"response": [
{
"name": "Medication - Buat Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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 \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 18:05:38 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MTUzODQ0NzA4ODAwMA\""
},
{
"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/Medication/9bdcbf01-32f3-4381-abfd-20d9bc750d25/_history/MTcxMDg3MTUzODQ0NzA4ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:05:38 GMT"
},
{
"key": "Content-Length",
"value": "1290"
},
{
"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": "c4b7a195-44fd-41c8-bc15-aaaf00f6a2d4"
},
{
"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\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"9bdcbf01-32f3-4381-abfd-20d9bc750d25\",\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\": \"91000397\",\n \"display\": \"AMLODIPINE\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 1\n },\n \"numerator\": {\n \"code\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"value\": 5\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:05:38.447088+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\n ],\n \"versionId\": \"MTcxMDg3MTUzODQ0NzA4ODAwMA\"\n },\n \"resourceType\": \"Medication\",\n \"status\": \"active\"\n}"
}
]
},
{
"name": "MedicationRequest - Resep Obat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"MedicationRequest_uuid\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationRequest\",\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 \"intent\": \"order\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n }\n ],\n \"priority\": \"routine\",\n \"medicationReference\": {\n \"reference\": \"Medication/{{Medication_forRequest}}\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authoredOn\": \"2024-03-14T03:10:10+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\",\n \"code\": \"continuous\",\n \"display\": \"Continuing long term therapy\"\n }\n ]\n },\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ],\n \"dispenseRequest\": {\n \"dispenseInterval\": {\n \"value\": 1,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"validityPeriod\": {\n \"start\": \"2024-03-14T03:10:00+00:00\",\n \"end\": \"2024-03-15T03:10:00+00:00\"\n },\n \"numberOfRepeatsAllowed\": 0,\n \"quantity\": {\n \"value\": 30,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"expectedSupplyDuration\": {\n \"value\": 30,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"performer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationRequest",
"host": [
"{{base_url}}"
],
"path": [
"MedicationRequest"
]
}
},
"response": [
{
"name": "MedicationRequest - Resep Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationRequest\",\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 \"intent\": \"order\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n }\n ],\n \"priority\": \"routine\",\n \"medicationReference\": {\n \"reference\": \"Medication/{{Medication_forRequest}}\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authoredOn\": \"2024-03-14T03:10:10+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\",\n \"code\": \"continuous\",\n \"display\": \"Continuing long term therapy\"\n }\n ]\n },\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ],\n \"dispenseRequest\": {\n \"dispenseInterval\": {\n \"value\": 1,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"validityPeriod\": {\n \"start\": \"2024-03-14T03:10:00+00:00\",\n \"end\": \"2024-03-15T03:10:00+00:00\"\n },\n \"numberOfRepeatsAllowed\": 0,\n \"quantity\": {\n \"value\": 30,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"expectedSupplyDuration\": {\n \"value\": 30,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"performer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationRequest",
"host": [
"{{base_url}}"
],
"path": [
"MedicationRequest"
]
}
},
"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/MedicationRequest/f430fdde-93d8-4dc8-9787-9f0f822cbd70/_history/MTcxMDg3MTYzNTQ5NTI5MDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 18:07:15 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MTYzNTQ5NTI5MDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:07:15 GMT"
},
{
"key": "Content-Length",
"value": "2325"
},
{
"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": "ea4d01d6-1fad-41bb-9929-974d1063a52d"
},
{
"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\": \"2024-03-14T03:10:10+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 \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"code\": \"continuous\",\n \"display\": \"Continuing long term 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 \"expectedSupplyDuration\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 30\n },\n \"numberOfRepeatsAllowed\": 0,\n \"performer\": {\n \"reference\": \"Organization/10000005\"\n },\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 30\n },\n \"validityPeriod\": {\n \"end\": \"2024-03-15T03:10:00+00:00\",\n \"start\": \"2024-03-14T03:10:00+00:00\"\n }\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\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 \"text\": \"1 tablet per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"f430fdde-93d8-4dc8-9787-9f0f822cbd70\",\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\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\n \"reference\": \"Medication/9bdcbf01-32f3-4381-abfd-20d9bc750d25\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:07:15.495290+00:00\",\n \"versionId\": \"MTcxMDg3MTYzNTQ5NTI5MDAwMA\"\n },\n \"priority\": \"routine\",\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"MedicationRequest\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Pengkajian Resep",
"item": [
{
"name": "QuestionnaireResponse - Pengkajian Resep",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-08-31T03:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Apoteker A\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah tanggal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"text\": \"Persyaratan Farmasetik\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah stabilitas obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"3\",\n \"text\": \"Persyaratan Klinis\",\n \"item\": [\n {\n \"linkId\": \"3.1\",\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"3.2\",\n \"text\": \"Apakah terdapat duplikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.3\",\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.4\",\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.5\",\n \"text\": \"Apakah terdapat dampak interaksi obat?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n }\n ]\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": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-08-31T03:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Apoteker A\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah tanggal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"text\": \"Persyaratan Farmasetik\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah stabilitas obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"3\",\n \"text\": \"Persyaratan Klinis\",\n \"item\": [\n {\n \"linkId\": \"3.1\",\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"3.2\",\n \"text\": \"Apakah terdapat duplikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.3\",\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.4\",\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.5\",\n \"text\": \"Apakah terdapat dampak interaksi obat?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:12:26 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/QuestionnaireResponse/94f3fe45-efb5-45d7-a0a3-0a3a9bb082a2/_history/MTcxNTY1NjM0NjcwNzcxOTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NjM0NjcwNzcxOTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:12:26 GMT"
},
{
"key": "content-length",
"value": "3191"
},
{
"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": "7ee79568-2c2f-4f66-a33a-decc204cb921"
},
{
"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/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"94f3fe45-efb5-45d7-a0a3-0a3a9bb082a2\",\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 \"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 \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:12:26.707719+00:00\",\n \"versionId\": \"MTcxNTY1NjM0NjcwNzcxOTAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "QuestionnaireResponse - Pengkajian Resep",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-08-31T03:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Apoteker A\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah tanggal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"text\": \"Persyaratan Farmasetik\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah stabilitas obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"3\",\n \"text\": \"Persyaratan Klinis\",\n \"item\": [\n {\n \"linkId\": \"3.1\",\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"3.2\",\n \"text\": \"Apakah terdapat duplikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.3\",\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.4\",\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.5\",\n \"text\": \"Apakah terdapat dampak interaksi obat?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n }\n ]\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": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-08-31T03:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Apoteker A\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah tanggal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"text\": \"Persyaratan Farmasetik\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah stabilitas obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"3\",\n \"text\": \"Persyaratan Klinis\",\n \"item\": [\n {\n \"linkId\": \"3.1\",\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"3.2\",\n \"text\": \"Apakah terdapat duplikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.3\",\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.4\",\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.5\",\n \"text\": \"Apakah terdapat dampak interaksi obat?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:12:26 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/QuestionnaireResponse/94f3fe45-efb5-45d7-a0a3-0a3a9bb082a2/_history/MTcxNTY1NjM0NjcwNzcxOTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NjM0NjcwNzcxOTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:12:26 GMT"
},
{
"key": "content-length",
"value": "3191"
},
{
"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": "7ee79568-2c2f-4f66-a33a-decc204cb921"
},
{
"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/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"94f3fe45-efb5-45d7-a0a3-0a3a9bb082a2\",\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 \"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 \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:12:26.707719+00:00\",\n \"versionId\": \"MTcxNTY1NjM0NjcwNzcxOTAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Pengeluaran Obat",
"item": [
{
"name": "Medication - Buat Obat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Medication_ForDispense\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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\": \"123456797\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\n ],\n \"batch\": {\n \"lotNumber\": \"1625042B\",\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"response": [
{
"name": "Medication - Buat Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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\": \"123456797\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\n ],\n \"batch\": {\n \"lotNumber\": \"1625042B\",\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Wed, 15 May 2024 13:17:42 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTc3OTA2MjMzOTIxMTAwMA\""
},
{
"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/Medication/21430228-c3db-4fb5-bd97-e28102f0421c/_history/MTcxNTc3OTA2MjMzOTIxMTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 15 May 2024 13:17:42 GMT"
},
{
"key": "content-length",
"value": "1368"
},
{
"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": "fcd75cab-4eba-4219-819d-dca30815692f"
},
{
"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 \"batch\": {\n \"expirationDate\": \"2025-07-22T14:27:00+00:00\",\n \"lotNumber\": \"1625042B\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"21430228-c3db-4fb5-bd97-e28102f0421c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000005\",\n \"use\": \"official\",\n \"value\": \"123456797\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 1\n },\n \"numerator\": {\n \"code\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"value\": 5\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-15T13:17:42.339211+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\n ],\n \"versionId\": \"MTcxNTc3OTA2MjMzOTIxMTAwMA\"\n },\n \"resourceType\": \"Medication\",\n \"status\": \"active\"\n}"
}
]
},
{
"name": "MedicationDispense - Resep Obat",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationDispense\",\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\": \"Medication/{{Medication_forDispense}}\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"John Miller\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{LocationApotek_id}}\",\n \"display\": \"Apotek Puskesmas SATUSEHAT\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/{{Medication_Request}}\"\n }\n ],\n \"quantity\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\",\n \"value\": 30\n },\n \"daysSupply\": {\n \"value\": 30,\n \"unit\": \"Day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"whenPrepared\": \"2024-03-14T03:11:00+00:00\",\n \"whenHandedOver\": \"2024-03-14T03:14:00+00:00\",\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
]
}
},
"response": [
{
"name": "MedicationDispense - Resep Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationDispense\",\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\": \"Medication/{{Medication_forDispense}}\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"John Miller\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{LocationApotek_id}}\",\n \"display\": \"Apotek Puskesmas SATUSEHAT\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/{{Medication_Request}}\"\n }\n ],\n \"quantity\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\",\n \"value\": 30\n },\n \"daysSupply\": {\n \"value\": 30,\n \"unit\": \"Day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"whenPrepared\": \"2024-03-14T03:11:00+00:00\",\n \"whenHandedOver\": \"2024-03-14T03:14:00+00:00\",\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
]
}
},
"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/MedicationDispense/b4f8adf1-3bdd-445a-acf6-6c1e1478e8d9/_history/MTcxNTc3OTIxMTk5MzA4MTAwMA"
},
{
"key": "last-modified",
"value": "Wed, 15 May 2024 13:20:11 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTc3OTIxMTk5MzA4MTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 15 May 2024 13:20:12 GMT"
},
{
"key": "content-length",
"value": "2063"
},
{
"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": "97d5e3a3-6dee-49d7-b4a9-75e7f32637c7"
},
{
"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/f430fdde-93d8-4dc8-9787-9f0f822cbd70\"\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 \"context\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"Day\",\n \"value\": 30\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\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 \"text\": \"1 tablet per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"id\": \"b4f8adf1-3bdd-445a-acf6-6c1e1478e8d9\",\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\": \"Apotek Puskesmas SATUSEHAT\",\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\"\n },\n \"medicationReference\": {\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\n \"reference\": \"Medication/21430228-c3db-4fb5-bd97-e28102f0421c\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-15T13:20:11.993081+00:00\",\n \"versionId\": \"MTcxNTc3OTIxMTk5MzA4MTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"John Miller\",\n \"reference\": \"Practitioner/N10000003\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"value\": 30\n },\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2024-03-14T03:14:00+00:00\",\n \"whenPrepared\": \"2024-03-14T03:11:00+00:00\"\n}"
}
]
},
{
"name": "Medication - Buat Obat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Medication_ForDispense\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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\": \"123456797\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\n ],\n \"batch\": {\n \"lotNumber\": \"1625042B\",\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"response": [
{
"name": "Medication - Buat Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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\": \"123456797\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\n ],\n \"batch\": {\n \"lotNumber\": \"1625042B\",\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Wed, 15 May 2024 13:17:42 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTc3OTA2MjMzOTIxMTAwMA\""
},
{
"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/Medication/21430228-c3db-4fb5-bd97-e28102f0421c/_history/MTcxNTc3OTA2MjMzOTIxMTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 15 May 2024 13:17:42 GMT"
},
{
"key": "content-length",
"value": "1368"
},
{
"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": "fcd75cab-4eba-4219-819d-dca30815692f"
},
{
"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 \"batch\": {\n \"expirationDate\": \"2025-07-22T14:27:00+00:00\",\n \"lotNumber\": \"1625042B\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"21430228-c3db-4fb5-bd97-e28102f0421c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000005\",\n \"use\": \"official\",\n \"value\": \"123456797\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 1\n },\n \"numerator\": {\n \"code\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"value\": 5\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-15T13:17:42.339211+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\n ],\n \"versionId\": \"MTcxNTc3OTA2MjMzOTIxMTAwMA\"\n },\n \"resourceType\": \"Medication\",\n \"status\": \"active\"\n}"
}
]
},
{
"name": "MedicationDispense - Resep Obat",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationDispense\",\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\": \"Medication/{{Medication_forDispense}}\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"John Miller\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{LocationApotek_id}}\",\n \"display\": \"Apotek Puskesmas SATUSEHAT\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/{{Medication_Request}}\"\n }\n ],\n \"quantity\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\",\n \"value\": 30\n },\n \"daysSupply\": {\n \"value\": 30,\n \"unit\": \"Day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"whenPrepared\": \"2024-03-14T03:11:00+00:00\",\n \"whenHandedOver\": \"2024-03-14T03:14:00+00:00\",\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
]
}
},
"response": [
{
"name": "MedicationDispense - Resep Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationDispense\",\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\": \"Medication/{{Medication_forDispense}}\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"John Miller\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/{{LocationApotek_id}}\",\n \"display\": \"Apotek Puskesmas SATUSEHAT\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/{{Medication_Request}}\"\n }\n ],\n \"quantity\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\",\n \"value\": 30\n },\n \"daysSupply\": {\n \"value\": 30,\n \"unit\": \"Day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"whenPrepared\": \"2024-03-14T03:11:00+00:00\",\n \"whenHandedOver\": \"2024-03-14T03:14:00+00:00\",\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
]
}
},
"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/MedicationDispense/b4f8adf1-3bdd-445a-acf6-6c1e1478e8d9/_history/MTcxNTc3OTIxMTk5MzA4MTAwMA"
},
{
"key": "last-modified",
"value": "Wed, 15 May 2024 13:20:11 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTc3OTIxMTk5MzA4MTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 15 May 2024 13:20:12 GMT"
},
{
"key": "content-length",
"value": "2063"
},
{
"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": "97d5e3a3-6dee-49d7-b4a9-75e7f32637c7"
},
{
"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/f430fdde-93d8-4dc8-9787-9f0f822cbd70\"\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 \"context\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"Day\",\n \"value\": 30\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\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 \"text\": \"1 tablet per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"id\": \"b4f8adf1-3bdd-445a-acf6-6c1e1478e8d9\",\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\": \"Apotek Puskesmas SATUSEHAT\",\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\"\n },\n \"medicationReference\": {\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\n \"reference\": \"Medication/21430228-c3db-4fb5-bd97-e28102f0421c\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-15T13:20:11.993081+00:00\",\n \"versionId\": \"MTcxNTc3OTIxMTk5MzA4MTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"John Miller\",\n \"reference\": \"Practitioner/N10000003\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"value\": 30\n },\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2024-03-14T03:14:00+00:00\",\n \"whenPrepared\": \"2024-03-14T03:11:00+00:00\"\n}"
}
]
}
]
}
]
}
]
},
{
"name": "10. Prognosis",
"item": [
{
"name": "ClinicalImpression - Guarded Prognosis",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"ClinicalImpression\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000123\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"Ibu Jane Smith Terdiagnosis Hipertensi\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"date\": \"2024-03-14T03:15:00+00:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/{{Diagnosis_Primer}}\"\n },\n {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"item\": [\n {\n \"reference\": \"DiagnosticReport/{{DiagnosticReport_ProfilLipid}}\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/{{Observation_EKG}}\"\n }\n ]\n }\n ],\n \"summary\": \"Prognosis Hipertensi dengan taerget organ damage berupa Penyakit Jantung Iskemik Kronis sehingga kecurigaan terhadap penyakit Jantung\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Primer}}\"\n }\n },\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"67334001\",\n \"display\": \"Guarded prognosis\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ClinicalImpression",
"host": [
"{{base_url}}"
],
"path": [
"ClinicalImpression"
]
}
},
"response": [
{
"name": "ClinicalImpression - Guarded Prognosis",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"ClinicalImpression\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000123\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"Ibu Jane Smith Terdiagnosis Hipertensi\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"date\": \"2024-03-14T03:15:00+00:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/{{Diagnosis_Primer}}\"\n },\n {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"item\": [\n {\n \"reference\": \"DiagnosticReport/{{DiagnosticReport_ProfilLipid}}\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/{{Observation_EKG}}\"\n }\n ]\n }\n ],\n \"summary\": \"Prognosis Hipertensi dengan taerget organ damage berupa Penyakit Jantung Iskemik Kronis sehingga kecurigaan terhadap penyakit Jantung\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Primer}}\"\n }\n },\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"67334001\",\n \"display\": \"Guarded prognosis\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ClinicalImpression",
"host": [
"{{base_url}}"
],
"path": [
"ClinicalImpression"
]
}
},
"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/ClinicalImpression/fef25069-834d-440d-a718-3d9bdd5e6e3b/_history/MTcxNTY5Mjg1MzE1NzU5MzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:20:53 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5Mjg1MzE1NzU5MzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:20:53 GMT"
},
{
"key": "content-length",
"value": "1850"
},
{
"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": "bbee0713-02a6-48f0-a744-cc25e6396fbd"
},
{
"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 \"assessor\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"date\": \"2024-03-14T03:15:00+00:00\",\n \"description\": \"Ibu Jane Smith Terdiagnosis Hipertensi\",\n \"effectiveDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/bdf57c91-d684-4542-b399-3701275f94b9\"\n }\n },\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/4b7fdd80-6c3e-45db-8dcb-95316852f46b\"\n }\n }\n ],\n \"id\": \"fef25069-834d-440d-a718-3d9bdd5e6e3b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/10000005\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000123\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"item\": [\n {\n \"reference\": \"DiagnosticReport/464fafa0-4d31-43f9-b0e3-9bfe53f33ab7\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/4fffb7a0-ed28-4470-91b6-0ff851b890b7\"\n }\n ]\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:20:53.157593+00:00\",\n \"versionId\": \"MTcxNTY5Mjg1MzE1NzU5MzAwMA\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/bdf57c91-d684-4542-b399-3701275f94b9\"\n },\n {\n \"reference\": \"Condition/4b7fdd80-6c3e-45db-8dcb-95316852f46b\"\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"code\": \"67334001\",\n \"display\": \"Guarded prognosis\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"resourceType\": \"ClinicalImpression\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"summary\": \"Prognosis Hipertensi dengan taerget organ damage berupa Penyakit Jantung Iskemik Kronis sehingga kecurigaan terhadap penyakit Jantung\"\n}"
}
]
},
{
"name": "ClinicalImpression - Guarded Prognosis",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"ClinicalImpression\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000123\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"Ibu Jane Smith Terdiagnosis Hipertensi\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"date\": \"2024-03-14T03:15:00+00:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/{{Diagnosis_Primer}}\"\n },\n {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"item\": [\n {\n \"reference\": \"DiagnosticReport/{{DiagnosticReport_ProfilLipid}}\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/{{Observation_EKG}}\"\n }\n ]\n }\n ],\n \"summary\": \"Prognosis Hipertensi dengan taerget organ damage berupa Penyakit Jantung Iskemik Kronis sehingga kecurigaan terhadap penyakit Jantung\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Primer}}\"\n }\n },\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"67334001\",\n \"display\": \"Guarded prognosis\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ClinicalImpression",
"host": [
"{{base_url}}"
],
"path": [
"ClinicalImpression"
]
}
},
"response": [
{
"name": "ClinicalImpression - Guarded Prognosis",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"ClinicalImpression\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000123\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"Ibu Jane Smith Terdiagnosis Hipertensi\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"date\": \"2024-03-14T03:15:00+00:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/{{Diagnosis_Primer}}\"\n },\n {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"item\": [\n {\n \"reference\": \"DiagnosticReport/{{DiagnosticReport_ProfilLipid}}\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/{{Observation_EKG}}\"\n }\n ]\n }\n ],\n \"summary\": \"Prognosis Hipertensi dengan taerget organ damage berupa Penyakit Jantung Iskemik Kronis sehingga kecurigaan terhadap penyakit Jantung\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Primer}}\"\n }\n },\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"67334001\",\n \"display\": \"Guarded prognosis\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ClinicalImpression",
"host": [
"{{base_url}}"
],
"path": [
"ClinicalImpression"
]
}
},
"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/ClinicalImpression/fef25069-834d-440d-a718-3d9bdd5e6e3b/_history/MTcxNTY5Mjg1MzE1NzU5MzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 13:20:53 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY5Mjg1MzE1NzU5MzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 13:20:53 GMT"
},
{
"key": "content-length",
"value": "1850"
},
{
"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": "bbee0713-02a6-48f0-a744-cc25e6396fbd"
},
{
"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 \"assessor\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"date\": \"2024-03-14T03:15:00+00:00\",\n \"description\": \"Ibu Jane Smith Terdiagnosis Hipertensi\",\n \"effectiveDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\",\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/bdf57c91-d684-4542-b399-3701275f94b9\"\n }\n },\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/4b7fdd80-6c3e-45db-8dcb-95316852f46b\"\n }\n }\n ],\n \"id\": \"fef25069-834d-440d-a718-3d9bdd5e6e3b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/10000005\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000123\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"item\": [\n {\n \"reference\": \"DiagnosticReport/464fafa0-4d31-43f9-b0e3-9bfe53f33ab7\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/4fffb7a0-ed28-4470-91b6-0ff851b890b7\"\n }\n ]\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T13:20:53.157593+00:00\",\n \"versionId\": \"MTcxNTY5Mjg1MzE1NzU5MzAwMA\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/bdf57c91-d684-4542-b399-3701275f94b9\"\n },\n {\n \"reference\": \"Condition/4b7fdd80-6c3e-45db-8dcb-95316852f46b\"\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"code\": \"67334001\",\n \"display\": \"Guarded prognosis\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"resourceType\": \"ClinicalImpression\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"summary\": \"Prognosis Hipertensi dengan taerget organ damage berupa Penyakit Jantung Iskemik Kronis sehingga kecurigaan terhadap penyakit Jantung\"\n}"
}
]
}
]
},
{
"name": "11. Rencana Tindak Lanjut",
"item": [
{
"name": "ServiceRequest - Rujukan Keluar Faskes",
"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\": \"000015\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"stat\",\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\": \"737492002\",\n \"display\": \"Outpatient care management\"\n }\n ],\n \"text\": \"Rujukan untuk pemeriksan lebih lanjut terkait adanya kemungkinan penyakit jantung\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ],\n \"text\": \"Hipertensi\"\n }\n ],\n \"locationCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"HOSP\",\n \"display\": \"Hospital\"\n }\n ]\n }\n ],\n \"patientInstruction\": \"Rujukan ke RS SATUEHSET. Dalam keadaan darurat dapat menghubungi hotline RS di nomor 1500567\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Rujukan Keluar Faskes",
"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\": \"000015\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"stat\",\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\": \"737492002\",\n \"display\": \"Outpatient care management\"\n }\n ],\n \"text\": \"Rujukan untuk pemeriksan lebih lanjut terkait adanya kemungkinan penyakit jantung\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ],\n \"text\": \"Hipertensi\"\n }\n ],\n \"locationCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"HOSP\",\n \"display\": \"Hospital\"\n }\n ]\n }\n ],\n \"patientInstruction\": \"Rujukan ke RS SATUEHSET. Dalam keadaan darurat dapat menghubungi hotline RS di nomor 1500567\"\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/\"MTcxNTY1ODE0MjE5NDY1NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/fe630df7-8905-47ec-b1cd-ece78262a69e/_history/MTcxNTY1ODE0MjE5NDY1NjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:42:22 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:42:22 GMT"
},
{
"key": "content-length",
"value": "1528"
},
{
"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": "c0673b0f-5166-46ae-a6f3-bcd07648c89d"
},
{
"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\": \"3457005\",\n \"display\": \"Patient referral\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"737492002\",\n \"display\": \"Outpatient care management\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Rujukan untuk pemeriksan lebih lanjut terkait adanya kemungkinan penyakit jantung\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"fe630df7-8905-47ec-b1cd-ece78262a69e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"000015\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/referral-number\",\n \"value\": \"2000000133\"\n }\n ],\n \"intent\": \"original-order\",\n \"locationCode\": [\n {\n \"coding\": [\n {\n \"code\": \"HOSP\",\n \"display\": \"Hospital\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\"\n }\n ]\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:42:22.194656+00:00\",\n \"versionId\": \"MTcxNTY1ODE0MjE5NDY1NjAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"patientInstruction\": \"Rujukan ke RS SATUEHSET. Dalam keadaan darurat dapat menghubungi hotline RS di nomor 1500567\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"stat\",\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ],\n \"text\": \"Hipertensi\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Rujukan Keluar Faskes",
"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\": \"000015\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"stat\",\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\": \"737492002\",\n \"display\": \"Outpatient care management\"\n }\n ],\n \"text\": \"Rujukan untuk pemeriksan lebih lanjut terkait adanya kemungkinan penyakit jantung\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ],\n \"text\": \"Hipertensi\"\n }\n ],\n \"locationCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"HOSP\",\n \"display\": \"Hospital\"\n }\n ]\n }\n ],\n \"patientInstruction\": \"Rujukan ke RS SATUEHSET. Dalam keadaan darurat dapat menghubungi hotline RS di nomor 1500567\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Rujukan Keluar Faskes",
"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\": \"000015\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"stat\",\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\": \"737492002\",\n \"display\": \"Outpatient care management\"\n }\n ],\n \"text\": \"Rujukan untuk pemeriksan lebih lanjut terkait adanya kemungkinan penyakit jantung\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ],\n \"text\": \"Hipertensi\"\n }\n ],\n \"locationCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"HOSP\",\n \"display\": \"Hospital\"\n }\n ]\n }\n ],\n \"patientInstruction\": \"Rujukan ke RS SATUEHSET. Dalam keadaan darurat dapat menghubungi hotline RS di nomor 1500567\"\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/\"MTcxNTY1ODE0MjE5NDY1NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/fe630df7-8905-47ec-b1cd-ece78262a69e/_history/MTcxNTY1ODE0MjE5NDY1NjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:42:22 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:42:22 GMT"
},
{
"key": "content-length",
"value": "1528"
},
{
"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": "c0673b0f-5166-46ae-a6f3-bcd07648c89d"
},
{
"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\": \"3457005\",\n \"display\": \"Patient referral\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"737492002\",\n \"display\": \"Outpatient care management\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Rujukan untuk pemeriksan lebih lanjut terkait adanya kemungkinan penyakit jantung\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"fe630df7-8905-47ec-b1cd-ece78262a69e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"000015\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/referral-number\",\n \"value\": \"2000000133\"\n }\n ],\n \"intent\": \"original-order\",\n \"locationCode\": [\n {\n \"coding\": [\n {\n \"code\": \"HOSP\",\n \"display\": \"Hospital\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\"\n }\n ]\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:42:22.194656+00:00\",\n \"versionId\": \"MTcxNTY1ODE0MjE5NDY1NjAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"patientInstruction\": \"Rujukan ke RS SATUEHSET. Dalam keadaan darurat dapat menghubungi hotline RS di nomor 1500567\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"stat\",\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ],\n \"text\": \"Hipertensi\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "12. Kondisi Saat Meninggalkan Rumah Sakit",
"item": [
{
"name": "Condition - Stabil",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"359746009\",\n \"display\": \"Patient's condition stable\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T03:16:00+00:00\"\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": "{\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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"359746009\",\n \"display\": \"Patient's condition stable\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T03:16: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/fe939eb6-be10-49b2-9fcf-27df970f49dd/_history/MTcxMDg3MzUxMTYxMjM5MTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MzUxMTYxMjM5MTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 18:38:31 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:38:31 GMT"
},
{
"key": "Content-Length",
"value": "777"
},
{
"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": "f0f560e2-aeeb-464d-b684-8443391b1f31"
},
{
"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"
},
{
"key": "Connection",
"value": "close"
}
],
"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 \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"fe939eb6-be10-49b2-9fcf-27df970f49dd\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:38:31.612391+00:00\",\n \"versionId\": \"MTcxMDg3MzUxMTYxMjM5MTAwMA\"\n },\n \"recordedDate\": \"2024-03-14T03:16:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Stabil",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"359746009\",\n \"display\": \"Patient's condition stable\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T03:16:00+00:00\"\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": "{\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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"359746009\",\n \"display\": \"Patient's condition stable\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T03:16: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/fe939eb6-be10-49b2-9fcf-27df970f49dd/_history/MTcxMDg3MzUxMTYxMjM5MTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MzUxMTYxMjM5MTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 18:38:31 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:38:31 GMT"
},
{
"key": "Content-Length",
"value": "777"
},
{
"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": "f0f560e2-aeeb-464d-b684-8443391b1f31"
},
{
"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"
},
{
"key": "Connection",
"value": "close"
}
],
"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 \"reference\": \"Encounter/3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\"\n },\n \"id\": \"fe939eb6-be10-49b2-9fcf-27df970f49dd\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:38:31.612391+00:00\",\n \"versionId\": \"MTcxMDg3MzUxMTYxMjM5MTAwMA\"\n },\n \"recordedDate\": \"2024-03-14T03:16:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "13. Cara Keluar Rumah Sakit dan Update Pasien Pulang",
"item": [
{
"name": "Encounter - Update (Pulang)",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024041692295\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16: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_Utama}}\",\n \"display\": \"Essential (primary) hypertension\"\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\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 2\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T02:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-14T02:15:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-14T03:16:00+00:00\",\n \"end\": \"2024-03-14T03:16: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\"\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)",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024041692295\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16: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_Utama}}\",\n \"display\": \"Essential (primary) hypertension\"\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\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 2\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T02:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-14T02:15:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-14T03:16:00+00:00\",\n \"end\": \"2024-03-14T03:16: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\"\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/\"MTcxNTY1ODA5MDQzNjAzNTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:41:30 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/{{Encounter_id}}/_history/MTcxNTY1ODA5MDQzNjAzNTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:41:30 GMT"
},
{
"key": "content-length",
"value": "2686"
},
{
"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": "5258c107-284d-4686-a5d7-82cf058bc125"
},
{
"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\": \"Essential (primary) hypertension\",\n \"reference\": \"Condition/bdf57c91-d684-4542-b399-3701275f94b9\"\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\": \"Chronic ischaemic heart disease, unspecified\",\n \"reference\": \"Condition/4b7fdd80-6c3e-45db-8dcb-95316852f46b\"\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 \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\"\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\"\n }\n },\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000005\",\n \"value\": \"2024041692295\"\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\": \"Poli Umum\",\n \"reference\": \"Location/82b95bbe-3ec6-40c8-bbe9-250037d9b989\"\n },\n \"period\": {\n \"end\": \"2024-03-14T03:16:00+00:00\",\n \"start\": \"2024-03-14T02:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:41:30.436035+00:00\",\n \"versionId\": \"MTcxNTY1ODA5MDQzNjAzNTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"end\": \"2024-03-14T03:16:00+00:00\",\n \"start\": \"2024-03-14T02: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\": \"2024-03-14T02:15:00+00:00\",\n \"start\": \"2024-03-14T02:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"end\": \"2024-03-14T03:16:00+00:00\",\n \"start\": \"2024-03-14T02:15:00+00:00\"\n },\n \"status\": \"in-progress\"\n },\n {\n \"period\": {\n \"end\": \"2024-03-14T03:16:00+00:00\",\n \"start\": \"2024-03-14T03:16:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Encounter - Update (Pulang)",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024041692295\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16: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_Utama}}\",\n \"display\": \"Essential (primary) hypertension\"\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\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 2\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T02:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-14T02:15:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-14T03:16:00+00:00\",\n \"end\": \"2024-03-14T03:16: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\"\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)",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024041692295\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16: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_Utama}}\",\n \"display\": \"Essential (primary) hypertension\"\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\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 2\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T02:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-14T02:15:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-14T03:16:00+00:00\",\n \"end\": \"2024-03-14T03:16: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\"\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/\"MTcxNTY1ODA5MDQzNjAzNTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:41:30 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/{{Encounter_id}}/_history/MTcxNTY1ODA5MDQzNjAzNTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:41:30 GMT"
},
{
"key": "content-length",
"value": "2686"
},
{
"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": "5258c107-284d-4686-a5d7-82cf058bc125"
},
{
"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\": \"Essential (primary) hypertension\",\n \"reference\": \"Condition/bdf57c91-d684-4542-b399-3701275f94b9\"\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\": \"Chronic ischaemic heart disease, unspecified\",\n \"reference\": \"Condition/4b7fdd80-6c3e-45db-8dcb-95316852f46b\"\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 \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\"\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\"\n }\n },\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000005\",\n \"value\": \"2024041692295\"\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\": \"Poli Umum\",\n \"reference\": \"Location/82b95bbe-3ec6-40c8-bbe9-250037d9b989\"\n },\n \"period\": {\n \"end\": \"2024-03-14T03:16:00+00:00\",\n \"start\": \"2024-03-14T02:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:41:30.436035+00:00\",\n \"versionId\": \"MTcxNTY1ODA5MDQzNjAzNTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"end\": \"2024-03-14T03:16:00+00:00\",\n \"start\": \"2024-03-14T02: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\": \"2024-03-14T02:15:00+00:00\",\n \"start\": \"2024-03-14T02:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"end\": \"2024-03-14T03:16:00+00:00\",\n \"start\": \"2024-03-14T02:15:00+00:00\"\n },\n \"status\": \"in-progress\"\n },\n {\n \"period\": {\n \"end\": \"2024-03-14T03:16:00+00:00\",\n \"start\": \"2024-03-14T03:16:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Bundle Kunjungan 1. FKTP - RJ - Hipertensi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:7bc68ccf-22b9-464a-ba8d-f99a14a33171\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024041692295\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16: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_Utama}}\",\n \"display\": \"Essential (primary) hypertension\"\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\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 2\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T02:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-14T02:15:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-14T03:16:00+00:00\",\n \"end\": \"2024-03-14T03:16: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\"\n }\n },\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1f725605-258f-4ea7-8cfa-431cf33c8915\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:17:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:90317229-c085-4a43-afac-59ee69a72dcc\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:18:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ffb94184-ce39-4643-bc15-948d3df2486c\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:124d4764-acda-4c65-8306-e6ab89ab289f\",\n \"resource\": {\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"food\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-14T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"AllergyIntolerance\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2b1ba8c4-c50c-402c-acf2-e9897a3f80ef\",\n \"resource\": {\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"MedicationStatement\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ad43e9e9-e383-42aa-b2d6-cfded0fc587f\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0013\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2024-03-14T02:20:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Layanan bagi usia dewasa (18 - 59 thn): Skrining PTM\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah peserta pernah merokok?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Berapa rata-rata jumlah batang rokok per hari\",\n \"answer\": [\n {\n \"valueInteger\": 10\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Lama merokok dalam tahun\",\n \"answer\": [\n {\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Status merokok\",\n \"answer\": [\n {\n \"valueReference\": {\n \"reference\": \"Observation/2c21a654-7ecb-4c72-b69c-834f322437e2\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.5\",\n \"text\": \"Apakah peserta terpapar asap rokok orang lain dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.6\",\n \"text\": \"Apakah peserta menambahkan gula pada makanan/minuman peserta > 4 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.7\",\n \"text\": \"Apakah peserta menggunakan garam pada makanan peserta > 1 sendok teh dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.8\",\n \"text\": \"Apakah peserta konsumsi makanan yang diolah dengan minyak > 5 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.9\",\n \"text\": \"Apakah peserta makan sayur dan atau buah kurang dari 5 porsi sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000026\",\n \"display\": \"Tidak makan sayur dan atau buah kurang dari 5 porsi\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.10\",\n \"text\": \"Apakah peserta melakukan aktivitas fisik kurang dari minimal 30 menit/ hari atau minimal 150 menit/minggu?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.11\",\n \"text\": \"Apakah peserta konsumsi alkohol dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9d40fb30-b2e8-454d-9f79-f4ad2622ce36\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:20:00+00:00\",\n \"issued\": \"2024-03-14T02:20:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:68f30302-e307-40ce-8c92-d621a96844d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 182,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 115,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8138a9e7-258c-4974-be19-725f3d37af64\",\n \"resource\": {\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ServiceRequest\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:805e3abc-e362-42d4-8d2f-a6769a074e76\",\n \"resource\": {\n \"resourceType\": \"Specimen\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/{{Org_id}}\",\n \"value\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Specimen\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c9024074-f558-436b-90d8-7f41bc73624e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O000022\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 220,\n \"unit\": \"mg/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:cf88ba4d-e0a3-4701-afff-9fd8c0e3b245\",\n \"resource\": {\n \"resourceType\": \"DiagnosticReport\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/{{Org_id}}/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GulaDarahPuasa}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"DiagnosticReport\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d24c6168-7f4e-48b7-8719-a0697886f119\",\n \"resource\": {\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\": \"89.52\",\n \"display\": \"Electrocardiogram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-14T02:50:00+00:00\",\n \"end\": \"2024-03-14T03:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Procedure\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9457e641-12fd-45e5-85fd-aa701afbdc1b\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34534-8\",\n \"display\": \"12 lead EKG panel\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T03:05:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:7eceb8a7-985f-4a6a-b219-597a3d3a86ab\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"stage\": [\n {\n \"summary\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee5443b1-4cf1-40dc-9f60-0624349597e7\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:335b899d-511a-4223-9df2-6ea67a18f6da\",\n \"resource\": {\n \"resourceType\": \"EpisodeOfCare\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/{{Org_id}}\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"status\": \"waitlist\",\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\",\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"EpisodeOfCare\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:4aa1d7f1-17e2-4275-bf84-32364e5de204\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T02:50:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c03defbc-418b-45c7-9e54-15d29722553a\",\n \"resource\": {\n \"resourceType\": \"ClinicalImpression\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000123\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"Ibu Jane Smith Terdiagnosis Hipertensi\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"date\": \"2024-03-14T03:15:00+00:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/{{Diagnosis_Utama}}\"\n },\n {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"item\": [\n {\n \"reference\": \"DiagnosticReport/464fafa0-4d31-43f9-b0e3-9bfe53f33ab7\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/4fffb7a0-ed28-4470-91b6-0ff851b890b7\"\n }\n ]\n }\n ],\n \"summary\": \"Prognosis Hipertensi dengan taerget organ damage berupa Penyakit Jantung Iskemik Kronis sehingga kecurigaan terhadap penyakit Jantung\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Utama}}\"\n }\n },\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"67334001\",\n \"display\": \"Guarded prognosis\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ClinicalImpression\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"000015\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"stat\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3457005\",\n \"display\": \"Patient referral\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"11429006\",\n \"display\": \"Consultation\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3457005\",\n \"display\": \"Patient referral\"\n }\n ],\n \"text\": \"Rujukan untuk pemeriksan lebih lanjut terkait adanya kemungkinan penyakit jantung\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ],\n \"text\": \"Hipertensi\"\n }\n ],\n \"locationCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"HOSP\",\n \"display\": \"Hospital\"\n }\n ]\n }\n ],\n \"patientInstruction\": \"Rujukan ke RS SATUEHSET. Dalam keadaan darurat dapat menghubungi hotline RS di nomor 1500567\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ServiceRequest\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"response": [
{
"name": "Bundle Kunjungan 1. FKTP - RJ - Hipertensi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:7bc68ccf-22b9-464a-ba8d-f99a14a33171\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024041692295\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16: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_Utama}}\",\n \"display\": \"Essential (primary) hypertension\"\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\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 2\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T02:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-14T02:15:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-14T03:16:00+00:00\",\n \"end\": \"2024-03-14T03:16: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\"\n }\n },\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1f725605-258f-4ea7-8cfa-431cf33c8915\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:17:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:90317229-c085-4a43-afac-59ee69a72dcc\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:18:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ffb94184-ce39-4643-bc15-948d3df2486c\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:124d4764-acda-4c65-8306-e6ab89ab289f\",\n \"resource\": {\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"food\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-14T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"AllergyIntolerance\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2b1ba8c4-c50c-402c-acf2-e9897a3f80ef\",\n \"resource\": {\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"MedicationStatement\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ad43e9e9-e383-42aa-b2d6-cfded0fc587f\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0013\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2024-03-14T02:20:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Layanan bagi usia dewasa (18 - 59 thn): Skrining PTM\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah peserta pernah merokok?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Berapa rata-rata jumlah batang rokok per hari\",\n \"answer\": [\n {\n \"valueInteger\": 10\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Lama merokok dalam tahun\",\n \"answer\": [\n {\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Status merokok\",\n \"answer\": [\n {\n \"valueReference\": {\n \"reference\": \"Observation/2c21a654-7ecb-4c72-b69c-834f322437e2\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.5\",\n \"text\": \"Apakah peserta terpapar asap rokok orang lain dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.6\",\n \"text\": \"Apakah peserta menambahkan gula pada makanan/minuman peserta > 4 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.7\",\n \"text\": \"Apakah peserta menggunakan garam pada makanan peserta > 1 sendok teh dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.8\",\n \"text\": \"Apakah peserta konsumsi makanan yang diolah dengan minyak > 5 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.9\",\n \"text\": \"Apakah peserta makan sayur dan atau buah kurang dari 5 porsi sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000026\",\n \"display\": \"Tidak makan sayur dan atau buah kurang dari 5 porsi\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.10\",\n \"text\": \"Apakah peserta melakukan aktivitas fisik kurang dari minimal 30 menit/ hari atau minimal 150 menit/minggu?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.11\",\n \"text\": \"Apakah peserta konsumsi alkohol dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9d40fb30-b2e8-454d-9f79-f4ad2622ce36\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:20:00+00:00\",\n \"issued\": \"2024-03-14T02:20:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:68f30302-e307-40ce-8c92-d621a96844d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 182,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 115,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8138a9e7-258c-4974-be19-725f3d37af64\",\n \"resource\": {\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ServiceRequest\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:805e3abc-e362-42d4-8d2f-a6769a074e76\",\n \"resource\": {\n \"resourceType\": \"Specimen\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/{{Org_id}}\",\n \"value\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Specimen\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c9024074-f558-436b-90d8-7f41bc73624e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O000022\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 220,\n \"unit\": \"mg/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:cf88ba4d-e0a3-4701-afff-9fd8c0e3b245\",\n \"resource\": {\n \"resourceType\": \"DiagnosticReport\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/{{Org_id}}/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GulaDarahPuasa}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"DiagnosticReport\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d24c6168-7f4e-48b7-8719-a0697886f119\",\n \"resource\": {\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\": \"89.52\",\n \"display\": \"Electrocardiogram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-14T02:50:00+00:00\",\n \"end\": \"2024-03-14T03:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Procedure\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9457e641-12fd-45e5-85fd-aa701afbdc1b\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34534-8\",\n \"display\": \"12 lead EKG panel\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T03:05:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:7eceb8a7-985f-4a6a-b219-597a3d3a86ab\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"stage\": [\n {\n \"summary\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee5443b1-4cf1-40dc-9f60-0624349597e7\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:335b899d-511a-4223-9df2-6ea67a18f6da\",\n \"resource\": {\n \"resourceType\": \"EpisodeOfCare\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/{{Org_id}}\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"status\": \"waitlist\",\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\",\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"EpisodeOfCare\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:4aa1d7f1-17e2-4275-bf84-32364e5de204\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T02:50:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c03defbc-418b-45c7-9e54-15d29722553a\",\n \"resource\": {\n \"resourceType\": \"ClinicalImpression\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000123\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"Ibu Jane Smith Terdiagnosis Hipertensi\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"date\": \"2024-03-14T03:15:00+00:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/{{Diagnosis_Utama}}\"\n },\n {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"item\": [\n {\n \"reference\": \"DiagnosticReport/464fafa0-4d31-43f9-b0e3-9bfe53f33ab7\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/4fffb7a0-ed28-4470-91b6-0ff851b890b7\"\n }\n ]\n }\n ],\n \"summary\": \"Prognosis Hipertensi dengan taerget organ damage berupa Penyakit Jantung Iskemik Kronis sehingga kecurigaan terhadap penyakit Jantung\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Utama}}\"\n }\n },\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"67334001\",\n \"display\": \"Guarded prognosis\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ClinicalImpression\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"000015\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"stat\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3457005\",\n \"display\": \"Patient referral\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"11429006\",\n \"display\": \"Consultation\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3457005\",\n \"display\": \"Patient referral\"\n }\n ],\n \"text\": \"Rujukan untuk pemeriksan lebih lanjut terkait adanya kemungkinan penyakit jantung\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ],\n \"text\": \"Hipertensi\"\n }\n ],\n \"locationCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"HOSP\",\n \"display\": \"Hospital\"\n }\n ]\n }\n ],\n \"patientInstruction\": \"Rujukan ke RS SATUEHSET. Dalam keadaan darurat dapat menghubungi hotline RS di nomor 1500567\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ServiceRequest\"\n }\n }\n ]\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, 26 Apr 2024 10:26:48 GMT"
},
{
"key": "Content-Length",
"value": "1882"
},
{
"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": "0bb0c087-cfe8-4ebd-9065-0daf5882a6d7"
},
{
"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/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/d114f3cb-0427-4d98-af14-096a02265fa9/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Encounter\",\n \"resourceID\": \"d114f3cb-0427-4d98-af14-096a02265fa9\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/51954a15-181e-44ae-91a1-19932689bc6c/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"51954a15-181e-44ae-91a1-19932689bc6c\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/9c35783a-59c8-43fc-b78d-fb1e05eb43fc/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"9c35783a-59c8-43fc-b78d-fb1e05eb43fc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/03f3b764-d551-41b7-9786-36e3bc9755ff/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"03f3b764-d551-41b7-9786-36e3bc9755ff\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b9f2a22b-317f-4e84-8ee0-b8df34be6da9/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"AllergyIntolerance\",\n \"resourceID\": \"b9f2a22b-317f-4e84-8ee0-b8df34be6da9\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationStatement/e7bfc126-321e-423c-8aa4-047b85aa30a6/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"MedicationStatement\",\n \"resourceID\": \"e7bfc126-321e-423c-8aa4-047b85aa30a6\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/08021b27-add6-442a-93fe-eaa07c50d321/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"08021b27-add6-442a-93fe-eaa07c50d321\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/80c2ce68-672d-47c0-b00a-7a2b4cc62f4a/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"80c2ce68-672d-47c0-b00a-7a2b4cc62f4a\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/7f3904f9-a5a2-4384-b8e2-70f6897e2b42/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"7f3904f9-a5a2-4384-b8e2-70f6897e2b42\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/CarePlan/43086446-83b1-473d-ab25-e45f756723ef/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"CarePlan\",\n \"resourceID\": \"43086446-83b1-473d-ab25-e45f756723ef\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/CarePlan/d630d85a-405d-482f-be70-855eacf9f0d5/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"CarePlan\",\n \"resourceID\": \"d630d85a-405d-482f-be70-855eacf9f0d5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ServiceRequest/d31041f0-7a39-408e-a48e-1ee76ddb0eb6/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"ServiceRequest\",\n \"resourceID\": \"d31041f0-7a39-408e-a48e-1ee76ddb0eb6\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Specimen/372c959d-c46a-4853-a6dc-f6e67adefbd5/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Specimen\",\n \"resourceID\": \"372c959d-c46a-4853-a6dc-f6e67adefbd5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/d7d2daa3-a06b-45dd-8c54-d80b8c8a897d/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"d7d2daa3-a06b-45dd-8c54-d80b8c8a897d\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/DiagnosticReport/576eb963-a031-403a-8989-9d4295e63e06/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"DiagnosticReport\",\n \"resourceID\": \"576eb963-a031-403a-8989-9d4295e63e06\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/eb53d43c-9381-447c-a0f4-4b6c19462a84/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"eb53d43c-9381-447c-a0f4-4b6c19462a84\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/ef9bb7bc-0eed-4956-9e4e-8f69bae83061/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"ef9bb7bc-0eed-4956-9e4e-8f69bae83061\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/f14b2023-0750-42ac-891c-55dbae7a5078/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"f14b2023-0750-42ac-891c-55dbae7a5078\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/d8f074e2-e663-45df-b307-88cfd285df71/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"d8f074e2-e663-45df-b307-88cfd285df71\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/648eabc8-db3f-42fc-9852-25a1374c824f/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"648eabc8-db3f-42fc-9852-25a1374c824f\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/8c1de043-4465-45d7-999f-da3d00077456/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"8c1de043-4465-45d7-999f-da3d00077456\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Composition/2994d32a-9e05-4b6f-bdf9-142385991bcc/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Composition\",\n \"resourceID\": \"2994d32a-9e05-4b6f-bdf9-142385991bcc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/1e3ff310-d701-4f57-a54e-9a2a8518722c/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"1e3ff310-d701-4f57-a54e-9a2a8518722c\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Medication/c4861ed7-a645-4494-a614-8a44ba3a0434/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Medication\",\n \"resourceID\": \"c4861ed7-a645-4494-a614-8a44ba3a0434\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationRequest/72fc8a5f-98b6-4e1a-83bb-d7f3f049960f/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"MedicationRequest\",\n \"resourceID\": \"72fc8a5f-98b6-4e1a-83bb-d7f3f049960f\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/QuestionnaireResponse/6b92a5b0-b106-4908-9c68-1fca4fbfcba9/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"resourceID\": \"6b92a5b0-b106-4908-9c68-1fca4fbfcba9\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Medication/45ad03cc-919b-45a1-a242-165c59ae5247/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Medication\",\n \"resourceID\": \"45ad03cc-919b-45a1-a242-165c59ae5247\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/e8043d2c-c9cb-4dc9-af56-65a0553c1d64/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"MedicationDispense\",\n \"resourceID\": \"e8043d2c-c9cb-4dc9-af56-65a0553c1d64\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ClinicalImpression/b1a9a1ee-4e71-446b-964a-65d7b5ccb3fc/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"ClinicalImpression\",\n \"resourceID\": \"b1a9a1ee-4e71-446b-964a-65d7b5ccb3fc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ServiceRequest/fbca8938-8193-4a71-a98b-5039214a17d2/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"ServiceRequest\",\n \"resourceID\": \"fbca8938-8193-4a71-a98b-5039214a17d2\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/1cf2117f-956d-4ed5-84f3-04c5ff135c3f/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"1cf2117f-956d-4ed5-84f3-04c5ff135c3f\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction-response\",\n \"total\": 31\n}"
}
]
},
{
"name": "Bundle Kunjungan 1. FKTP - RJ - Hipertensi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:7bc68ccf-22b9-464a-ba8d-f99a14a33171\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024041692295\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16: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_Utama}}\",\n \"display\": \"Essential (primary) hypertension\"\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\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 2\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T02:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-14T02:15:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-14T03:16:00+00:00\",\n \"end\": \"2024-03-14T03:16: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\"\n }\n },\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1f725605-258f-4ea7-8cfa-431cf33c8915\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:17:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:90317229-c085-4a43-afac-59ee69a72dcc\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:18:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ffb94184-ce39-4643-bc15-948d3df2486c\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:124d4764-acda-4c65-8306-e6ab89ab289f\",\n \"resource\": {\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"food\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-14T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"AllergyIntolerance\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2b1ba8c4-c50c-402c-acf2-e9897a3f80ef\",\n \"resource\": {\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"MedicationStatement\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ad43e9e9-e383-42aa-b2d6-cfded0fc587f\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0013\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2024-03-14T02:20:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Layanan bagi usia dewasa (18 - 59 thn): Skrining PTM\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah peserta pernah merokok?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Berapa rata-rata jumlah batang rokok per hari\",\n \"answer\": [\n {\n \"valueInteger\": 10\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Lama merokok dalam tahun\",\n \"answer\": [\n {\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Status merokok\",\n \"answer\": [\n {\n \"valueReference\": {\n \"reference\": \"Observation/2c21a654-7ecb-4c72-b69c-834f322437e2\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.5\",\n \"text\": \"Apakah peserta terpapar asap rokok orang lain dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.6\",\n \"text\": \"Apakah peserta menambahkan gula pada makanan/minuman peserta > 4 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.7\",\n \"text\": \"Apakah peserta menggunakan garam pada makanan peserta > 1 sendok teh dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.8\",\n \"text\": \"Apakah peserta konsumsi makanan yang diolah dengan minyak > 5 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.9\",\n \"text\": \"Apakah peserta makan sayur dan atau buah kurang dari 5 porsi sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000026\",\n \"display\": \"Tidak makan sayur dan atau buah kurang dari 5 porsi\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.10\",\n \"text\": \"Apakah peserta melakukan aktivitas fisik kurang dari minimal 30 menit/ hari atau minimal 150 menit/minggu?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.11\",\n \"text\": \"Apakah peserta konsumsi alkohol dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9d40fb30-b2e8-454d-9f79-f4ad2622ce36\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:20:00+00:00\",\n \"issued\": \"2024-03-14T02:20:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:68f30302-e307-40ce-8c92-d621a96844d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 182,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 115,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8138a9e7-258c-4974-be19-725f3d37af64\",\n \"resource\": {\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ServiceRequest\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:805e3abc-e362-42d4-8d2f-a6769a074e76\",\n \"resource\": {\n \"resourceType\": \"Specimen\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/{{Org_id}}\",\n \"value\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Specimen\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c9024074-f558-436b-90d8-7f41bc73624e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O000022\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 220,\n \"unit\": \"mg/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:cf88ba4d-e0a3-4701-afff-9fd8c0e3b245\",\n \"resource\": {\n \"resourceType\": \"DiagnosticReport\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/{{Org_id}}/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GulaDarahPuasa}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"DiagnosticReport\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d24c6168-7f4e-48b7-8719-a0697886f119\",\n \"resource\": {\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\": \"89.52\",\n \"display\": \"Electrocardiogram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-14T02:50:00+00:00\",\n \"end\": \"2024-03-14T03:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Procedure\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9457e641-12fd-45e5-85fd-aa701afbdc1b\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34534-8\",\n \"display\": \"12 lead EKG panel\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T03:05:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:7eceb8a7-985f-4a6a-b219-597a3d3a86ab\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"stage\": [\n {\n \"summary\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee5443b1-4cf1-40dc-9f60-0624349597e7\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:335b899d-511a-4223-9df2-6ea67a18f6da\",\n \"resource\": {\n \"resourceType\": \"EpisodeOfCare\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/{{Org_id}}\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"status\": \"waitlist\",\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\",\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"EpisodeOfCare\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:4aa1d7f1-17e2-4275-bf84-32364e5de204\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T02:50:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c03defbc-418b-45c7-9e54-15d29722553a\",\n \"resource\": {\n \"resourceType\": \"ClinicalImpression\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000123\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"Ibu Jane Smith Terdiagnosis Hipertensi\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"date\": \"2024-03-14T03:15:00+00:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/{{Diagnosis_Utama}}\"\n },\n {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"item\": [\n {\n \"reference\": \"DiagnosticReport/464fafa0-4d31-43f9-b0e3-9bfe53f33ab7\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/4fffb7a0-ed28-4470-91b6-0ff851b890b7\"\n }\n ]\n }\n ],\n \"summary\": \"Prognosis Hipertensi dengan taerget organ damage berupa Penyakit Jantung Iskemik Kronis sehingga kecurigaan terhadap penyakit Jantung\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Utama}}\"\n }\n },\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"67334001\",\n \"display\": \"Guarded prognosis\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ClinicalImpression\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"000015\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"stat\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3457005\",\n \"display\": \"Patient referral\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"11429006\",\n \"display\": \"Consultation\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3457005\",\n \"display\": \"Patient referral\"\n }\n ],\n \"text\": \"Rujukan untuk pemeriksan lebih lanjut terkait adanya kemungkinan penyakit jantung\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ],\n \"text\": \"Hipertensi\"\n }\n ],\n \"locationCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"HOSP\",\n \"display\": \"Hospital\"\n }\n ]\n }\n ],\n \"patientInstruction\": \"Rujukan ke RS SATUEHSET. Dalam keadaan darurat dapat menghubungi hotline RS di nomor 1500567\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ServiceRequest\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"response": [
{
"name": "Bundle Kunjungan 1. FKTP - RJ - Hipertensi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:7bc68ccf-22b9-464a-ba8d-f99a14a33171\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024041692295\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliUmum}}\",\n \"display\": \"Poli Umum\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T03:16: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_Utama}}\",\n \"display\": \"Essential (primary) hypertension\"\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\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 2\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-14T02:00:00+00:00\",\n \"end\": \"2024-03-14T02:15:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-14T02:15:00+00:00\",\n \"end\": \"2024-03-14T03:16:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-14T03:16:00+00:00\",\n \"end\": \"2024-03-14T03:16: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\"\n }\n },\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:1f725605-258f-4ea7-8cfa-431cf33c8915\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:17:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:90317229-c085-4a43-afac-59ee69a72dcc\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:18:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ffb94184-ce39-4643-bc15-948d3df2486c\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:124d4764-acda-4c65-8306-e6ab89ab289f\",\n \"resource\": {\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"food\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-14T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"AllergyIntolerance\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:2b1ba8c4-c50c-402c-acf2-e9897a3f80ef\",\n \"resource\": {\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"MedicationStatement\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ad43e9e9-e383-42aa-b2d6-cfded0fc587f\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0013\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2024-03-14T02:20:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Layanan bagi usia dewasa (18 - 59 thn): Skrining PTM\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah peserta pernah merokok?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Berapa rata-rata jumlah batang rokok per hari\",\n \"answer\": [\n {\n \"valueInteger\": 10\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Lama merokok dalam tahun\",\n \"answer\": [\n {\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"years\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Status merokok\",\n \"answer\": [\n {\n \"valueReference\": {\n \"reference\": \"Observation/2c21a654-7ecb-4c72-b69c-834f322437e2\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.5\",\n \"text\": \"Apakah peserta terpapar asap rokok orang lain dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.6\",\n \"text\": \"Apakah peserta menambahkan gula pada makanan/minuman peserta > 4 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.7\",\n \"text\": \"Apakah peserta menggunakan garam pada makanan peserta > 1 sendok teh dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.8\",\n \"text\": \"Apakah peserta konsumsi makanan yang diolah dengan minyak > 5 sendok makan dalam sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000015\",\n \"display\": \"Ya, tidak setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.9\",\n \"text\": \"Apakah peserta makan sayur dan atau buah kurang dari 5 porsi sehari?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000026\",\n \"display\": \"Tidak makan sayur dan atau buah kurang dari 5 porsi\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.10\",\n \"text\": \"Apakah peserta melakukan aktivitas fisik kurang dari minimal 30 menit/ hari atau minimal 150 menit/minggu?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000016\",\n \"display\": \"Ya, setiap hari\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.11\",\n \"text\": \"Apakah peserta konsumsi alkohol dalam waktu 1 bulan terakhir?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"QRI000014\",\n \"display\": \"Tidak\"\n }\n }\n ]\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9d40fb30-b2e8-454d-9f79-f4ad2622ce36\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:20:00+00:00\",\n \"issued\": \"2024-03-14T02:20:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:68f30302-e307-40ce-8c92-d621a96844d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 182,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:24:00+00:00\",\n \"issued\": \"2024-03-14T02:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 115,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8138a9e7-258c-4974-be19-725f3d37af64\",\n \"resource\": {\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ServiceRequest\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:805e3abc-e362-42d4-8d2f-a6769a074e76\",\n \"resource\": {\n \"resourceType\": \"Specimen\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/{{Org_id}}\",\n \"value\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-14T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-14T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-14T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-14T02:34:00+00:00\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Specimen\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c9024074-f558-436b-90d8-7f41bc73624e\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O000022\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 220,\n \"unit\": \"mg/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:cf88ba4d-e0a3-4701-afff-9fd8c0e3b245\",\n \"resource\": {\n \"resourceType\": \"DiagnosticReport\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/{{Org_id}}/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:35:00+00:00\",\n \"issued\": \"2024-03-14T02:36: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_GulaDarahPuasa}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GulaDarahPuasa}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GulaDarahPuasa}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"DiagnosticReport\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d24c6168-7f4e-48b7-8719-a0697886f119\",\n \"resource\": {\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\": \"89.52\",\n \"display\": \"Electrocardiogram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-14T02:50:00+00:00\",\n \"end\": \"2024-03-14T03:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Procedure\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9457e641-12fd-45e5-85fd-aa701afbdc1b\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34534-8\",\n \"display\": \"12 lead EKG panel\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T03:05:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:7eceb8a7-985f-4a6a-b219-597a3d3a86ab\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"stage\": [\n {\n \"summary\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee5443b1-4cf1-40dc-9f60-0624349597e7\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:50:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:335b899d-511a-4223-9df2-6ea67a18f6da\",\n \"resource\": {\n \"resourceType\": \"EpisodeOfCare\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/{{Org_id}}\",\n \"value\": \"EOC0000010\"\n }\n ],\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"status\": \"waitlist\",\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\",\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\"\n }\n ]\n }\n ],\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"period\": {\n \"start\": \"2024-03-14T02:50:00+00:00\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"EpisodeOfCare\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:4aa1d7f1-17e2-4275-bf84-32364e5de204\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000179\",\n \"display\": \"Target Organ Damage Hipertensi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-14T02:50:00+00:00\",\n \"issued\": \"2024-03-14T02:50:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"414545008\",\n \"display\": \"Ischemic heart disease\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c03defbc-418b-45c7-9e54-15d29722553a\",\n \"resource\": {\n \"resourceType\": \"ClinicalImpression\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000123\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"Ibu Jane Smith Terdiagnosis Hipertensi\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 14 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"date\": \"2024-03-14T03:15:00+00:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/{{Diagnosis_Utama}}\"\n },\n {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"item\": [\n {\n \"reference\": \"DiagnosticReport/464fafa0-4d31-43f9-b0e3-9bfe53f33ab7\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/4fffb7a0-ed28-4470-91b6-0ff851b890b7\"\n }\n ]\n }\n ],\n \"summary\": \"Prognosis Hipertensi dengan taerget organ damage berupa Penyakit Jantung Iskemik Kronis sehingga kecurigaan terhadap penyakit Jantung\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Utama}}\"\n }\n },\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\"\n }\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"67334001\",\n \"display\": \"Guarded prognosis\"\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ClinicalImpression\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"000015\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"stat\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3457005\",\n \"display\": \"Patient referral\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"11429006\",\n \"display\": \"Consultation\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3457005\",\n \"display\": \"Patient referral\"\n }\n ],\n \"text\": \"Rujukan untuk pemeriksan lebih lanjut terkait adanya kemungkinan penyakit jantung\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-14T03:15:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\"\n }\n ],\n \"text\": \"Hipertensi\"\n }\n ],\n \"locationCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\",\n \"code\": \"HOSP\",\n \"display\": \"Hospital\"\n }\n ]\n }\n ],\n \"patientInstruction\": \"Rujukan ke RS SATUEHSET. Dalam keadaan darurat dapat menghubungi hotline RS di nomor 1500567\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ServiceRequest\"\n }\n }\n ]\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, 26 Apr 2024 10:26:48 GMT"
},
{
"key": "Content-Length",
"value": "1882"
},
{
"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": "0bb0c087-cfe8-4ebd-9065-0daf5882a6d7"
},
{
"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/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/d114f3cb-0427-4d98-af14-096a02265fa9/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Encounter\",\n \"resourceID\": \"d114f3cb-0427-4d98-af14-096a02265fa9\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/51954a15-181e-44ae-91a1-19932689bc6c/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"51954a15-181e-44ae-91a1-19932689bc6c\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/9c35783a-59c8-43fc-b78d-fb1e05eb43fc/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"9c35783a-59c8-43fc-b78d-fb1e05eb43fc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/03f3b764-d551-41b7-9786-36e3bc9755ff/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"03f3b764-d551-41b7-9786-36e3bc9755ff\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b9f2a22b-317f-4e84-8ee0-b8df34be6da9/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"AllergyIntolerance\",\n \"resourceID\": \"b9f2a22b-317f-4e84-8ee0-b8df34be6da9\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationStatement/e7bfc126-321e-423c-8aa4-047b85aa30a6/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"MedicationStatement\",\n \"resourceID\": \"e7bfc126-321e-423c-8aa4-047b85aa30a6\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/08021b27-add6-442a-93fe-eaa07c50d321/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"08021b27-add6-442a-93fe-eaa07c50d321\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/80c2ce68-672d-47c0-b00a-7a2b4cc62f4a/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"80c2ce68-672d-47c0-b00a-7a2b4cc62f4a\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/7f3904f9-a5a2-4384-b8e2-70f6897e2b42/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"7f3904f9-a5a2-4384-b8e2-70f6897e2b42\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/CarePlan/43086446-83b1-473d-ab25-e45f756723ef/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"CarePlan\",\n \"resourceID\": \"43086446-83b1-473d-ab25-e45f756723ef\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/CarePlan/d630d85a-405d-482f-be70-855eacf9f0d5/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"CarePlan\",\n \"resourceID\": \"d630d85a-405d-482f-be70-855eacf9f0d5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ServiceRequest/d31041f0-7a39-408e-a48e-1ee76ddb0eb6/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"ServiceRequest\",\n \"resourceID\": \"d31041f0-7a39-408e-a48e-1ee76ddb0eb6\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Specimen/372c959d-c46a-4853-a6dc-f6e67adefbd5/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Specimen\",\n \"resourceID\": \"372c959d-c46a-4853-a6dc-f6e67adefbd5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/d7d2daa3-a06b-45dd-8c54-d80b8c8a897d/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"d7d2daa3-a06b-45dd-8c54-d80b8c8a897d\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/DiagnosticReport/576eb963-a031-403a-8989-9d4295e63e06/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"DiagnosticReport\",\n \"resourceID\": \"576eb963-a031-403a-8989-9d4295e63e06\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/eb53d43c-9381-447c-a0f4-4b6c19462a84/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"eb53d43c-9381-447c-a0f4-4b6c19462a84\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/ef9bb7bc-0eed-4956-9e4e-8f69bae83061/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"ef9bb7bc-0eed-4956-9e4e-8f69bae83061\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/f14b2023-0750-42ac-891c-55dbae7a5078/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"f14b2023-0750-42ac-891c-55dbae7a5078\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/d8f074e2-e663-45df-b307-88cfd285df71/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"d8f074e2-e663-45df-b307-88cfd285df71\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/648eabc8-db3f-42fc-9852-25a1374c824f/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"648eabc8-db3f-42fc-9852-25a1374c824f\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/8c1de043-4465-45d7-999f-da3d00077456/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"8c1de043-4465-45d7-999f-da3d00077456\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Composition/2994d32a-9e05-4b6f-bdf9-142385991bcc/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Composition\",\n \"resourceID\": \"2994d32a-9e05-4b6f-bdf9-142385991bcc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/1e3ff310-d701-4f57-a54e-9a2a8518722c/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"1e3ff310-d701-4f57-a54e-9a2a8518722c\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Medication/c4861ed7-a645-4494-a614-8a44ba3a0434/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Medication\",\n \"resourceID\": \"c4861ed7-a645-4494-a614-8a44ba3a0434\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationRequest/72fc8a5f-98b6-4e1a-83bb-d7f3f049960f/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"MedicationRequest\",\n \"resourceID\": \"72fc8a5f-98b6-4e1a-83bb-d7f3f049960f\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/QuestionnaireResponse/6b92a5b0-b106-4908-9c68-1fca4fbfcba9/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"resourceID\": \"6b92a5b0-b106-4908-9c68-1fca4fbfcba9\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Medication/45ad03cc-919b-45a1-a242-165c59ae5247/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Medication\",\n \"resourceID\": \"45ad03cc-919b-45a1-a242-165c59ae5247\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/e8043d2c-c9cb-4dc9-af56-65a0553c1d64/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"MedicationDispense\",\n \"resourceID\": \"e8043d2c-c9cb-4dc9-af56-65a0553c1d64\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ClinicalImpression/b1a9a1ee-4e71-446b-964a-65d7b5ccb3fc/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"ClinicalImpression\",\n \"resourceID\": \"b1a9a1ee-4e71-446b-964a-65d7b5ccb3fc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ServiceRequest/fbca8938-8193-4a71-a98b-5039214a17d2/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"ServiceRequest\",\n \"resourceID\": \"fbca8938-8193-4a71-a98b-5039214a17d2\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/1cf2117f-956d-4ed5-84f3-04c5ff135c3f/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"1cf2117f-956d-4ed5-84f3-04c5ff135c3f\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction-response\",\n \"total\": 31\n}"
}
]
}
]
},
{
"name": "2. FKTL - RJ - PJI Stabil, Cardiomegali, dan Dislipidemia",
"item": [
{
"name": "00. Membuat Struktur Organisasi dan Lokasi",
"item": [
{
"name": "Organization - Divisi Pelayanan Medik, Keperawatan, dan Penunjang",
"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\": \"Yanmed\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Rumah Sakit SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Divisi Pelayanan Medik, Keperawatan, dan Penunjang",
"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\": \"Yanmed\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Rumah Sakit 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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NDA3OTMzNDk0NTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 18:47:59 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/2d45c343-9ebc-49d7-a608-4a6ca8318e09/_history/MTcxMDg3NDA3OTMzNDk0NTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:47:59 GMT"
},
{
"key": "Content-Length",
"value": "6022"
},
{
"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": "f109d059-64f7-4e8b-9928-c223eac9129f"
},
{
"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\": \"2d45c343-9ebc-49d7-a608-4a6ca8318e09\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"Yanmed\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:47:59.334945+00:00\",\n \"versionId\": \"MTcxMDg3NDA3OTMzNDk0NTAwMA\"\n },\n \"name\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"partOf\": {\n \"display\": \"Rumah Sakit SATUSEHAT\",\n \"reference\": \"Organization/10000002\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\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}"
}
]
},
{
"name": "Organization - Pelayanan Jantung",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Divisi_uuid\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"Jantung\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Pelayanan Jantung\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Pelayanan Jantung",
"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\": \"Jantung\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Pelayanan Jantung\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\"\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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NDEzODQyNDIzODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Organization/3c7047eb-dabc-43ca-92a6-0fc20d2b39de/_history/MTcxMDg3NDEzODQyNDIzODAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 18:48:58 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:48:58 GMT"
},
{
"key": "Content-Length",
"value": "6122"
},
{
"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": "ced2c3b4-dc72-4a53-8016-0f247b62f5b6"
},
{
"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\": \"3c7047eb-dabc-43ca-92a6-0fc20d2b39de\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"Jantung\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:48:58.424238+00:00\",\n \"versionId\": \"MTcxMDg3NDEzODQyNDIzODAwMA\"\n },\n \"name\": \"Pelayanan Jantung\",\n \"partOf\": {\n \"display\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"reference\": \"Organization/2d45c343-9ebc-49d7-a608-4a6ca8318e09\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\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}"
}
]
},
{
"name": "Location - Poli Jantung",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Location_uuid\", data.id);\r",
"pm.collectionVariables.set(\"Location_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\": \"P-Jantung\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Poli Jantung\",\n \"description\": \"Poli Jantung Rumah Sakit SATUSEHAT\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Pelayanan Jantung\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Poli Jantung",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-Jantung\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Poli Jantung\",\n \"description\": \"Poli Jantung Rumah Sakit SATUSEHAT\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Pelayanan Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Location/b0eaf422-54cb-45c3-b57b-4a18ab95ee97/_history/MTcxMDg3NDIyNjY0MjUwNTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NDIyNjY0MjUwNTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 18:50:26 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:50:26 GMT"
},
{
"key": "Content-Length",
"value": "4534"
},
{
"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": "b603e08e-7bae-4c84-a477-73484e8dd773"
},
{
"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\": \"Poli Jantung Rumah Sakit SATUSEHAT\",\n \"id\": \"b0eaf422-54cb-45c3-b57b-4a18ab95ee97\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000002\",\n \"value\": \"P-Jantung\"\n }\n ],\n \"managingOrganization\": {\n \"display\": \"Pelayanan Jantung\",\n \"reference\": \"Organization/3c7047eb-dabc-43ca-92a6-0fc20d2b39de\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:50:26.642505+00:00\",\n \"versionId\": \"MTcxMDg3NDIyNjY0MjUwNTAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Poli Jantung\",\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\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ]\n}"
}
]
},
{
"name": "Organization - Pelayanan Jantung",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Divisi_uuid\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Organization\",\n \"active\": true,\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://sys-ids.kemkes.go.id/organization/{{Org_id}}\",\n \"value\": \"Jantung\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Pelayanan Jantung\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Pelayanan Jantung",
"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\": \"Jantung\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Pelayanan Jantung\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\"\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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NDEzODQyNDIzODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Organization/3c7047eb-dabc-43ca-92a6-0fc20d2b39de/_history/MTcxMDg3NDEzODQyNDIzODAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 18:48:58 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:48:58 GMT"
},
{
"key": "Content-Length",
"value": "6122"
},
{
"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": "ced2c3b4-dc72-4a53-8016-0f247b62f5b6"
},
{
"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\": \"3c7047eb-dabc-43ca-92a6-0fc20d2b39de\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"Jantung\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:48:58.424238+00:00\",\n \"versionId\": \"MTcxMDg3NDEzODQyNDIzODAwMA\"\n },\n \"name\": \"Pelayanan Jantung\",\n \"partOf\": {\n \"display\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"reference\": \"Organization/2d45c343-9ebc-49d7-a608-4a6ca8318e09\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\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}"
}
]
},
{
"name": "Location - Poli Jantung",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Location_uuid\", data.id);\r",
"pm.collectionVariables.set(\"Location_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\": \"P-Jantung\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Poli Jantung\",\n \"description\": \"Poli Jantung Rumah Sakit SATUSEHAT\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Pelayanan Jantung\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Poli Jantung",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Location\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/{{Org_id}}\",\n \"value\": \"P-Jantung\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Poli Jantung\",\n \"description\": \"Poli Jantung Rumah Sakit SATUSEHAT\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"ro\",\n \"display\": \"Room\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\",\n \"display\": \"Pelayanan Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Location/b0eaf422-54cb-45c3-b57b-4a18ab95ee97/_history/MTcxMDg3NDIyNjY0MjUwNTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NDIyNjY0MjUwNTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 18:50:26 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:50:26 GMT"
},
{
"key": "Content-Length",
"value": "4534"
},
{
"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": "b603e08e-7bae-4c84-a477-73484e8dd773"
},
{
"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\": \"Poli Jantung Rumah Sakit SATUSEHAT\",\n \"id\": \"b0eaf422-54cb-45c3-b57b-4a18ab95ee97\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000002\",\n \"value\": \"P-Jantung\"\n }\n ],\n \"managingOrganization\": {\n \"display\": \"Pelayanan Jantung\",\n \"reference\": \"Organization/3c7047eb-dabc-43ca-92a6-0fc20d2b39de\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:50:26.642505+00:00\",\n \"versionId\": \"MTcxMDg3NDIyNjY0MjUwNTAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Poli Jantung\",\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\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"pkm-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ]\n}"
}
]
},
{
"name": "Organization - Divisi Pelayanan Medik, Keperawatan, dan Penunjang",
"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\": \"Yanmed\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Rumah Sakit SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Divisi Pelayanan Medik, Keperawatan, dan Penunjang",
"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\": \"Yanmed\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Rumah Sakit 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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NDA3OTMzNDk0NTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 18:47:59 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/2d45c343-9ebc-49d7-a608-4a6ca8318e09/_history/MTcxMDg3NDA3OTMzNDk0NTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:47:59 GMT"
},
{
"key": "Content-Length",
"value": "6022"
},
{
"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": "f109d059-64f7-4e8b-9928-c223eac9129f"
},
{
"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\": \"2d45c343-9ebc-49d7-a608-4a6ca8318e09\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"Yanmed\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:47:59.334945+00:00\",\n \"versionId\": \"MTcxMDg3NDA3OTMzNDk0NTAwMA\"\n },\n \"name\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"partOf\": {\n \"display\": \"Rumah Sakit SATUSEHAT\",\n \"reference\": \"Organization/10000002\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\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}"
}
]
}
]
},
{
"name": "01. Mencari Data Pasien dan Nakes",
"item": [
{
"name": "Patient - ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Patient_Id\", data.id);\r",
"pm.collectionVariables.set(\"Patient_Name\", \"Jane Smith\")"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "P03647103112"
}
]
}
},
"response": [
{
"name": "Patient - ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "P03647103112"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcwNTM5MDU2MzM3NTQ0MzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 16 Jan 2024 07:36:03 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 02 Mar 2024 07:50:08 GMT"
},
{
"key": "content-length",
"value": "1974"
},
{
"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": "738a6cef-4780-46d3-a2ff-3bcc8c68f191"
},
{
"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 \"id\": \"P03647103112\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P03647103112\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d15ed5ce-85f0-49f5-abc0-b0ebb6b29526\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d20bbee0-af21-4794-a95f-47579d1e15be\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e28ebe98-2ed7-46a9-a795-6dbcbd23d38c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7a39d2c4-6c52-4457-82df-24b69efe31e1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35e9a64e-3896-4235-bae4-5a6bdd95e86b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cd8fe34c-b4f4-4eca-a081-b4b0786996b1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/08e427c5-2e10-40df-be8f-7e05ba219763\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7b046615-320d-4e7c-a414-72036eab9706\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ba7906d5-b0c0-41ef-ac07-3009aed90874\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/1a3be152-cb5c-4971-8add-9722dd69d4dc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/82aad5d5-960a-4dc4-8661-82be0cba6967\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/33e74d62-68c6-4dda-80de-776efd96fd18\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/af68e558-4e05-4569-84c0-1889708462cb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/71f9b4fa-8b78-409e-b033-aeee997740ab\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ee3f02d-a628-4fba-a59c-d57d47df75fa\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/2c3565ac-2106-4474-9bad-484755f73e4c\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-01-16T07:36:03.375443+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\": \"MTcwNTM5MDU2MzM3NTQ0MzAwMA\"\n },\n \"resourceType\": \"Patient\"\n}"
}
]
},
{
"name": "Patient - Search Name, Birthdate, Gender",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"pm.collectionVariables.set(\"Patient_Id\", data.id);\r",
"data.name.forEach(name =>{\r",
" if(name.use === \"official\"){pm.collectionVariables.set(\"Patient_Name\", name.text)}\r",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 2&birthdate=2010-04-08&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 2"
},
{
"key": "birthdate",
"value": "2010-04-08"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"response": [
{
"name": "Patient - Search Name, Birthdate, Gender",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 2&birthdate=2010-04-08&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 2"
},
{
"key": "birthdate",
"value": "2010-04-08"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 02 Mar 2024 07:52:39 GMT"
},
{
"key": "content-length",
"value": "3361"
},
{
"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": "c341ef0e-57ab-4f7e-9ff3-8477811550d3"
},
{
"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/P03647103112\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"MALANG\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"7\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"33\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"2005\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"32\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"3\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"DUSUN KRA***\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"2010-04-08\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P03647103112\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P03647103112\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d15ed5ce-85f0-49f5-abc0-b0ebb6b29526\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d20bbee0-af21-4794-a95f-47579d1e15be\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e28ebe98-2ed7-46a9-a795-6dbcbd23d38c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7a39d2c4-6c52-4457-82df-24b69efe31e1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35e9a64e-3896-4235-bae4-5a6bdd95e86b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cd8fe34c-b4f4-4eca-a081-b4b0786996b1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/08e427c5-2e10-40df-be8f-7e05ba219763\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7b046615-320d-4e7c-a414-72036eab9706\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ba7906d5-b0c0-41ef-ac07-3009aed90874\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/1a3be152-cb5c-4971-8add-9722dd69d4dc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/82aad5d5-960a-4dc4-8661-82be0cba6967\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/33e74d62-68c6-4dda-80de-776efd96fd18\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/af68e558-4e05-4569-84c0-1889708462cb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/71f9b4fa-8b78-409e-b033-aeee997740ab\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ee3f02d-a628-4fba-a59c-d57d47df75fa\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/2c3565ac-2106-4474-9bad-484755f73e4c\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-01-16T07:36:03.375443+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\": \"MTcwNTM5MDU2MzM3NTQ0MzAwMA\"\n },\n \"multipleBirthBoolean\": false,\n \"name\": [\n {\n \"text\": \"patient 2\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Practitioner - By ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Practitioner_Id\", data.id);\r",
"var Practitioner_name = \"\";\r",
"data.name.forEach(name => {\r",
" if(name.use === \"official\"){\r",
" name.prefix.forEach(prefix => {Practitioner_name = Practitioner_name + prefix});\r",
" Practitioner_name = Practitioner_name + name.text;\r",
" name.suffix.forEach(suffix =>{Practitioner_name = Practitioner_name +\",\"+ suffix});\r",
" }\r",
"})\r",
"pm.collectionVariables.set(\"Practitioner_Name\", Practitioner_name);\r",
"console.log(Practitioner_name)\r",
""
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000006"
}
]
}
},
"response": [
{
"name": "Practitioner - By ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000006"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Thu, 15 Dec 2022 01:25:33 UTC"
},
{
"key": "etag",
"value": "W/\"MTY3MTA2NzUzMzg1MjE0MTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:51:03 GMT"
},
{
"key": "Content-Length",
"value": "9178"
},
{
"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": "77359e26-3a54-459e-8fa6-ba45899dec35"
},
{
"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 \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000006\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000006\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111206\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-12-15T01:25:33.852141+00:00\",\n \"versionId\": \"MTY3MTA2NzUzMzg1MjE0MTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Rus, MD.\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"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 \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2023-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"voigt@xyz.com\"\n }\n ]\n}"
}
]
},
{
"name": "Patient - ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Patient_Id\", data.id);\r",
"pm.collectionVariables.set(\"Patient_Name\", \"Jane Smith\")"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "P03647103112"
}
]
}
},
"response": [
{
"name": "Patient - ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "P03647103112"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcwNTM5MDU2MzM3NTQ0MzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 16 Jan 2024 07:36:03 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 02 Mar 2024 07:50:08 GMT"
},
{
"key": "content-length",
"value": "1974"
},
{
"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": "738a6cef-4780-46d3-a2ff-3bcc8c68f191"
},
{
"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 \"id\": \"P03647103112\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P03647103112\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d15ed5ce-85f0-49f5-abc0-b0ebb6b29526\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d20bbee0-af21-4794-a95f-47579d1e15be\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e28ebe98-2ed7-46a9-a795-6dbcbd23d38c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7a39d2c4-6c52-4457-82df-24b69efe31e1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35e9a64e-3896-4235-bae4-5a6bdd95e86b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cd8fe34c-b4f4-4eca-a081-b4b0786996b1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/08e427c5-2e10-40df-be8f-7e05ba219763\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7b046615-320d-4e7c-a414-72036eab9706\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ba7906d5-b0c0-41ef-ac07-3009aed90874\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/1a3be152-cb5c-4971-8add-9722dd69d4dc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/82aad5d5-960a-4dc4-8661-82be0cba6967\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/33e74d62-68c6-4dda-80de-776efd96fd18\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/af68e558-4e05-4569-84c0-1889708462cb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/71f9b4fa-8b78-409e-b033-aeee997740ab\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ee3f02d-a628-4fba-a59c-d57d47df75fa\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/2c3565ac-2106-4474-9bad-484755f73e4c\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-01-16T07:36:03.375443+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\": \"MTcwNTM5MDU2MzM3NTQ0MzAwMA\"\n },\n \"resourceType\": \"Patient\"\n}"
}
]
},
{
"name": "Practitioner - By ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Practitioner_Id\", data.id);\r",
"var Practitioner_name = \"\";\r",
"data.name.forEach(name => {\r",
" if(name.use === \"official\"){\r",
" name.prefix.forEach(prefix => {Practitioner_name = Practitioner_name + prefix});\r",
" Practitioner_name = Practitioner_name + name.text;\r",
" name.suffix.forEach(suffix =>{Practitioner_name = Practitioner_name +\",\"+ suffix});\r",
" }\r",
"})\r",
"pm.collectionVariables.set(\"Practitioner_Name\", Practitioner_name);\r",
"console.log(Practitioner_name)\r",
""
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000006"
}
]
}
},
"response": [
{
"name": "Practitioner - By ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000006"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Thu, 15 Dec 2022 01:25:33 UTC"
},
{
"key": "etag",
"value": "W/\"MTY3MTA2NzUzMzg1MjE0MTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:51:03 GMT"
},
{
"key": "Content-Length",
"value": "9178"
},
{
"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": "77359e26-3a54-459e-8fa6-ba45899dec35"
},
{
"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 \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000006\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000006\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111206\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-12-15T01:25:33.852141+00:00\",\n \"versionId\": \"MTY3MTA2NzUzMzg1MjE0MTAwMA\"\n },\n \"name\": [\n {\n \"text\": \"Rus, MD.\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"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 \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2023-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"voigt@xyz.com\"\n }\n ]\n}"
}
]
},
{
"name": "Patient - Search Name, Birthdate, Gender",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"pm.collectionVariables.set(\"Patient_Id\", data.id);\r",
"data.name.forEach(name =>{\r",
" if(name.use === \"official\"){pm.collectionVariables.set(\"Patient_Name\", name.text)}\r",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 2&birthdate=2010-04-08&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 2"
},
{
"key": "birthdate",
"value": "2010-04-08"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"response": [
{
"name": "Patient - Search Name, Birthdate, Gender",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 2&birthdate=2010-04-08&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 2"
},
{
"key": "birthdate",
"value": "2010-04-08"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 02 Mar 2024 07:52:39 GMT"
},
{
"key": "content-length",
"value": "3361"
},
{
"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": "c341ef0e-57ab-4f7e-9ff3-8477811550d3"
},
{
"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/P03647103112\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"MALANG\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"7\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"33\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"2005\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"32\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"3\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"DUSUN KRA***\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"2010-04-08\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P03647103112\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P03647103112\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d15ed5ce-85f0-49f5-abc0-b0ebb6b29526\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d20bbee0-af21-4794-a95f-47579d1e15be\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e28ebe98-2ed7-46a9-a795-6dbcbd23d38c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7a39d2c4-6c52-4457-82df-24b69efe31e1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35e9a64e-3896-4235-bae4-5a6bdd95e86b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cd8fe34c-b4f4-4eca-a081-b4b0786996b1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/08e427c5-2e10-40df-be8f-7e05ba219763\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7b046615-320d-4e7c-a414-72036eab9706\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ba7906d5-b0c0-41ef-ac07-3009aed90874\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/1a3be152-cb5c-4971-8add-9722dd69d4dc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/82aad5d5-960a-4dc4-8661-82be0cba6967\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/33e74d62-68c6-4dda-80de-776efd96fd18\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/af68e558-4e05-4569-84c0-1889708462cb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/71f9b4fa-8b78-409e-b033-aeee997740ab\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ee3f02d-a628-4fba-a59c-d57d47df75fa\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/2c3565ac-2106-4474-9bad-484755f73e4c\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-01-16T07:36:03.375443+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\": \"MTcwNTM5MDU2MzM3NTQ0MzAwMA\"\n },\n \"multipleBirthBoolean\": false,\n \"name\": [\n {\n \"text\": \"patient 2\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
}
]
},
{
"name": "02. Pendaftaran Kunjungan Pasien",
"item": [
{
"name": "GET EOC CAD by status waitlist",
"item": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist (Get EOC dari any organization)",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist (Get EOC dari any organization)",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
}
]
}
},
"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, 14 May 2024 03:43:51 GMT"
},
{
"key": "content-length",
"value": "1460"
},
{
"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": "5d5f547e-0c85-48d0-b824-cc42504037e0"
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"resource\": {\n \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist dan organization org_id faskes (Get EOC dari faskes sendiri)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var id = bundle.entry[0].resource.id;\r",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist&organization=10000005",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
},
{
"key": "organization",
"value": "10000005",
"description": "input your Org_id here"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist dan organization org_id faskes (Get EOC dari faskes sendiri)",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist&organization=10000005",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
},
{
"key": "organization",
"value": "10000005",
"description": "input your Org_id here"
}
]
}
},
"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, 14 May 2024 03:52:27 GMT"
},
{
"key": "content-length",
"value": "572"
},
{
"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": "93d5f06d-2638-4003-8a61-806892e2e820"
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"resource\": {\n \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist (Get EOC dari any organization)",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist (Get EOC dari any organization)",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
}
]
}
},
"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, 14 May 2024 03:43:51 GMT"
},
{
"key": "content-length",
"value": "1460"
},
{
"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": "5d5f547e-0c85-48d0-b824-cc42504037e0"
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"resource\": {\n \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist dan organization org_id faskes (Get EOC dari faskes sendiri)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var id = bundle.entry[0].resource.id;\r",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist&organization=10000005",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
},
{
"key": "organization",
"value": "10000005",
"description": "input your Org_id here"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status waitlist dan organization org_id faskes (Get EOC dari faskes sendiri)",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=waitlist&organization=10000005",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "waitlist",
"description": "status should be waitlist"
},
{
"key": "organization",
"value": "10000005",
"description": "input your Org_id here"
}
]
}
},
"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, 14 May 2024 03:52:27 GMT"
},
{
"key": "content-length",
"value": "572"
},
{
"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": "93d5f06d-2638-4003-8a61-806892e2e820"
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"resource\": {\n \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"waitlist\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
}
]
},
{
"name": "GET ServiceRequest by Nomor Rujukan Nasional",
"item": [
{
"name": "GET - ServiceRequest by Nomor Rujukan Nasional",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var id = bundle.entry[0].resource.id;\r",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ServiceRequest?identifier=http://sys-ids.kemkes.go.id/referral-number|2000000133",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/referral-number|2000000133"
}
]
}
},
"response": [
{
"name": "GET - ServiceRequest by Nomor Rujukan Nasional",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ServiceRequest?identifier=http://sys-ids.kemkes.go.id/referral-number|2000000133",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/referral-number|2000000133"
}
]
}
},
"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, 14 May 2024 03:48:55 GMT"
},
{
"key": "content-length",
"value": "2258"
},
{
"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": "6bab89ec-91ec-480e-98ac-f41644463878"
},
{
"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/ServiceRequest/fe630df7-8905-47ec-b1cd-ece78262a69e\",\n \"resource\": {\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\": \"737492002\",\n \"display\": \"Outpatient care management\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Rujukan untuk pemeriksan lebih lanjut terkait adanya kemungkinan penyakit jantung\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"fe630df7-8905-47ec-b1cd-ece78262a69e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"000015\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/referral-number\",\n \"value\": \"2000000133\"\n }\n ],\n \"intent\": \"original-order\",\n \"locationCode\": [\n {\n \"coding\": [\n {\n \"code\": \"HOSP\",\n \"display\": \"Hospital\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\"\n }\n ]\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:42:22.400509+00:00\",\n \"versionId\": \"MTcxNTY1ODE0MjQwMDUwOTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T03:15:00+00:00\",\n \"patientInstruction\": \"Rujukan ke RS SATUEHSET. Dalam keadaan darurat dapat menghubungi hotline RS di nomor 1500567\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"stat\",\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ],\n \"text\": \"Hipertensi\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ServiceRequest/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Freferral-number%7C2000000133\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ServiceRequest/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Freferral-number%7C2000000133\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ServiceRequest/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Freferral-number%7C2000000133\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "GET - ServiceRequest by Nomor Rujukan Nasional",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var id = bundle.entry[0].resource.id;\r",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ServiceRequest?identifier=http://sys-ids.kemkes.go.id/referral-number|2000000133",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/referral-number|2000000133"
}
]
}
},
"response": [
{
"name": "GET - ServiceRequest by Nomor Rujukan Nasional",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ServiceRequest?identifier=http://sys-ids.kemkes.go.id/referral-number|2000000133",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/referral-number|2000000133"
}
]
}
},
"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, 14 May 2024 03:48:55 GMT"
},
{
"key": "content-length",
"value": "2258"
},
{
"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": "6bab89ec-91ec-480e-98ac-f41644463878"
},
{
"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/ServiceRequest/fe630df7-8905-47ec-b1cd-ece78262a69e\",\n \"resource\": {\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\": \"737492002\",\n \"display\": \"Outpatient care management\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Rujukan untuk pemeriksan lebih lanjut terkait adanya kemungkinan penyakit jantung\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"fe630df7-8905-47ec-b1cd-ece78262a69e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"000015\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/referral-number\",\n \"value\": \"2000000133\"\n }\n ],\n \"intent\": \"original-order\",\n \"locationCode\": [\n {\n \"coding\": [\n {\n \"code\": \"HOSP\",\n \"display\": \"Hospital\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-RoleCode\"\n }\n ]\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:42:22.400509+00:00\",\n \"versionId\": \"MTcxNTY1ODE0MjQwMDUwOTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T03:15:00+00:00\",\n \"patientInstruction\": \"Rujukan ke RS SATUEHSET. Dalam keadaan darurat dapat menghubungi hotline RS di nomor 1500567\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"stat\",\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"I10\",\n \"display\": \"Essential (primary) hypertension\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ],\n \"text\": \"Hipertensi\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ServiceRequest/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Freferral-number%7C2000000133\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ServiceRequest/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Freferral-number%7C2000000133\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ServiceRequest/?identifier=http%3A%2F%2Fsys-ids.kemkes.go.id%2Freferral-number%7C2000000133\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
}
]
},
{
"name": "Encounter - Kunjungan Baru",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Encounter_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
},
{
"listen": "prerequest",
"script": {
"exec": [
"//defining yyymmdd as currentDate's YYYYMMDD in string format\r",
"var now = new Date();\r",
"var year = now.getFullYear();\r",
"var month = String(now.getMonth() + 1).padStart(2, '0');\r",
"var day = String(now.getDate()).padStart(2, '0');\r",
"var yyyymmdd = `${year}${month}${day}`;\r",
"\r",
"//Generating 5 digits of stringified random integer to make 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": {}
}
}
],
"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\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01: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\": \"2024-03-15T01: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\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01: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\": \"2024-03-15T01: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": "etag",
"value": "W/\"MTcxNTY2MDQ3MjQxMDYyMjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed/_history/MTcxNTY2MDQ3MjQxMDYyMjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 04:21:12 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 04:21:12 GMT"
},
{
"key": "content-length",
"value": "1681"
},
{
"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": "0a73aba1-463c-422b-a11d-078b03bec3a8"
},
{
"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/fe630df7-8905-47ec-b1cd-ece78262a69e\"\n }\n ],\n \"class\": {\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\"\n }\n ],\n \"id\": \"6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000002\",\n \"value\": \"2024041592288\"\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\": \"Poli Jantung\",\n \"reference\": \"Location/b0eaf422-54cb-45c3-b57b-4a18ab95ee97\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T04:21:12.410622+00:00\",\n \"versionId\": \"MTcxNTY2MDQ3MjQxMDYyMjAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\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\": \"2024-03-15T01:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000002\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Encounter - Masuk Ruang Pemeriksaan",
"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\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\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 \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01: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\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T01:10:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-15T01:10: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 Pemeriksaan",
"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\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\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 \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01: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\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T01:10:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-15T01:10: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": "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/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed/_history/MTcxNTY2MDU1Mjg0ODg0MDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 04:22:32 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY2MDU1Mjg0ODg0MDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 04:22:32 GMT"
},
{
"key": "content-length",
"value": "1791"
},
{
"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": "463defe0-3000-4026-8af3-87df78cc7ced"
},
{
"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/fe630df7-8905-47ec-b1cd-ece78262a69e\"\n }\n ],\n \"class\": {\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\"\n }\n ],\n \"id\": \"6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000002\",\n \"value\": \"2024041592288\"\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\": \"Poli Jantung\",\n \"reference\": \"Location/b0eaf422-54cb-45c3-b57b-4a18ab95ee97\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T04:22:32.848840+00:00\",\n \"versionId\": \"MTcxNTY2MDU1Mjg0ODg0MDAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\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\": \"2024-03-15T01:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000002\"\n },\n \"status\": \"in-progress\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T01:10:00+00:00\",\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T01:10:00+00:00\"\n },\n \"status\": \"in-progress\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Encounter - Masuk Ruang Pemeriksaan",
"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\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\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 \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01: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\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T01:10:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-15T01:10: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 Pemeriksaan",
"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\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\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 \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01: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\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T01:10:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-15T01:10: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": "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/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed/_history/MTcxNTY2MDU1Mjg0ODg0MDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 04:22:32 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY2MDU1Mjg0ODg0MDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 04:22:32 GMT"
},
{
"key": "content-length",
"value": "1791"
},
{
"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": "463defe0-3000-4026-8af3-87df78cc7ced"
},
{
"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/fe630df7-8905-47ec-b1cd-ece78262a69e\"\n }\n ],\n \"class\": {\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\"\n }\n ],\n \"id\": \"6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000002\",\n \"value\": \"2024041592288\"\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\": \"Poli Jantung\",\n \"reference\": \"Location/b0eaf422-54cb-45c3-b57b-4a18ab95ee97\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T04:22:32.848840+00:00\",\n \"versionId\": \"MTcxNTY2MDU1Mjg0ODg0MDAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\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\": \"2024-03-15T01:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000002\"\n },\n \"status\": \"in-progress\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T01:10:00+00:00\",\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T01:10:00+00:00\"\n },\n \"status\": \"in-progress\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Encounter - Kunjungan Baru",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Encounter_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
},
{
"listen": "prerequest",
"script": {
"exec": [
"//defining yyymmdd as currentDate's YYYYMMDD in string format\r",
"var now = new Date();\r",
"var year = now.getFullYear();\r",
"var month = String(now.getMonth() + 1).padStart(2, '0');\r",
"var day = String(now.getDate()).padStart(2, '0');\r",
"var yyyymmdd = `${year}${month}${day}`;\r",
"\r",
"//Generating 5 digits of stringified random integer to make 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": {}
}
}
],
"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\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01: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\": \"2024-03-15T01: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\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01: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\": \"2024-03-15T01: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": "etag",
"value": "W/\"MTcxNTY2MDQ3MjQxMDYyMjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed/_history/MTcxNTY2MDQ3MjQxMDYyMjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 04:21:12 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 04:21:12 GMT"
},
{
"key": "content-length",
"value": "1681"
},
{
"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": "0a73aba1-463c-422b-a11d-078b03bec3a8"
},
{
"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/fe630df7-8905-47ec-b1cd-ece78262a69e\"\n }\n ],\n \"class\": {\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\"\n }\n ],\n \"id\": \"6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000002\",\n \"value\": \"2024041592288\"\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\": \"Poli Jantung\",\n \"reference\": \"Location/b0eaf422-54cb-45c3-b57b-4a18ab95ee97\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T04:21:12.410622+00:00\",\n \"versionId\": \"MTcxNTY2MDQ3MjQxMDYyMjAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\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\": \"2024-03-15T01:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000002\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "03. Anamnesis",
"item": [
{
"name": "Riwayat Penyakit",
"item": [
{
"name": "Condition - Riwayat Penyakit",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T01:17:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Riwayat Penyakit",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T01:17: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/2bc7b7a7-5783-4065-9b71-4cbae05badf0/_history/MTcxMDg3NjA0ODY5MjMyMDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NjA0ODY5MjMyMDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:20:48 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:20:48 GMT"
},
{
"key": "Content-Length",
"value": "3836"
},
{
"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": "09ee8780-391b-44bf-a914-02a9bc14257a"
},
{
"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\": \"161527007\",\n \"display\": \"H/O: asthma\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"2bc7b7a7-5783-4065-9b71-4cbae05badf0\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:20:48.692320+00:00\",\n \"versionId\": \"MTcxMDg3NjA0ODY5MjMyMDAwMA\"\n },\n \"recordedDate\": \"2024-03-15T01:17:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Riwayat Penyakit Keluarga",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T01:18:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Riwayat Penyakit Keluarga",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T01:18: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/f08d25c1-06eb-4dc9-89b5-fb588442d7fa/_history/MTcxMDg3NjA5NDE3NjE1NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NjA5NDE3NjE1NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:21:34 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:21:34 GMT"
},
{
"key": "Content-Length",
"value": "3918"
},
{
"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": "8ce7e1e9-e3de-41a5-8cc4-56d2a0a334a4"
},
{
"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\": \"429959009\",\n \"display\": \"Family history of heart failure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"f08d25c1-06eb-4dc9-89b5-fb588442d7fa\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:21:34.176156+00:00\",\n \"versionId\": \"MTcxMDg3NjA5NDE3NjE1NjAwMA\"\n },\n \"recordedDate\": \"2024-03-15T01:18:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Riwayat Penyakit",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T01:17:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Riwayat Penyakit",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T01:17: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/2bc7b7a7-5783-4065-9b71-4cbae05badf0/_history/MTcxMDg3NjA0ODY5MjMyMDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NjA0ODY5MjMyMDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:20:48 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:20:48 GMT"
},
{
"key": "Content-Length",
"value": "3836"
},
{
"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": "09ee8780-391b-44bf-a914-02a9bc14257a"
},
{
"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\": \"161527007\",\n \"display\": \"H/O: asthma\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"2bc7b7a7-5783-4065-9b71-4cbae05badf0\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:20:48.692320+00:00\",\n \"versionId\": \"MTcxMDg3NjA0ODY5MjMyMDAwMA\"\n },\n \"recordedDate\": \"2024-03-15T01:17:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Riwayat Penyakit Keluarga",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T01:18:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Riwayat Penyakit Keluarga",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T01:18: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/f08d25c1-06eb-4dc9-89b5-fb588442d7fa/_history/MTcxMDg3NjA5NDE3NjE1NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NjA5NDE3NjE1NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:21:34 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:21:34 GMT"
},
{
"key": "Content-Length",
"value": "3918"
},
{
"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": "8ce7e1e9-e3de-41a5-8cc4-56d2a0a334a4"
},
{
"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\": \"429959009\",\n \"display\": \"Family history of heart failure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"f08d25c1-06eb-4dc9-89b5-fb588442d7fa\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:21:34.176156+00:00\",\n \"versionId\": \"MTcxMDg3NjA5NDE3NjE1NjAwMA\"\n },\n \"recordedDate\": \"2024-03-15T01:18:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Riwayat Alergi",
"item": [
{
"name": "AllergyIntolerance by ID Patient",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/AllergyIntolerance?patient=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
],
"query": [
{
"key": "patient",
"value": "100000030006"
}
]
}
},
"response": [
{
"name": "AllergyIntolerance by ID Patient",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/AllergyIntolerance?patient=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
],
"query": [
{
"key": "patient",
"value": "100000030006"
}
]
}
},
"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, 19 Mar 2024 19:25:52 GMT"
},
{
"key": "Content-Length",
"value": "295360"
},
{
"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": "b71c2609-5625-470a-9746-849450f95c13"
},
{
"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/AllergyIntolerance/c6955131-f4b1-4228-980e-beca1d59b679\",\n \"resource\": {\n \"category\": [\n \"food\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c6955131-f4b1-4228-980e-beca1d59b679\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T07:22:32.930440+00:00\",\n \"versionId\": \"MTcxMDgzMjk1MjkzMDQ0MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2024-03-15T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/94ba2b8e-5aa3-4635-ab38-8cf1352cd3ed\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/155c14dc-16b5-4c81-b087-3727393aba52\"\n },\n \"id\": \"94ba2b8e-5aa3-4635-ab38-8cf1352cd3ed\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085396\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T13:09:17.104823+00:00\",\n \"versionId\": \"MTcwMjQ3Mjk1NzEwNDgyMzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-12-11T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b3527077-9af8-4fea-b12f-3c5f405ae525\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/f53c0b92-1d83-4cc9-8e25-aea8845f6f26\"\n },\n \"id\": \"b3527077-9af8-4fea-b12f-3c5f405ae525\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T09:30:22.901675+00:00\",\n \"versionId\": \"MTcwMjQ1OTgyMjkwMTY3NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-12-13T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/09550531-16a2-41bc-bb34-806910a7e4b0\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/65e7703f-4c58-4264-b7ac-246601e4a6a3\"\n },\n \"id\": \"09550531-16a2-41bc-bb34-806910a7e4b0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000141\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T09:19:49.967897+00:00\",\n \"versionId\": \"MTcwMjQ1OTE4OTk2Nzg5NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-12-13T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/3e3cb428-3fd6-43c7-ad48-a80b1093fc67\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/c565d456-5063-4abc-b5ce-b98d624c5a33\"\n },\n \"id\": \"3e3cb428-3fd6-43c7-ad48-a80b1093fc67\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/7ae1c831-8a98-48d7-a197-8207ca13ee79\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T08:18:42.329161+00:00\",\n \"versionId\": \"MTcwMjQ1NTUyMjMyOTE2MTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/dabf9dcf-d0ff-43cb-9aba-199a6787ea38\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/8688e37b-a85d-4a55-87d0-db762b448de9\"\n },\n \"id\": \"dabf9dcf-d0ff-43cb-9aba-199a6787ea38\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/d24913a1-dd01-4ffa-a0b0-ad452cf1ddd0\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T08:15:59.797148+00:00\",\n \"versionId\": \"MTcwMjQ1NTM1OTc5NzE0ODAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f6b18ae1-1732-4e9e-b8e2-b354a44efe70\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/3a0b6fa4-ce64-4d0c-9c77-e42e4a9a60b8\"\n },\n \"id\": \"f6b18ae1-1732-4e9e-b8e2-b354a44efe70\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085384\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T08:09:09.016777+00:00\",\n \"versionId\": \"MTcwMjQ1NDk0OTAxNjc3NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b77c2ff0-92d9-4cc5-a7d6-1424967d4509\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/a537ad9b-7261-4299-984e-ca6b7fe18ad4\"\n },\n \"id\": \"b77c2ff0-92d9-4cc5-a7d6-1424967d4509\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T06:59:12.733902+00:00\",\n \"versionId\": \"MTcwMjQ1MDc1MjczMzkwMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/34a4fdd9-9cd6-4bd8-b0e8-030b204cb88f\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/10a75a1d-cc4e-4fd2-aa62-665dcd9cdf7a\"\n },\n \"id\": \"34a4fdd9-9cd6-4bd8-b0e8-030b204cb88f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/4a79820b-46d3-4e52-ad09-e748f8b47c7f\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-12T16:29:21.561252+00:00\",\n \"versionId\": \"MTcwMjM5ODU2MTU2MTI1MjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f3d03c7e-44af-4132-963b-ddee28184da8\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diana Smith di hari Kamis, 25 Desember 2022\",\n \"reference\": \"Encounter/65f28fae-0fd9-4a27-9c3d-1b9b41d544d4\"\n },\n \"id\": \"f3d03c7e-44af-4132-963b-ddee28184da8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"10085104\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-21T08:33:43.621724+00:00\",\n \"versionId\": \"MTcwMDU1NTYyMzYyMTcyNDAwMA\"\n },\n \"patient\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-12-25T08:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5536abc1-6dcc-4370-a574-b7b8b931f573\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diana Smith 4 Juli 2023\",\n \"reference\": \"Encounter/cfc22889-755d-41ac-9dcd-f55893b3631d\"\n },\n \"id\": \"5536abc1-6dcc-4370-a574-b7b8b931f573\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"P20240002\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-21T07:13:34.768820+00:00\",\n \"versionId\": \"MTcwMDU1MDgxNDc2ODgyMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-07-04T09:30:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/41e2a4a2-4a7b-4a97-9cb7-01d49cfb52c1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diana Smith 4 Juli 2023\",\n \"reference\": \"Encounter/cfc22889-755d-41ac-9dcd-f55893b3631d\"\n },\n \"id\": \"41e2a4a2-4a7b-4a97-9cb7-01d49cfb52c1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"P20240001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-21T07:03:09.641026+00:00\",\n \"versionId\": \"MTcwMDU1MDE4OTY0MTAyNjAwMA\"\n },\n \"patient\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-07-04T09:30:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/dd87ba9d-5dd8-4538-b660-ea7d00d2a9bf\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/b2521638-4de9-43b8-bf5b-8eb5da1cfcc7\"\n },\n \"id\": \"dd87ba9d-5dd8-4538-b660-ea7d00d2a9bf\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T22:21:57.365820+00:00\",\n \"versionId\": \"MTcwMDUxODkxNzM2NTgyMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/7c5ae8a4-f40f-4d62-a6db-57133d816039\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/fb058732-308f-48ba-9e16-ef6593680ff6\"\n },\n \"id\": \"7c5ae8a4-f40f-4d62-a6db-57133d816039\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000079\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T15:34:36.958182+00:00\",\n \"versionId\": \"MTcwMDQ5NDQ3Njk1ODE4MjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5a15a515-97a5-45c5-8993-51b83089f5ca\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/9deed3a4-f191-4035-a29a-a2d469124d75\"\n },\n \"id\": \"5a15a515-97a5-45c5-8993-51b83089f5ca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:49:25.898306+00:00\",\n \"versionId\": \"MTcwMDQ4ODE2NTg5ODMwNjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/434bee15-81dc-4021-8c0c-bbc18011f287\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/9beba5c6-0ebf-467c-8c12-00f977de81f\"\n },\n \"id\": \"434bee15-81dc-4021-8c0c-bbc18011f287\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:31:31.521414+00:00\",\n \"versionId\": \"MTcwMDQ4NzA5MTUyMTQxNDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/18670a52-07c8-46dd-a7dc-5854511271a6\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/69cc7d45-d836-4bf5-bc81-becac68cc897\"\n },\n \"id\": \"18670a52-07c8-46dd-a7dc-5854511271a6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:06:20.254183+00:00\",\n \"versionId\": \"MTcwMDQ4NTU4MDI1NDE4MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/588e6507-156f-4d56-9bba-5ae7715e9292\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/36edbb95-c9d7-4da3-abd8-c61961a72de5\"\n },\n \"id\": \"588e6507-156f-4d56-9bba-5ae7715e9292\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000141\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:01:58.642886+00:00\",\n \"versionId\": \"MTcwMDQ4NTMxODY0Mjg4NjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/c4c1cf79-22bf-4325-aa19-ac56df6ca8a6\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/614bca61-cf87-4a41-a956-b8e66468a5f3\"\n },\n \"id\": \"c4c1cf79-22bf-4325-aa19-ac56df6ca8a6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:55:59.675175+00:00\",\n \"versionId\": \"MTcwMDQ4NDk1OTY3NTE3NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/8c227d0e-8690-45f4-9372-29fc231c234a\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/dcf000dc-3055-4f8e-aaa9-f03896adabcc\"\n },\n \"id\": \"8c227d0e-8690-45f4-9372-29fc231c234a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000083\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:52:23.282757+00:00\",\n \"versionId\": \"MTcwMDQ4NDc0MzI4Mjc1NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/1ef31f88-679f-4b5f-9dbf-e198b618fcf2\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/efb1d066-ce30-4ef1-ac43-682ab32834ed\"\n },\n \"id\": \"1ef31f88-679f-4b5f-9dbf-e198b618fcf2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:44:14.952612+00:00\",\n \"versionId\": \"MTcwMDQ4NDI1NDk1MjYxMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/94e9937c-ef63-4ece-9e3c-9d537a584a45\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/11f3491c-7e39-46d6-9676-1c75a30feadc\"\n },\n \"id\": \"94e9937c-ef63-4ece-9e3c-9d537a584a45\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:43:37.392721+00:00\",\n \"versionId\": \"MTcwMDQ4NDIxNzM5MjcyMTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5c7cf66d-e474-4ba7-9c57-ff8df2adb3ea\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Rabu, 31 Agustus 2022\",\n \"reference\": \"Encounter/10a75a1d-cc4e-4fd2-aa62-665dcd9cdf7a\"\n },\n \"id\": \"5c7cf66d-e474-4ba7-9c57-ff8df2adb3ea\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-09T08:01:16.165113+00:00\",\n \"versionId\": \"MTY5OTUxNjg3NjE2NTExMzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b17dad32-8af1-4922-a6d2-a974b34c43bf\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 22 Desember 2022\",\n \"reference\": \"Encounter/2d69d1fe-268f-4ae1-8cfe-4262c96ecac5\"\n },\n \"id\": \"b17dad32-8af1-4922-a6d2-a974b34c43bf\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10080039\",\n \"use\": \"official\",\n \"value\": \"10080039\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T06:37:02.950595+00:00\",\n \"versionId\": \"MTY5NTcxMDIyMjk1MDU5NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-12-22T08:30:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5b41cfd8-594f-426b-9cb6-4f3a341c5417\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/8fa99d9a-e3a0-49af-940d-58e35aa9b029\"\n },\n \"id\": \"5b41cfd8-594f-426b-9cb6-4f3a341c5417\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T04:57:06.721083+00:00\",\n \"versionId\": \"MTY5NTcwNDIyNjcyMTA4MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/51cff8cf-ab08-457c-9dfd-dd84e0ef0679\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/91fcdefb-993f-43f4-bba0-7de7126a941a\"\n },\n \"id\": \"51cff8cf-ab08-457c-9dfd-dd84e0ef0679\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T03:51:16.237440+00:00\",\n \"versionId\": \"MTY5NTcwMDI3NjIzNzQ0MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/3bb6a486-e46e-4602-a3c0-e0f118a4689a\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 6 Juni 2023\",\n \"reference\": \"Encounter/943ea4b5-bd21-4d68-8ab7-52a336d0ff57\"\n },\n \"id\": \"3bb6a486-e46e-4602-a3c0-e0f118a4689a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T03:19:55.442137+00:00\",\n \"versionId\": \"MTY5NTY5ODM5NTQ0MjEzNzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/4069e39e-c56c-46ff-a99b-8c7e6b80b39d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/9eb8ab3b-6165-4728-a2b1-0454cb801eb9\"\n },\n \"id\": \"4069e39e-c56c-46ff-a99b-8c7e6b80b39d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10080047\",\n \"use\": \"official\",\n \"value\": \"10080047\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T03:19:49.258149+00:00\",\n \"versionId\": \"MTY5NTY5ODM4OTI1ODE0OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T09:45:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/763fa792-50ce-4370-b6c1-2a32ad2ecd09\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 22 Juni 2023\",\n \"reference\": \"Encounter/4c43f0b9-7bd6-479c-84ee-437400b34c76\"\n },\n \"id\": \"763fa792-50ce-4370-b6c1-2a32ad2ecd09\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T02:55:29.946259+00:00\",\n \"versionId\": \"MTY5NTY5NjkyOTk0NjI1OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-22T00:01:30+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/393833e3-9f23-4afd-8621-e9e7a613d37d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/6c427666-59e8-4cfc-93dd-038c28c13378\"\n },\n \"id\": \"393833e3-9f23-4afd-8621-e9e7a613d37d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10080057\",\n \"use\": \"official\",\n \"value\": \"10080057\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T02:36:08.655573+00:00\",\n \"versionId\": \"MTY5NTY5NTc2ODY1NTU3MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/8bc76162-92a3-4f28-a47a-96d52fb8c37a\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/bdab3a14-fed6-4fe4-95bd-0736cf93b148\"\n },\n \"id\": \"8bc76162-92a3-4f28-a47a-96d52fb8c37a\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T01:36:49.771673+00:00\",\n \"versionId\": \"MTY5NTY5MjIwOTc3MTY3MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/820b3106-338a-4a0e-8ccf-dc741e6be664\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diane Smith tanggal 22 Juni 2023\",\n \"reference\": \"Encounter/78e40837-e7d2-4fcf-99fc-512b20726830\"\n },\n \"id\": \"820b3106-338a-4a0e-8ccf-dc741e6be664\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T01:34:51.116212+00:00\",\n \"versionId\": \"MTY5NTY5MjA5MTExNjIxMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Diane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-22T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/c6320042-87f6-4f55-af48-f69dc5c37b2d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/7c13703e-4e37-4c38-a3ae-9e82286e8c8c\"\n },\n \"id\": \"c6320042-87f6-4f55-af48-f69dc5c37b2d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000113\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T01:32:47.441245+00:00\",\n \"versionId\": \"MTY5NTY5MTk2NzQ0MTI0NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/407160bb-3fa5-4e8f-90e7-94dbc924f785\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/f5b82e29-2df5-4616-a337-b3382aca93c4\"\n },\n \"id\": \"407160bb-3fa5-4e8f-90e7-94dbc924f785\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T12:20:43.136810+00:00\",\n \"versionId\": \"MTY5NTY0NDQ0MzEzNjgxMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/dfa342a7-a872-4587-af3b-6e53479732cf\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/06428acd-0b87-47e7-91f1-4900a5e0210e\"\n },\n \"id\": \"dfa342a7-a872-4587-af3b-6e53479732cf\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:59:33.734153+00:00\",\n \"versionId\": \"MTY5NTY0MzE3MzczNDE1MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/32e454a1-1c5c-4950-b660-d2ace6b5ed04\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/3b22cc37-2aa8-4496-b8ca-7087ed1913d1\"\n },\n \"id\": \"32e454a1-1c5c-4950-b660-d2ace6b5ed04\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:54:21.548964+00:00\",\n \"versionId\": \"MTY5NTY0Mjg2MTU0ODk2NDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/08c9b323-2280-418d-804d-6c229a501697\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 25 September 2023\",\n \"reference\": \"Encounter/a47da552-20ed-4d3c-ab67-a9a8999088c8\"\n },\n \"id\": \"08c9b323-2280-418d-804d-6c229a501697\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:48:07.961122+00:00\",\n \"versionId\": \"MTY5NTY0MjQ4Nzk2MTEyMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-09-25T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/e0f255f1-72f4-4f4b-a78e-75eed137918d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/f31d5c50-5de5-466e-9238-78d2cfb9263d\"\n },\n \"id\": \"e0f255f1-72f4-4f4b-a78e-75eed137918d\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:46:34.011021+00:00\",\n \"versionId\": \"MTY5NTY0MjM5NDAxMTAyMTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/7d7ddc5b-9250-49fe-a418-5b9fda390b67\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"inactive\",\n \"display\": \"inActive\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/1e3c6f79-558d-4cbd-828d-bd024b05c874\"\n },\n \"id\": \"7d7ddc5b-9250-49fe-a418-5b9fda390b67\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:40:55.066969+00:00\",\n \"versionId\": \"MTY5NTY0MjA1NTA2Njk2OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/06b4285e-3ef3-4ff8-924d-b114efd5b745\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/b53f3978-b957-4763-892a-b631d1c08017\"\n },\n \"id\": \"06b4285e-3ef3-4ff8-924d-b114efd5b745\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T09:41:06.846570+00:00\",\n \"versionId\": \"MTY5NTYzNDg2Njg0NjU3MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/2deef8de-358d-4efe-9e69-46285aea6f46\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/0b6521ca-f892-45dc-a472-6c5de3dcd826\"\n },\n \"id\": \"2deef8de-358d-4efe-9e69-46285aea6f46\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T09:23:29.625053+00:00\",\n \"versionId\": \"MTY5NTYzMzgwOTYyNTA1MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/31c97423-3431-460f-bd68-e36d935a6d34\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Hanief tanggal 25 September 2023\",\n \"reference\": \"Encounter/f9b6cb75-34f4-4419-8e14-61048448e44f\"\n },\n \"id\": \"31c97423-3431-460f-bd68-e36d935a6d34\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T09:10:53.246693+00:00\",\n \"versionId\": \"MTY5NTYzMzA1MzI0NjY5MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Hanief\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-09-25T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/10009880728\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/76462530-c325-4c61-9c01-07de171a9758\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/1e3c6f79-558d-4cbd-828d-bd024b05c874\"\n },\n \"id\": \"76462530-c325-4c61-9c01-07de171a9758\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-23T07:18:49.184236+00:00\",\n \"versionId\": \"MTY5NTQ1MzUyOTE4NDIzNjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/ac915e51-5d0d-4f47-b5b9-e53789dffc37\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 6 Juni 2023\",\n \"reference\": \"Encounter/2fec61cb-e94e-4ce7-ac86-948a4c5e612b\"\n },\n \"id\": \"ac915e51-5d0d-4f47-b5b9-e53789dffc37\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-23T07:16:46.468801+00:00\",\n \"versionId\": \"MTY5NTQ1MzQwNjQ2ODgwMTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-06T08:40:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f599f6dc-76c7-4056-80f0-04001b7df7c1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/17b0e9fd-058b-4ff6-a2f6-1607ecf57e3f\"\n },\n \"id\": \"f599f6dc-76c7-4056-80f0-04001b7df7c1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-22T23:38:40.222633+00:00\",\n \"versionId\": \"MTY5NTQyNTkyMDIyMjYzMzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/18b38d8c-83a1-423e-a50b-54ed14d10781\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/1e3c6f79-558d-4cbd-828d-bd024b05c874\"\n },\n \"id\": \"18b38d8c-83a1-423e-a50b-54ed14d10781\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-22T05:24:48.823588+00:00\",\n \"versionId\": \"MTY5NTM2MDI4ODgyMzU4ODAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/ed3e1feb-c25d-4fd2-845c-d1ffce081901\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 6 Juni 2023\",\n \"reference\": \"Encounter/2fec61cb-e94e-4ce7-ac86-948a4c5e612b\"\n },\n \"id\": \"ed3e1feb-c25d-4fd2-845c-d1ffce081901\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-22T02:00:18.428454+00:00\",\n \"versionId\": \"MTY5NTM0ODAxODQyODQ1NDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-06T08:40:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/60305daf-64cb-4abf-a08d-88a47516fcc1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/6b5ed60f-02f9-4016-a0bc-135cb87c5264\"\n },\n \"id\": \"60305daf-64cb-4abf-a08d-88a47516fcc1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-06-14T08:07:57.116507+00:00\",\n \"versionId\": \"MTY4NjczMDA3NzExNjUwNzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T15:37:31+07:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f1399cf0-5589-48aa-9682-ffe366e77f49\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/a9e0b1b2-4326-47ec-9f61-2d2b7e377b5b\"\n },\n \"id\": \"f1399cf0-5589-48aa-9682-ffe366e77f49\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-06-08T06:31:08.398979+00:00\",\n \"versionId\": \"MTY4NjIwNTg2ODM5ODk3OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T08:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/685b5647-0314-4b3d-8639-82c77f55c639\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/90923d10-594f-4d82-81a9-2a5f36374aac\"\n },\n \"id\": \"685b5647-0314-4b3d-8639-82c77f55c639\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-23T04:29:42.859010+00:00\",\n \"versionId\": \"MTY4NDgxNjE4Mjg1OTAxMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T08:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/1b0d174d-9248-405f-bb3b-5c41b5efeae1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/90923d10-594f-4d82-81a9-2a5f36374aac\"\n },\n \"id\": \"1b0d174d-9248-405f-bb3b-5c41b5efeae1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-23T04:10:14.654119+00:00\",\n \"versionId\": \"MTY4NDgxNTAxNDY1NDExOTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T10:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/7cb05be9-2561-44fd-a782-da01ecfbeb62\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/aa6e2ef8-d49f-4770-869e-7d6f7f22885b\"\n },\n \"id\": \"7cb05be9-2561-44fd-a782-da01ecfbeb62\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-16T12:11:49.521322+00:00\",\n \"versionId\": \"MTY4NDIzOTEwOTUyMTMyMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T10:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/8885d112-525f-406c-88ca-be1b1cd581cc\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/8fa2c402-43dd-45ea-a3a4-ed9ac004e7e9\"\n },\n \"id\": \"8885d112-525f-406c-88ca-be1b1cd581cc\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-10T16:03:39.388827+00:00\",\n \"versionId\": \"MTY4MzczNDYxOTM4ODgyNzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T07:00:00+08:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/907c5fcd-fc46-4a76-ae0e-685dad4903cd\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/8fa2c402-43dd-45ea-a3a4-ed9ac004e7e9\"\n },\n \"id\": \"907c5fcd-fc46-4a76-ae0e-685dad4903cd\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-03T09:55:25.697022+00:00\",\n \"versionId\": \"MTY4MzEwNzcyNTY5NzAyMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T07:00:00+08:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/6ec86027-4185-4c8b-b627-56b3ae6f94a0\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/6b5ed60f-02f9-4016-a0bc-135cb87c5264\"\n },\n \"id\": \"6ec86027-4185-4c8b-b627-56b3ae6f94a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-03-28T06:08:24.966386+00:00\",\n \"versionId\": \"MTY3OTk4MzcwNDk2NjM4NjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T15:37:31+07:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/2c97ff5b-876b-4dbf-93b4-9b30a2b1b679\",\n \"resource\": {\n \"category\": [\n \"food\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"89811004\",\n \"display\": \"Gluten\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Alergi bahan gluten, khususnya ketika makan roti gandum\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/2823ed1d-3e3e-434e-9a5b-9c579d192787\"\n },\n \"id\": \"2c97ff5b-876b-4dbf-93b4-9b30a2b1b679\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-03-13T08:21:27.551218+00:00\",\n \"versionId\": \"MTY3ODY5NTY4NzU1MTIxODAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T15:37:31+07:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/?patient=100000030006\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/?patient=100000030006\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/?patient=100000030006\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 56,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "AllergyIntolerance by ID Patient",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/AllergyIntolerance?patient=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
],
"query": [
{
"key": "patient",
"value": "100000030006"
}
]
}
},
"response": [
{
"name": "AllergyIntolerance by ID Patient",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/AllergyIntolerance?patient=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
],
"query": [
{
"key": "patient",
"value": "100000030006"
}
]
}
},
"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, 19 Mar 2024 19:25:52 GMT"
},
{
"key": "Content-Length",
"value": "295360"
},
{
"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": "b71c2609-5625-470a-9746-849450f95c13"
},
{
"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/AllergyIntolerance/c6955131-f4b1-4228-980e-beca1d59b679\",\n \"resource\": {\n \"category\": [\n \"food\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c6955131-f4b1-4228-980e-beca1d59b679\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T07:22:32.930440+00:00\",\n \"versionId\": \"MTcxMDgzMjk1MjkzMDQ0MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2024-03-15T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/94ba2b8e-5aa3-4635-ab38-8cf1352cd3ed\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/155c14dc-16b5-4c81-b087-3727393aba52\"\n },\n \"id\": \"94ba2b8e-5aa3-4635-ab38-8cf1352cd3ed\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085396\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T13:09:17.104823+00:00\",\n \"versionId\": \"MTcwMjQ3Mjk1NzEwNDgyMzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-12-11T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b3527077-9af8-4fea-b12f-3c5f405ae525\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/f53c0b92-1d83-4cc9-8e25-aea8845f6f26\"\n },\n \"id\": \"b3527077-9af8-4fea-b12f-3c5f405ae525\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T09:30:22.901675+00:00\",\n \"versionId\": \"MTcwMjQ1OTgyMjkwMTY3NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-12-13T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/09550531-16a2-41bc-bb34-806910a7e4b0\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/65e7703f-4c58-4264-b7ac-246601e4a6a3\"\n },\n \"id\": \"09550531-16a2-41bc-bb34-806910a7e4b0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000141\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T09:19:49.967897+00:00\",\n \"versionId\": \"MTcwMjQ1OTE4OTk2Nzg5NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-12-13T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/3e3cb428-3fd6-43c7-ad48-a80b1093fc67\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/c565d456-5063-4abc-b5ce-b98d624c5a33\"\n },\n \"id\": \"3e3cb428-3fd6-43c7-ad48-a80b1093fc67\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/7ae1c831-8a98-48d7-a197-8207ca13ee79\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T08:18:42.329161+00:00\",\n \"versionId\": \"MTcwMjQ1NTUyMjMyOTE2MTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/dabf9dcf-d0ff-43cb-9aba-199a6787ea38\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/8688e37b-a85d-4a55-87d0-db762b448de9\"\n },\n \"id\": \"dabf9dcf-d0ff-43cb-9aba-199a6787ea38\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/d24913a1-dd01-4ffa-a0b0-ad452cf1ddd0\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T08:15:59.797148+00:00\",\n \"versionId\": \"MTcwMjQ1NTM1OTc5NzE0ODAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f6b18ae1-1732-4e9e-b8e2-b354a44efe70\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/3a0b6fa4-ce64-4d0c-9c77-e42e4a9a60b8\"\n },\n \"id\": \"f6b18ae1-1732-4e9e-b8e2-b354a44efe70\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085384\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T08:09:09.016777+00:00\",\n \"versionId\": \"MTcwMjQ1NDk0OTAxNjc3NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b77c2ff0-92d9-4cc5-a7d6-1424967d4509\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/a537ad9b-7261-4299-984e-ca6b7fe18ad4\"\n },\n \"id\": \"b77c2ff0-92d9-4cc5-a7d6-1424967d4509\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T06:59:12.733902+00:00\",\n \"versionId\": \"MTcwMjQ1MDc1MjczMzkwMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/34a4fdd9-9cd6-4bd8-b0e8-030b204cb88f\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/10a75a1d-cc4e-4fd2-aa62-665dcd9cdf7a\"\n },\n \"id\": \"34a4fdd9-9cd6-4bd8-b0e8-030b204cb88f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/4a79820b-46d3-4e52-ad09-e748f8b47c7f\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-12T16:29:21.561252+00:00\",\n \"versionId\": \"MTcwMjM5ODU2MTU2MTI1MjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f3d03c7e-44af-4132-963b-ddee28184da8\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diana Smith di hari Kamis, 25 Desember 2022\",\n \"reference\": \"Encounter/65f28fae-0fd9-4a27-9c3d-1b9b41d544d4\"\n },\n \"id\": \"f3d03c7e-44af-4132-963b-ddee28184da8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"10085104\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-21T08:33:43.621724+00:00\",\n \"versionId\": \"MTcwMDU1NTYyMzYyMTcyNDAwMA\"\n },\n \"patient\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-12-25T08:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5536abc1-6dcc-4370-a574-b7b8b931f573\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diana Smith 4 Juli 2023\",\n \"reference\": \"Encounter/cfc22889-755d-41ac-9dcd-f55893b3631d\"\n },\n \"id\": \"5536abc1-6dcc-4370-a574-b7b8b931f573\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"P20240002\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-21T07:13:34.768820+00:00\",\n \"versionId\": \"MTcwMDU1MDgxNDc2ODgyMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-07-04T09:30:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/41e2a4a2-4a7b-4a97-9cb7-01d49cfb52c1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diana Smith 4 Juli 2023\",\n \"reference\": \"Encounter/cfc22889-755d-41ac-9dcd-f55893b3631d\"\n },\n \"id\": \"41e2a4a2-4a7b-4a97-9cb7-01d49cfb52c1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"P20240001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-21T07:03:09.641026+00:00\",\n \"versionId\": \"MTcwMDU1MDE4OTY0MTAyNjAwMA\"\n },\n \"patient\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-07-04T09:30:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/dd87ba9d-5dd8-4538-b660-ea7d00d2a9bf\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/b2521638-4de9-43b8-bf5b-8eb5da1cfcc7\"\n },\n \"id\": \"dd87ba9d-5dd8-4538-b660-ea7d00d2a9bf\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T22:21:57.365820+00:00\",\n \"versionId\": \"MTcwMDUxODkxNzM2NTgyMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/7c5ae8a4-f40f-4d62-a6db-57133d816039\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/fb058732-308f-48ba-9e16-ef6593680ff6\"\n },\n \"id\": \"7c5ae8a4-f40f-4d62-a6db-57133d816039\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000079\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T15:34:36.958182+00:00\",\n \"versionId\": \"MTcwMDQ5NDQ3Njk1ODE4MjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5a15a515-97a5-45c5-8993-51b83089f5ca\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/9deed3a4-f191-4035-a29a-a2d469124d75\"\n },\n \"id\": \"5a15a515-97a5-45c5-8993-51b83089f5ca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:49:25.898306+00:00\",\n \"versionId\": \"MTcwMDQ4ODE2NTg5ODMwNjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/434bee15-81dc-4021-8c0c-bbc18011f287\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/9beba5c6-0ebf-467c-8c12-00f977de81f\"\n },\n \"id\": \"434bee15-81dc-4021-8c0c-bbc18011f287\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:31:31.521414+00:00\",\n \"versionId\": \"MTcwMDQ4NzA5MTUyMTQxNDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/18670a52-07c8-46dd-a7dc-5854511271a6\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/69cc7d45-d836-4bf5-bc81-becac68cc897\"\n },\n \"id\": \"18670a52-07c8-46dd-a7dc-5854511271a6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:06:20.254183+00:00\",\n \"versionId\": \"MTcwMDQ4NTU4MDI1NDE4MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/588e6507-156f-4d56-9bba-5ae7715e9292\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/36edbb95-c9d7-4da3-abd8-c61961a72de5\"\n },\n \"id\": \"588e6507-156f-4d56-9bba-5ae7715e9292\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000141\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:01:58.642886+00:00\",\n \"versionId\": \"MTcwMDQ4NTMxODY0Mjg4NjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/c4c1cf79-22bf-4325-aa19-ac56df6ca8a6\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/614bca61-cf87-4a41-a956-b8e66468a5f3\"\n },\n \"id\": \"c4c1cf79-22bf-4325-aa19-ac56df6ca8a6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:55:59.675175+00:00\",\n \"versionId\": \"MTcwMDQ4NDk1OTY3NTE3NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/8c227d0e-8690-45f4-9372-29fc231c234a\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/dcf000dc-3055-4f8e-aaa9-f03896adabcc\"\n },\n \"id\": \"8c227d0e-8690-45f4-9372-29fc231c234a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000083\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:52:23.282757+00:00\",\n \"versionId\": \"MTcwMDQ4NDc0MzI4Mjc1NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/1ef31f88-679f-4b5f-9dbf-e198b618fcf2\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/efb1d066-ce30-4ef1-ac43-682ab32834ed\"\n },\n \"id\": \"1ef31f88-679f-4b5f-9dbf-e198b618fcf2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:44:14.952612+00:00\",\n \"versionId\": \"MTcwMDQ4NDI1NDk1MjYxMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/94e9937c-ef63-4ece-9e3c-9d537a584a45\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/11f3491c-7e39-46d6-9676-1c75a30feadc\"\n },\n \"id\": \"94e9937c-ef63-4ece-9e3c-9d537a584a45\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:43:37.392721+00:00\",\n \"versionId\": \"MTcwMDQ4NDIxNzM5MjcyMTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5c7cf66d-e474-4ba7-9c57-ff8df2adb3ea\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Rabu, 31 Agustus 2022\",\n \"reference\": \"Encounter/10a75a1d-cc4e-4fd2-aa62-665dcd9cdf7a\"\n },\n \"id\": \"5c7cf66d-e474-4ba7-9c57-ff8df2adb3ea\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-09T08:01:16.165113+00:00\",\n \"versionId\": \"MTY5OTUxNjg3NjE2NTExMzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b17dad32-8af1-4922-a6d2-a974b34c43bf\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 22 Desember 2022\",\n \"reference\": \"Encounter/2d69d1fe-268f-4ae1-8cfe-4262c96ecac5\"\n },\n \"id\": \"b17dad32-8af1-4922-a6d2-a974b34c43bf\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10080039\",\n \"use\": \"official\",\n \"value\": \"10080039\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T06:37:02.950595+00:00\",\n \"versionId\": \"MTY5NTcxMDIyMjk1MDU5NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-12-22T08:30:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5b41cfd8-594f-426b-9cb6-4f3a341c5417\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/8fa99d9a-e3a0-49af-940d-58e35aa9b029\"\n },\n \"id\": \"5b41cfd8-594f-426b-9cb6-4f3a341c5417\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T04:57:06.721083+00:00\",\n \"versionId\": \"MTY5NTcwNDIyNjcyMTA4MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/51cff8cf-ab08-457c-9dfd-dd84e0ef0679\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/91fcdefb-993f-43f4-bba0-7de7126a941a\"\n },\n \"id\": \"51cff8cf-ab08-457c-9dfd-dd84e0ef0679\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T03:51:16.237440+00:00\",\n \"versionId\": \"MTY5NTcwMDI3NjIzNzQ0MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/3bb6a486-e46e-4602-a3c0-e0f118a4689a\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 6 Juni 2023\",\n \"reference\": \"Encounter/943ea4b5-bd21-4d68-8ab7-52a336d0ff57\"\n },\n \"id\": \"3bb6a486-e46e-4602-a3c0-e0f118a4689a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T03:19:55.442137+00:00\",\n \"versionId\": \"MTY5NTY5ODM5NTQ0MjEzNzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/4069e39e-c56c-46ff-a99b-8c7e6b80b39d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/9eb8ab3b-6165-4728-a2b1-0454cb801eb9\"\n },\n \"id\": \"4069e39e-c56c-46ff-a99b-8c7e6b80b39d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10080047\",\n \"use\": \"official\",\n \"value\": \"10080047\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T03:19:49.258149+00:00\",\n \"versionId\": \"MTY5NTY5ODM4OTI1ODE0OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T09:45:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/763fa792-50ce-4370-b6c1-2a32ad2ecd09\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 22 Juni 2023\",\n \"reference\": \"Encounter/4c43f0b9-7bd6-479c-84ee-437400b34c76\"\n },\n \"id\": \"763fa792-50ce-4370-b6c1-2a32ad2ecd09\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T02:55:29.946259+00:00\",\n \"versionId\": \"MTY5NTY5NjkyOTk0NjI1OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-22T00:01:30+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/393833e3-9f23-4afd-8621-e9e7a613d37d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/6c427666-59e8-4cfc-93dd-038c28c13378\"\n },\n \"id\": \"393833e3-9f23-4afd-8621-e9e7a613d37d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10080057\",\n \"use\": \"official\",\n \"value\": \"10080057\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T02:36:08.655573+00:00\",\n \"versionId\": \"MTY5NTY5NTc2ODY1NTU3MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/8bc76162-92a3-4f28-a47a-96d52fb8c37a\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/bdab3a14-fed6-4fe4-95bd-0736cf93b148\"\n },\n \"id\": \"8bc76162-92a3-4f28-a47a-96d52fb8c37a\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T01:36:49.771673+00:00\",\n \"versionId\": \"MTY5NTY5MjIwOTc3MTY3MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/820b3106-338a-4a0e-8ccf-dc741e6be664\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diane Smith tanggal 22 Juni 2023\",\n \"reference\": \"Encounter/78e40837-e7d2-4fcf-99fc-512b20726830\"\n },\n \"id\": \"820b3106-338a-4a0e-8ccf-dc741e6be664\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T01:34:51.116212+00:00\",\n \"versionId\": \"MTY5NTY5MjA5MTExNjIxMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Diane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-22T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/c6320042-87f6-4f55-af48-f69dc5c37b2d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/7c13703e-4e37-4c38-a3ae-9e82286e8c8c\"\n },\n \"id\": \"c6320042-87f6-4f55-af48-f69dc5c37b2d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000113\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T01:32:47.441245+00:00\",\n \"versionId\": \"MTY5NTY5MTk2NzQ0MTI0NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/407160bb-3fa5-4e8f-90e7-94dbc924f785\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/f5b82e29-2df5-4616-a337-b3382aca93c4\"\n },\n \"id\": \"407160bb-3fa5-4e8f-90e7-94dbc924f785\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T12:20:43.136810+00:00\",\n \"versionId\": \"MTY5NTY0NDQ0MzEzNjgxMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/dfa342a7-a872-4587-af3b-6e53479732cf\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/06428acd-0b87-47e7-91f1-4900a5e0210e\"\n },\n \"id\": \"dfa342a7-a872-4587-af3b-6e53479732cf\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:59:33.734153+00:00\",\n \"versionId\": \"MTY5NTY0MzE3MzczNDE1MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/32e454a1-1c5c-4950-b660-d2ace6b5ed04\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/3b22cc37-2aa8-4496-b8ca-7087ed1913d1\"\n },\n \"id\": \"32e454a1-1c5c-4950-b660-d2ace6b5ed04\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:54:21.548964+00:00\",\n \"versionId\": \"MTY5NTY0Mjg2MTU0ODk2NDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/08c9b323-2280-418d-804d-6c229a501697\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 25 September 2023\",\n \"reference\": \"Encounter/a47da552-20ed-4d3c-ab67-a9a8999088c8\"\n },\n \"id\": \"08c9b323-2280-418d-804d-6c229a501697\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:48:07.961122+00:00\",\n \"versionId\": \"MTY5NTY0MjQ4Nzk2MTEyMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-09-25T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/e0f255f1-72f4-4f4b-a78e-75eed137918d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/f31d5c50-5de5-466e-9238-78d2cfb9263d\"\n },\n \"id\": \"e0f255f1-72f4-4f4b-a78e-75eed137918d\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:46:34.011021+00:00\",\n \"versionId\": \"MTY5NTY0MjM5NDAxMTAyMTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/7d7ddc5b-9250-49fe-a418-5b9fda390b67\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"inactive\",\n \"display\": \"inActive\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/1e3c6f79-558d-4cbd-828d-bd024b05c874\"\n },\n \"id\": \"7d7ddc5b-9250-49fe-a418-5b9fda390b67\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:40:55.066969+00:00\",\n \"versionId\": \"MTY5NTY0MjA1NTA2Njk2OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/06b4285e-3ef3-4ff8-924d-b114efd5b745\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/b53f3978-b957-4763-892a-b631d1c08017\"\n },\n \"id\": \"06b4285e-3ef3-4ff8-924d-b114efd5b745\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T09:41:06.846570+00:00\",\n \"versionId\": \"MTY5NTYzNDg2Njg0NjU3MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/2deef8de-358d-4efe-9e69-46285aea6f46\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/0b6521ca-f892-45dc-a472-6c5de3dcd826\"\n },\n \"id\": \"2deef8de-358d-4efe-9e69-46285aea6f46\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T09:23:29.625053+00:00\",\n \"versionId\": \"MTY5NTYzMzgwOTYyNTA1MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/31c97423-3431-460f-bd68-e36d935a6d34\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Hanief tanggal 25 September 2023\",\n \"reference\": \"Encounter/f9b6cb75-34f4-4419-8e14-61048448e44f\"\n },\n \"id\": \"31c97423-3431-460f-bd68-e36d935a6d34\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T09:10:53.246693+00:00\",\n \"versionId\": \"MTY5NTYzMzA1MzI0NjY5MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Hanief\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-09-25T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/10009880728\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/76462530-c325-4c61-9c01-07de171a9758\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/1e3c6f79-558d-4cbd-828d-bd024b05c874\"\n },\n \"id\": \"76462530-c325-4c61-9c01-07de171a9758\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-23T07:18:49.184236+00:00\",\n \"versionId\": \"MTY5NTQ1MzUyOTE4NDIzNjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/ac915e51-5d0d-4f47-b5b9-e53789dffc37\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 6 Juni 2023\",\n \"reference\": \"Encounter/2fec61cb-e94e-4ce7-ac86-948a4c5e612b\"\n },\n \"id\": \"ac915e51-5d0d-4f47-b5b9-e53789dffc37\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-23T07:16:46.468801+00:00\",\n \"versionId\": \"MTY5NTQ1MzQwNjQ2ODgwMTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-06T08:40:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f599f6dc-76c7-4056-80f0-04001b7df7c1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/17b0e9fd-058b-4ff6-a2f6-1607ecf57e3f\"\n },\n \"id\": \"f599f6dc-76c7-4056-80f0-04001b7df7c1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-22T23:38:40.222633+00:00\",\n \"versionId\": \"MTY5NTQyNTkyMDIyMjYzMzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/18b38d8c-83a1-423e-a50b-54ed14d10781\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/1e3c6f79-558d-4cbd-828d-bd024b05c874\"\n },\n \"id\": \"18b38d8c-83a1-423e-a50b-54ed14d10781\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-22T05:24:48.823588+00:00\",\n \"versionId\": \"MTY5NTM2MDI4ODgyMzU4ODAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/ed3e1feb-c25d-4fd2-845c-d1ffce081901\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 6 Juni 2023\",\n \"reference\": \"Encounter/2fec61cb-e94e-4ce7-ac86-948a4c5e612b\"\n },\n \"id\": \"ed3e1feb-c25d-4fd2-845c-d1ffce081901\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-22T02:00:18.428454+00:00\",\n \"versionId\": \"MTY5NTM0ODAxODQyODQ1NDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-06T08:40:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/60305daf-64cb-4abf-a08d-88a47516fcc1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/6b5ed60f-02f9-4016-a0bc-135cb87c5264\"\n },\n \"id\": \"60305daf-64cb-4abf-a08d-88a47516fcc1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-06-14T08:07:57.116507+00:00\",\n \"versionId\": \"MTY4NjczMDA3NzExNjUwNzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T15:37:31+07:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f1399cf0-5589-48aa-9682-ffe366e77f49\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/a9e0b1b2-4326-47ec-9f61-2d2b7e377b5b\"\n },\n \"id\": \"f1399cf0-5589-48aa-9682-ffe366e77f49\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-06-08T06:31:08.398979+00:00\",\n \"versionId\": \"MTY4NjIwNTg2ODM5ODk3OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T08:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/685b5647-0314-4b3d-8639-82c77f55c639\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/90923d10-594f-4d82-81a9-2a5f36374aac\"\n },\n \"id\": \"685b5647-0314-4b3d-8639-82c77f55c639\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-23T04:29:42.859010+00:00\",\n \"versionId\": \"MTY4NDgxNjE4Mjg1OTAxMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T08:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/1b0d174d-9248-405f-bb3b-5c41b5efeae1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/90923d10-594f-4d82-81a9-2a5f36374aac\"\n },\n \"id\": \"1b0d174d-9248-405f-bb3b-5c41b5efeae1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-23T04:10:14.654119+00:00\",\n \"versionId\": \"MTY4NDgxNTAxNDY1NDExOTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T10:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/7cb05be9-2561-44fd-a782-da01ecfbeb62\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/aa6e2ef8-d49f-4770-869e-7d6f7f22885b\"\n },\n \"id\": \"7cb05be9-2561-44fd-a782-da01ecfbeb62\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-16T12:11:49.521322+00:00\",\n \"versionId\": \"MTY4NDIzOTEwOTUyMTMyMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T10:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/8885d112-525f-406c-88ca-be1b1cd581cc\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/8fa2c402-43dd-45ea-a3a4-ed9ac004e7e9\"\n },\n \"id\": \"8885d112-525f-406c-88ca-be1b1cd581cc\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-10T16:03:39.388827+00:00\",\n \"versionId\": \"MTY4MzczNDYxOTM4ODgyNzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T07:00:00+08:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/907c5fcd-fc46-4a76-ae0e-685dad4903cd\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/8fa2c402-43dd-45ea-a3a4-ed9ac004e7e9\"\n },\n \"id\": \"907c5fcd-fc46-4a76-ae0e-685dad4903cd\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-03T09:55:25.697022+00:00\",\n \"versionId\": \"MTY4MzEwNzcyNTY5NzAyMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T07:00:00+08:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/6ec86027-4185-4c8b-b627-56b3ae6f94a0\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/6b5ed60f-02f9-4016-a0bc-135cb87c5264\"\n },\n \"id\": \"6ec86027-4185-4c8b-b627-56b3ae6f94a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-03-28T06:08:24.966386+00:00\",\n \"versionId\": \"MTY3OTk4MzcwNDk2NjM4NjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T15:37:31+07:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/2c97ff5b-876b-4dbf-93b4-9b30a2b1b679\",\n \"resource\": {\n \"category\": [\n \"food\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"89811004\",\n \"display\": \"Gluten\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Alergi bahan gluten, khususnya ketika makan roti gandum\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/2823ed1d-3e3e-434e-9a5b-9c579d192787\"\n },\n \"id\": \"2c97ff5b-876b-4dbf-93b4-9b30a2b1b679\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-03-13T08:21:27.551218+00:00\",\n \"versionId\": \"MTY3ODY5NTY4NzU1MTIxODAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T15:37:31+07:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/?patient=100000030006\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/?patient=100000030006\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/?patient=100000030006\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 56,\n \"type\": \"searchset\"\n}"
}
]
}
]
},
{
"name": "Riwayat Pengobatan",
"item": [
{
"name": "Obat dari Fasyankes Sendiri",
"item": [
{
"name": "MedicationDispense - Search by Subject",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense?subject=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
],
"query": [
{
"key": "subject",
"value": "100000030006"
}
]
}
},
"response": [
{
"name": "MedicationDispense - Search by Subject",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/MedicationDispense?subject=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
],
"query": [
{
"key": "subject",
"value": "100000030006"
}
]
}
},
"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, 14 May 2024 00:55:05 GMT"
},
{
"key": "content-length",
"value": "31088"
},
{
"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": "e7e27159-ee0b-403f-a1f5-f538eddbebe9"
},
{
"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/MedicationDispense/928db3aa-7087-414e-8acb-3c8a1aff373a\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/59395a17-306d-4941-9e2e-d11765115572\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024041931420-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024041931420-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/10000004\"\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/9d3b8d8a-bc0d-4054-958e-8b106bab6240\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"coding\": [\n {\n \"code\": \"421984009\",\n \"display\": \"Until finished\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Diminum setiap hari sampai habis\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"Jika muncul gejala ruam atau gatal, hubungi IGD RS secepatnya\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"928db3aa-7087-414e-8acb-3c8a1aff373a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024041931420-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-04-19T10:17:42.171297+00:00\",\n \"versionId\": \"MTcxMzUyMTg2MjE3MTI5NzAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/6860499d-da49-4ec7-b699-17bbcb26359e\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/ecaefdbf-3a43-4fdb-8400-7cdde675ba96\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge003\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93020397\",\n \"display\": \"Ibuprofen 400 mg Tablet (PHAPROS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-med003\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"IB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \" 1 kapsul; 3x; Tiap 1 hari; Setelah makan\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"6860499d-da49-4ec7-b699-17bbcb26359e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Ibuprofen 400mg\",\n \"reference\": \"#2024032201944-med003\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:33.928579+00:00\",\n \"versionId\": \"MTcxMTA4MzIxMzkyODU3OTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 15\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/9ddf4471-e729-47d3-a4a7-6d8fc0c4aff1\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/59395a17-306d-4941-9e2e-d11765115572\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge002\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93009470\",\n \"display\": \"Paracetamol 350 mg / Caffeine 50 mg / Ibuprofen 200 mg Tablet (FARSIFEN PLUS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-002\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"PCT001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000101\",\n \"display\": \"Paracetamol\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 350\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000884\",\n \"display\": \"Caffeine\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 50\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 200\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1x1 Tablet per 8 jam, Setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 8,\n \"periodUnit\": \"h\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"9ddf4471-e729-47d3-a4a7-6d8fc0c4aff1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Obat Paracetamol Extra\",\n \"reference\": \"#2024032201944-002\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:19.603965+00:00\",\n \"versionId\": \"MTcxMTA4MzE5OTYwMzk2NTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 10\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/56c173c8-8200-450a-94de-28ee26b53f97\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/08dbc0be-cbac-41a7-ad58-dc5d5f5477e1\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"3 kapsul per hari, diminum setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"56c173c8-8200-450a-94de-28ee26b53f97\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024032201944-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:01.686104+00:00\",\n \"versionId\": \"MTcxMTA4MzE4MTY4NjEwNDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/f89b52ed-f0b4-4595-a7d5-8f5f1583dd9b\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/4b94218d-897b-46b5-ae6c-e5c492e34ee3\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge003\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93020397\",\n \"display\": \"Ibuprofen 400 mg Tablet (PHAPROS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-med003\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"IB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \" 1 kapsul; 3x; Tiap 1 hari; Setelah makan\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"f89b52ed-f0b4-4595-a7d5-8f5f1583dd9b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Ibuprofen 400mg\",\n \"reference\": \"#2024032128460-med003\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:18:48.311454+00:00\",\n \"versionId\": \"MTcxMDk5MTEyODMxMTQ1NDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 15\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/7f4244b3-8560-414d-88b1-70cebd0373cb\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/df03ac28-df55-4814-9b7c-98d2cbf304f4\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge002\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93009470\",\n \"display\": \"Paracetamol 350 mg / Caffeine 50 mg / Ibuprofen 200 mg Tablet (FARSIFEN PLUS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-002\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"PCT001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000101\",\n \"display\": \"Paracetamol\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 350\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000884\",\n \"display\": \"Caffeine\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 50\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 200\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1x1 Tablet per 8 jam, Setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 8,\n \"periodUnit\": \"h\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"7f4244b3-8560-414d-88b1-70cebd0373cb\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Obat Paracetamol Extra\",\n \"reference\": \"#2024032128460-002\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:13:56.474784+00:00\",\n \"versionId\": \"MTcxMDk5MDgzNjQ3NDc4NDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 10\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/897c8a05-e1e6-442b-baa7-2983373013d4\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/de1837bc-a267-40f2-a6d8-006b59fd9a48\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"3 kapsul per hari, diminum setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"897c8a05-e1e6-442b-baa7-2983373013d4\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024032128460-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:06:38.548381+00:00\",\n \"versionId\": \"MTcxMDk5MDM5ODU0ODM4MTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/b8984d91-295a-41ab-8b58-4d38e64d6b64\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/f430fdde-93d8-4dc8-9787-9f0f822cbd70\"\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 \"context\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"Day\",\n \"value\": 30\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\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 \"text\": \"1 tablet per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"id\": \"b8984d91-295a-41ab-8b58-4d38e64d6b64\",\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\": \"Apotek Puskesmas SATUSEHAT\",\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\"\n },\n \"medicationReference\": {\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\n \"reference\": \"Medication/52bb4a95-2699-4ce7-bffd-fa28bf5fec3f\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:10:32.443208+00:00\",\n \"versionId\": \"MTcxMDg3MTgzMjQ0MzIwODAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"John Miller\",\n \"reference\": \"Practitioner/N10000003\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"value\": 30\n },\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2024-03-15T03:14:00+00:00\",\n \"whenPrepared\": \"2024-03-15T03:11:00+00:00\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n },\n {\n \"relation\": \"next\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006&_page_token=AfOl5oVKHgcwUUOf5ykPQ_wx5YRmr0PG-1aX9mbdqeV9neFS3HBth6loZnTq0Cd3H4B14Yg7kiyxYAW66l3K78E4BrZh6J73MVmOYM27dRbsh4tPFk2SGqcOUhU-PwJq2L9d6spvRnOuN0i7R73ZCWAxarirFgWjVg667Ke0DUsddJ8GO3QkJ833Lr7tuo_xDSyWv4EU1P4Cre-8O_gFnikJN9vvyPQ%3D\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 8,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat dari Fasyankes Sendiri)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\",\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-15T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"response": [
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat dari Fasyankes Sendiri)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\",\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-15T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"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/MedicationStatement/708713b9-d9d2-4fb7-88fd-de4a0fbbc64e/_history/MTcxNTY0ODk4MzE2MTM3NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0ODk4MzE2MTM3NDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:09:43 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:09:43 GMT"
},
{
"key": "content-length",
"value": "971"
},
{
"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": "ec2e37c2-b1d8-4ce6-8633-80e2d605d234"
},
{
"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\": \"outpatient\",\n \"display\": \"Outpatient\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\"\n }\n ]\n },\n \"context\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"dateAsserted\": \"2024-03-15T02:19:00+00:00\",\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:19:00+00:00\",\n \"id\": \"708713b9-d9d2-4fb7-88fd-de4a0fbbc64e\",\n \"identifier\": [],\n \"informationSource\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"medicationReference\": {\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\",\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:09:43.161374+00:00\",\n \"versionId\": \"MTcxNTY0ODk4MzE2MTM3NDAwMA\"\n },\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat dari Fasyankes Sendiri)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\",\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-15T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"response": [
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat dari Fasyankes Sendiri)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\",\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-15T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"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/MedicationStatement/708713b9-d9d2-4fb7-88fd-de4a0fbbc64e/_history/MTcxNTY0ODk4MzE2MTM3NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0ODk4MzE2MTM3NDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:09:43 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:09:43 GMT"
},
{
"key": "content-length",
"value": "971"
},
{
"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": "ec2e37c2-b1d8-4ce6-8633-80e2d605d234"
},
{
"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\": \"outpatient\",\n \"display\": \"Outpatient\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\"\n }\n ]\n },\n \"context\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"dateAsserted\": \"2024-03-15T02:19:00+00:00\",\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:19:00+00:00\",\n \"id\": \"708713b9-d9d2-4fb7-88fd-de4a0fbbc64e\",\n \"identifier\": [],\n \"informationSource\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"medicationReference\": {\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\",\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:09:43.161374+00:00\",\n \"versionId\": \"MTcxNTY0ODk4MzE2MTM3NDAwMA\"\n },\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "MedicationDispense - Search by Subject",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense?subject=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
],
"query": [
{
"key": "subject",
"value": "100000030006"
}
]
}
},
"response": [
{
"name": "MedicationDispense - Search by Subject",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/MedicationDispense?subject=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
],
"query": [
{
"key": "subject",
"value": "100000030006"
}
]
}
},
"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, 14 May 2024 00:55:05 GMT"
},
{
"key": "content-length",
"value": "31088"
},
{
"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": "e7e27159-ee0b-403f-a1f5-f538eddbebe9"
},
{
"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/MedicationDispense/928db3aa-7087-414e-8acb-3c8a1aff373a\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/59395a17-306d-4941-9e2e-d11765115572\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024041931420-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024041931420-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/10000004\"\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/9d3b8d8a-bc0d-4054-958e-8b106bab6240\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"coding\": [\n {\n \"code\": \"421984009\",\n \"display\": \"Until finished\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Diminum setiap hari sampai habis\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"Jika muncul gejala ruam atau gatal, hubungi IGD RS secepatnya\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"928db3aa-7087-414e-8acb-3c8a1aff373a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024041931420-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-04-19T10:17:42.171297+00:00\",\n \"versionId\": \"MTcxMzUyMTg2MjE3MTI5NzAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/6860499d-da49-4ec7-b699-17bbcb26359e\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/ecaefdbf-3a43-4fdb-8400-7cdde675ba96\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge003\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93020397\",\n \"display\": \"Ibuprofen 400 mg Tablet (PHAPROS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-med003\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"IB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \" 1 kapsul; 3x; Tiap 1 hari; Setelah makan\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"6860499d-da49-4ec7-b699-17bbcb26359e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Ibuprofen 400mg\",\n \"reference\": \"#2024032201944-med003\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:33.928579+00:00\",\n \"versionId\": \"MTcxMTA4MzIxMzkyODU3OTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 15\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/9ddf4471-e729-47d3-a4a7-6d8fc0c4aff1\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/59395a17-306d-4941-9e2e-d11765115572\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge002\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93009470\",\n \"display\": \"Paracetamol 350 mg / Caffeine 50 mg / Ibuprofen 200 mg Tablet (FARSIFEN PLUS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-002\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"PCT001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000101\",\n \"display\": \"Paracetamol\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 350\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000884\",\n \"display\": \"Caffeine\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 50\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 200\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1x1 Tablet per 8 jam, Setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 8,\n \"periodUnit\": \"h\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"9ddf4471-e729-47d3-a4a7-6d8fc0c4aff1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Obat Paracetamol Extra\",\n \"reference\": \"#2024032201944-002\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:19.603965+00:00\",\n \"versionId\": \"MTcxMTA4MzE5OTYwMzk2NTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 10\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/56c173c8-8200-450a-94de-28ee26b53f97\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/08dbc0be-cbac-41a7-ad58-dc5d5f5477e1\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"3 kapsul per hari, diminum setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"56c173c8-8200-450a-94de-28ee26b53f97\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024032201944-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:01.686104+00:00\",\n \"versionId\": \"MTcxMTA4MzE4MTY4NjEwNDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/f89b52ed-f0b4-4595-a7d5-8f5f1583dd9b\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/4b94218d-897b-46b5-ae6c-e5c492e34ee3\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge003\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93020397\",\n \"display\": \"Ibuprofen 400 mg Tablet (PHAPROS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-med003\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"IB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \" 1 kapsul; 3x; Tiap 1 hari; Setelah makan\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"f89b52ed-f0b4-4595-a7d5-8f5f1583dd9b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Ibuprofen 400mg\",\n \"reference\": \"#2024032128460-med003\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:18:48.311454+00:00\",\n \"versionId\": \"MTcxMDk5MTEyODMxMTQ1NDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 15\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/7f4244b3-8560-414d-88b1-70cebd0373cb\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/df03ac28-df55-4814-9b7c-98d2cbf304f4\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge002\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93009470\",\n \"display\": \"Paracetamol 350 mg / Caffeine 50 mg / Ibuprofen 200 mg Tablet (FARSIFEN PLUS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-002\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"PCT001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000101\",\n \"display\": \"Paracetamol\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 350\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000884\",\n \"display\": \"Caffeine\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 50\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 200\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1x1 Tablet per 8 jam, Setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 8,\n \"periodUnit\": \"h\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"7f4244b3-8560-414d-88b1-70cebd0373cb\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Obat Paracetamol Extra\",\n \"reference\": \"#2024032128460-002\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:13:56.474784+00:00\",\n \"versionId\": \"MTcxMDk5MDgzNjQ3NDc4NDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 10\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/897c8a05-e1e6-442b-baa7-2983373013d4\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/de1837bc-a267-40f2-a6d8-006b59fd9a48\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"3 kapsul per hari, diminum setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"897c8a05-e1e6-442b-baa7-2983373013d4\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024032128460-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:06:38.548381+00:00\",\n \"versionId\": \"MTcxMDk5MDM5ODU0ODM4MTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/b8984d91-295a-41ab-8b58-4d38e64d6b64\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/f430fdde-93d8-4dc8-9787-9f0f822cbd70\"\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 \"context\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"Day\",\n \"value\": 30\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\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 \"text\": \"1 tablet per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"id\": \"b8984d91-295a-41ab-8b58-4d38e64d6b64\",\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\": \"Apotek Puskesmas SATUSEHAT\",\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\"\n },\n \"medicationReference\": {\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\n \"reference\": \"Medication/52bb4a95-2699-4ce7-bffd-fa28bf5fec3f\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:10:32.443208+00:00\",\n \"versionId\": \"MTcxMDg3MTgzMjQ0MzIwODAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"John Miller\",\n \"reference\": \"Practitioner/N10000003\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"value\": 30\n },\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2024-03-15T03:14:00+00:00\",\n \"whenPrepared\": \"2024-03-15T03:11:00+00:00\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n },\n {\n \"relation\": \"next\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006&_page_token=AfOl5oVKHgcwUUOf5ykPQ_wx5YRmr0PG-1aX9mbdqeV9neFS3HBth6loZnTq0Cd3H4B14Yg7kiyxYAW66l3K78E4BrZh6J73MVmOYM27dRbsh4tPFk2SGqcOUhU-PwJq2L9d6spvRnOuN0i7R73ZCWAxarirFgWjVg667Ke0DUsddJ8GO3QkJ833Lr7tuo_xDSyWv4EU1P4Cre-8O_gFnikJN9vvyPQ%3D\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 8,\n \"type\": \"searchset\"\n}"
}
]
}
]
},
{
"name": "Obat bukan dari Fasyankes Sendiri",
"item": [
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat bukan dari Fasyankes Sendiri)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-15T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"response": [
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat bukan dari Fasyankes Sendiri)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-15T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:10:48 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0OTA0ODU1MDQyMDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/MedicationStatement/83fe07a3-0554-43ad-b25e-9c01c004b008/_history/MTcxNTY0OTA0ODU1MDQyMDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:10:48 GMT"
},
{
"key": "content-length",
"value": "955"
},
{
"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": "f1dd9fb3-8032-4b69-b058-07c0f9710bd1"
},
{
"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\": \"outpatient\",\n \"display\": \"Outpatient\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\"\n }\n ]\n },\n \"context\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"dateAsserted\": \"2024-03-15T02:19:00+00:00\",\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:19:00+00:00\",\n \"id\": \"83fe07a3-0554-43ad-b25e-9c01c004b008\",\n \"identifier\": [],\n \"informationSource\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:10:48.550420+00:00\",\n \"versionId\": \"MTcxNTY0OTA0ODU1MDQyMDAwMA\"\n },\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat bukan dari Fasyankes Sendiri)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-15T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"response": [
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat bukan dari Fasyankes Sendiri)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-15T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:10:48 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0OTA0ODU1MDQyMDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/MedicationStatement/83fe07a3-0554-43ad-b25e-9c01c004b008/_history/MTcxNTY0OTA0ODU1MDQyMDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:10:48 GMT"
},
{
"key": "content-length",
"value": "955"
},
{
"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": "f1dd9fb3-8032-4b69-b058-07c0f9710bd1"
},
{
"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\": \"outpatient\",\n \"display\": \"Outpatient\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\"\n }\n ]\n },\n \"context\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"dateAsserted\": \"2024-03-15T02:19:00+00:00\",\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:19:00+00:00\",\n \"id\": \"83fe07a3-0554-43ad-b25e-9c01c004b008\",\n \"identifier\": [],\n \"informationSource\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:10:48.550420+00:00\",\n \"versionId\": \"MTcxNTY0OTA0ODU1MDQyMDAwMA\"\n },\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "Faktor Risiko Aterosklerosis",
"item": [
{
"name": "Observation - Faktor Risiko Hipertensi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Hipertensi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"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/\"MTcxNDYxODA2ODk3ODM4NTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/9826ef25-ebc5-49dd-ba13-84b91a73ce2a/_history/MTcxNDYxODA2ODk3ODM4NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:47:48 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:47:48 GMT"
},
{
"key": "content-length",
"value": "1221"
},
{
"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": "2edbd166-7d5e-4f6c-82c7-6d45e915e5c6"
},
{
"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\": \"38341003\",\n \"display\": \"Hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"31509003\",\n \"display\": \"Controlled\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"9826ef25-ebc5-49dd-ba13-84b91a73ce2a\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:47:48.978385+00:00\",\n \"versionId\": \"MTcxNDYxODA2ODk3ODM4NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko DM",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko DM",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"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/2fd29330-aac0-491e-a1cb-76ce571f8efe/_history/MTcxNDYxODIwNTIwNjMwMDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxODIwNTIwNjMwMDAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:50:05 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:50:05 GMT"
},
{
"key": "content-length",
"value": "989"
},
{
"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": "9d877b17-1c59-49d1-bf9c-5416564aa3c8"
},
{
"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\": \"73211009\",\n \"display\": \"Diabetes mellitus\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"31509003\",\n \"display\": \"Controlled\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"2fd29330-aac0-491e-a1cb-76ce571f8efe\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:50:05.206300+00:00\",\n \"versionId\": \"MTcxNDYxODIwNTIwNjMwMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko Dislipidemia",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Dislipidemia",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n}",
"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/\"MTcxNDYzMDgwMzE5NjE3MDAwMA\""
},
{
"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/e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e/_history/MTcxNDYzMDgwMzE5NjE3MDAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 06:20:03 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 06:20:03 GMT"
},
{
"key": "content-length",
"value": "1171"
},
{
"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": "1a9279c1-5146-4a78-b683-9a87974957e0"
},
{
"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\": \"370992007\",\n \"display\": \"Dyslipidemia\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T06:20:03.196170+00:00\",\n \"versionId\": \"MTcxNDYzMDgwMzE5NjE3MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko Merokok",
"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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Merokok",
"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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxODY5NDg2MjU3NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/937da678-555b-418d-8474-e0331d2231c1/_history/MTcxNDYxODY5NDg2MjU3NzAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:58:14 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:58:14 GMT"
},
{
"key": "content-length",
"value": "826"
},
{
"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": "20bda8ee-564a-4b6f-abfc-6a79580f45c0"
},
{
"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\": \"social-history\",\n \"display\": \"Social History\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"937da678-555b-418d-8474-e0331d2231c1\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:58:14.862577+00:00\",\n \"versionId\": \"MTcxNDYxODY5NDg2MjU3NzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"77176002\",\n \"display\": \"Smoker\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Faktor Risiko Hipertensi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Hipertensi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"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/\"MTcxNDYxODA2ODk3ODM4NTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/9826ef25-ebc5-49dd-ba13-84b91a73ce2a/_history/MTcxNDYxODA2ODk3ODM4NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:47:48 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:47:48 GMT"
},
{
"key": "content-length",
"value": "1221"
},
{
"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": "2edbd166-7d5e-4f6c-82c7-6d45e915e5c6"
},
{
"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\": \"38341003\",\n \"display\": \"Hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"31509003\",\n \"display\": \"Controlled\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"9826ef25-ebc5-49dd-ba13-84b91a73ce2a\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:47:48.978385+00:00\",\n \"versionId\": \"MTcxNDYxODA2ODk3ODM4NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko DM",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko DM",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"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/2fd29330-aac0-491e-a1cb-76ce571f8efe/_history/MTcxNDYxODIwNTIwNjMwMDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxODIwNTIwNjMwMDAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:50:05 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:50:05 GMT"
},
{
"key": "content-length",
"value": "989"
},
{
"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": "9d877b17-1c59-49d1-bf9c-5416564aa3c8"
},
{
"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\": \"73211009\",\n \"display\": \"Diabetes mellitus\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"31509003\",\n \"display\": \"Controlled\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"2fd29330-aac0-491e-a1cb-76ce571f8efe\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:50:05.206300+00:00\",\n \"versionId\": \"MTcxNDYxODIwNTIwNjMwMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko Merokok",
"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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Merokok",
"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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxODY5NDg2MjU3NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/937da678-555b-418d-8474-e0331d2231c1/_history/MTcxNDYxODY5NDg2MjU3NzAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:58:14 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:58:14 GMT"
},
{
"key": "content-length",
"value": "826"
},
{
"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": "20bda8ee-564a-4b6f-abfc-6a79580f45c0"
},
{
"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\": \"social-history\",\n \"display\": \"Social History\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"937da678-555b-418d-8474-e0331d2231c1\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:58:14.862577+00:00\",\n \"versionId\": \"MTcxNDYxODY5NDg2MjU3NzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"77176002\",\n \"display\": \"Smoker\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Faktor Risiko Dislipidemia",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Dislipidemia",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n}",
"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/\"MTcxNDYzMDgwMzE5NjE3MDAwMA\""
},
{
"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/e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e/_history/MTcxNDYzMDgwMzE5NjE3MDAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 06:20:03 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 06:20:03 GMT"
},
{
"key": "content-length",
"value": "1171"
},
{
"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": "1a9279c1-5146-4a78-b683-9a87974957e0"
},
{
"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\": \"370992007\",\n \"display\": \"Dyslipidemia\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T06:20:03.196170+00:00\",\n \"versionId\": \"MTcxNDYzMDgwMzE5NjE3MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
}
]
},
{
"name": "Keluhan Utama",
"item": [
{
"name": "Condition - Keluhan Utama",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-15T00:10:00+00:00\",\n \"recordedDate\": \"2024-03-15T01:11:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Keluhan Utama",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-15T00:10:00+00:00\",\n \"recordedDate\": \"2024-03-15T01:11: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/\"MTcxMDg3NTk4MTAwNjA4MzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:19:41 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/05dab950-b68b-49f4-a36e-41dc0eb34aad/_history/MTcxMDg3NTk4MTAwNjA4MzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:19:41 GMT"
},
{
"key": "Content-Length",
"value": "4034"
},
{
"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": "667fa466-1f62-4a6d-a5ac-aa3195644cdc"
},
{
"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\": \"80313002\",\n \"display\": \"Palpitations\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"05dab950-b68b-49f4-a36e-41dc0eb34aad\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:19:41.006083+00:00\",\n \"versionId\": \"MTcxMDg3NTk4MTAwNjA4MzAwMA\"\n },\n \"onsetDateTime\": \"2024-03-15T00:10:00+00:00\",\n \"recordedDate\": \"2024-03-15T01:11:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Keluhan Utama",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-15T00:10:00+00:00\",\n \"recordedDate\": \"2024-03-15T01:11:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Keluhan Utama",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-15T00:10:00+00:00\",\n \"recordedDate\": \"2024-03-15T01:11: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/\"MTcxMDg3NTk4MTAwNjA4MzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:19:41 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/05dab950-b68b-49f4-a36e-41dc0eb34aad/_history/MTcxMDg3NTk4MTAwNjA4MzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:19:41 GMT"
},
{
"key": "Content-Length",
"value": "4034"
},
{
"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": "667fa466-1f62-4a6d-a5ac-aa3195644cdc"
},
{
"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\": \"80313002\",\n \"display\": \"Palpitations\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"05dab950-b68b-49f4-a36e-41dc0eb34aad\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:19:41.006083+00:00\",\n \"versionId\": \"MTcxMDg3NTk4MTAwNjA4MzAwMA\"\n },\n \"onsetDateTime\": \"2024-03-15T00:10:00+00:00\",\n \"recordedDate\": \"2024-03-15T01:11:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "04. Pemeriksaan Fisik",
"item": [
{
"name": "Tingkat Kesadaran",
"item": [
{
"name": "Observation - Tingkat Kesadaran ",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67775-7\",\n \"display\": \"Level of responsiveness\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tingkat Kesadaran",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67775-7\",\n \"display\": \"Level of responsiveness\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:18:20 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/Observation/125f525a-c9b6-41ea-98ad-66ce7d8d6e2f/_history/MTcxNTY0OTUwMDMyNzgwNDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0OTUwMDMyNzgwNDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:18:20 GMT"
},
{
"key": "content-length",
"value": "830"
},
{
"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": "05d9e81a-7d8a-42e5-b23d-c5152bc93bf8"
},
{
"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\": \"67775-7\",\n \"display\": \"Level of responsiveness\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"125f525a-c9b6-41ea-98ad-66ce7d8d6e2f\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:18:20.327804+00:00\",\n \"versionId\": \"MTcxNTY0OTUwMDMyNzgwNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Tingkat Kesadaran ",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67775-7\",\n \"display\": \"Level of responsiveness\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tingkat Kesadaran",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67775-7\",\n \"display\": \"Level of responsiveness\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:18:20 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/Observation/125f525a-c9b6-41ea-98ad-66ce7d8d6e2f/_history/MTcxNTY0OTUwMDMyNzgwNDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0OTUwMDMyNzgwNDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:18:20 GMT"
},
{
"key": "content-length",
"value": "830"
},
{
"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": "05d9e81a-7d8a-42e5-b23d-c5152bc93bf8"
},
{
"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\": \"67775-7\",\n \"display\": \"Level of responsiveness\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"125f525a-c9b6-41ea-98ad-66ce7d8d6e2f\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:18:20.327804+00:00\",\n \"versionId\": \"MTcxNTY0OTUwMDMyNzgwNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Tanda Tanda Vital",
"item": [
{
"name": "Observation - Nadi",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8867-4\",\n \"display\": \"Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Nadi Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:22:00+00:00\",\n \"issued\": \"2024-03-15T01:22:00+00:00\",\n \"valueQuantity\": {\n \"value\": 87,\n \"unit\": \"{beats}/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Nadi",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8867-4\",\n \"display\": \"Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Nadi Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:22:00+00:00\",\n \"issued\": \"2024-03-15T01:22:00+00:00\",\n \"valueQuantity\": {\n \"value\": 87,\n \"unit\": \"{beats}/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/c1670bd1-e8fc-4b25-8dac-3f02a86babfb/_history/MTcxMDg3NzQ0MDM2NDE0NzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:44:00 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NzQ0MDM2NDE0NzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:44:00 GMT"
},
{
"key": "Content-Length",
"value": "4368"
},
{
"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": "69644e28-db5c-40bc-a2ff-36bd825f2d9a"
},
{
"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\": \"8867-4\",\n \"display\": \"Heart rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:22:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Nadi Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c1670bd1-e8fc-4b25-8dac-3f02a86babfb\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:44:00.364147+00:00\",\n \"versionId\": \"MTcxMDg3NzQ0MDM2NDE0NzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{beats}/minute\",\n \"value\": 87\n }\n}"
}
]
},
{
"name": "Observation - Pernapasan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9279-1\",\n \"display\": \"Respiratory rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Pernapasan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"valueQuantity\": {\n \"value\": 25,\n \"unit\": \"{breaths}/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Pernapasan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9279-1\",\n \"display\": \"Respiratory rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Pernapasan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"valueQuantity\": {\n \"value\": 25,\n \"unit\": \"{breaths}/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:44:58 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NzQ5ODQzMjA0NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/4f459168-1719-474d-aa84-a0aacb8a8791/_history/MTcxMDg3NzQ5ODQzMjA0NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:44:58 GMT"
},
{
"key": "Content-Length",
"value": "4412"
},
{
"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": "ad06eb14-6bee-45eb-94c4-7eda379ca068"
},
{
"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\": \"9279-1\",\n \"display\": \"Respiratory rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Pernapasan Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"4f459168-1719-474d-aa84-a0aacb8a8791\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:44:58.432046+00:00\",\n \"versionId\": \"MTcxMDg3NzQ5ODQzMjA0NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{breaths}/min\",\n \"value\": 25\n }\n}"
}
]
},
{
"name": "Observation - TD Sistolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:24:00+00:00\",\n \"issued\": \"2024-03-15T01:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 184,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Sistolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:24:00+00:00\",\n \"issued\": \"2024-03-15T01:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 184,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\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": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:45:28 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NzUyODMyOTQ1MjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/484c28f1-4c57-4623-84f5-228ad4127a9b/_history/MTcxMDg3NzUyODMyOTQ1MjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:45:28 GMT"
},
{
"key": "Content-Length",
"value": "5748"
},
{
"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": "a4446478-9f59-451b-94b3-fbc5bf64e3cf"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"368209003\",\n \"display\": \"Right arm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"8480-6\",\n \"display\": \"Systolic blood pressure\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:24:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"484c28f1-4c57-4623-84f5-228ad4127a9b\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"H\",\n \"display\": \"High\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ],\n \"issued\": \"2024-03-15T01:24:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:45:28.329452+00:00\",\n \"versionId\": \"MTcxMDg3NzUyODMyOTQ1MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mm[Hg]\",\n \"value\": 184\n }\n}"
}
]
},
{
"name": "Observation - TD Diastolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:24:00+00:00\",\n \"issued\": \"2024-03-15T01:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 117,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Diastolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:24:00+00:00\",\n \"issued\": \"2024-03-15T01:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 117,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\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": "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/a026ed35-1ba1-41fa-b504-64b155134c02/_history/MTcxMDg3NzU2Njk2OTA1MjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NzU2Njk2OTA1MjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:46:06 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:46:06 GMT"
},
{
"key": "Content-Length",
"value": "5756"
},
{
"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": "d0c9c12f-6d57-4a16-b5ca-04e476fbce50"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"368209003\",\n \"display\": \"Right arm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:24:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a026ed35-1ba1-41fa-b504-64b155134c02\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"H\",\n \"display\": \"High\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ],\n \"issued\": \"2024-03-15T01:24:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:46:06.969052+00:00\",\n \"versionId\": \"MTcxMDg3NzU2Njk2OTA1MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mm[Hg]\",\n \"value\": 117\n }\n}"
}
]
},
{
"name": "Observation - Suhu",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8310-5\",\n \"display\": \"Body temperature\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Suhu Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:25:00+00:00\",\n \"issued\": \"2024-03-15T01:25:00+00:00\",\n \"valueQuantity\": {\n \"value\": 37.5,\n \"unit\": \"C\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"Cel\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Suhu",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8310-5\",\n \"display\": \"Body temperature\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Suhu Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:25:00+00:00\",\n \"issued\": \"2024-03-15T01:25:00+00:00\",\n \"valueQuantity\": {\n \"value\": 37.5,\n \"unit\": \"C\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"Cel\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\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": "etag",
"value": "W/\"MTcxMDg3NzU5MjUyOTc5ODAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:46:32 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/9403cd3a-0fc8-4d03-8faa-6751e60b5372/_history/MTcxMDg3NzU5MjUyOTc5ODAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:46:32 GMT"
},
{
"key": "Content-Length",
"value": "5136"
},
{
"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": "dc6da45e-3283-44a8-8ad5-ce4a8977e494"
},
{
"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\": \"8310-5\",\n \"display\": \"Body temperature\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:25:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Suhu Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"9403cd3a-0fc8-4d03-8faa-6751e60b5372\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"H\",\n \"display\": \"High\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ],\n \"issued\": \"2024-03-15T01:25:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:46:32.529798+00:00\",\n \"versionId\": \"MTcxMDg3NzU5MjUyOTc5ODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"Cel\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"C\",\n \"value\": 37.5\n }\n}"
}
]
},
{
"name": "Observation - TD Diastolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:24:00+00:00\",\n \"issued\": \"2024-03-15T01:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 117,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Diastolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:24:00+00:00\",\n \"issued\": \"2024-03-15T01:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 117,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\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": "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/a026ed35-1ba1-41fa-b504-64b155134c02/_history/MTcxMDg3NzU2Njk2OTA1MjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NzU2Njk2OTA1MjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:46:06 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:46:06 GMT"
},
{
"key": "Content-Length",
"value": "5756"
},
{
"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": "d0c9c12f-6d57-4a16-b5ca-04e476fbce50"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"368209003\",\n \"display\": \"Right arm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:24:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Diastolik Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a026ed35-1ba1-41fa-b504-64b155134c02\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"H\",\n \"display\": \"High\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ],\n \"issued\": \"2024-03-15T01:24:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:46:06.969052+00:00\",\n \"versionId\": \"MTcxMDg3NzU2Njk2OTA1MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mm[Hg]\",\n \"value\": 117\n }\n}"
}
]
},
{
"name": "Observation - Pernapasan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9279-1\",\n \"display\": \"Respiratory rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Pernapasan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"valueQuantity\": {\n \"value\": 25,\n \"unit\": \"{breaths}/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Pernapasan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9279-1\",\n \"display\": \"Respiratory rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Pernapasan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"valueQuantity\": {\n \"value\": 25,\n \"unit\": \"{breaths}/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:44:58 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NzQ5ODQzMjA0NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/4f459168-1719-474d-aa84-a0aacb8a8791/_history/MTcxMDg3NzQ5ODQzMjA0NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:44:58 GMT"
},
{
"key": "Content-Length",
"value": "4412"
},
{
"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": "ad06eb14-6bee-45eb-94c4-7eda379ca068"
},
{
"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\": \"9279-1\",\n \"display\": \"Respiratory rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Pernapasan Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"4f459168-1719-474d-aa84-a0aacb8a8791\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:44:58.432046+00:00\",\n \"versionId\": \"MTcxMDg3NzQ5ODQzMjA0NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{breaths}/min\",\n \"value\": 25\n }\n}"
}
]
},
{
"name": "Observation - TD Sistolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:24:00+00:00\",\n \"issued\": \"2024-03-15T01:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 184,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Sistolik",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:24:00+00:00\",\n \"issued\": \"2024-03-15T01:24:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 184,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\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": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:45:28 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NzUyODMyOTQ1MjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/484c28f1-4c57-4623-84f5-228ad4127a9b/_history/MTcxMDg3NzUyODMyOTQ1MjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:45:28 GMT"
},
{
"key": "Content-Length",
"value": "5748"
},
{
"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": "a4446478-9f59-451b-94b3-fbc5bf64e3cf"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"368209003\",\n \"display\": \"Right arm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"8480-6\",\n \"display\": \"Systolic blood pressure\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:24:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Tekanan Darah Sistolik Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"484c28f1-4c57-4623-84f5-228ad4127a9b\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"H\",\n \"display\": \"High\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ],\n \"issued\": \"2024-03-15T01:24:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:45:28.329452+00:00\",\n \"versionId\": \"MTcxMDg3NzUyODMyOTQ1MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mm[Hg]\",\n \"value\": 184\n }\n}"
}
]
},
{
"name": "Observation - Nadi",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8867-4\",\n \"display\": \"Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Nadi Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:22:00+00:00\",\n \"issued\": \"2024-03-15T01:22:00+00:00\",\n \"valueQuantity\": {\n \"value\": 87,\n \"unit\": \"{beats}/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Nadi",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8867-4\",\n \"display\": \"Heart rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Nadi Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:22:00+00:00\",\n \"issued\": \"2024-03-15T01:22:00+00:00\",\n \"valueQuantity\": {\n \"value\": 87,\n \"unit\": \"{beats}/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/c1670bd1-e8fc-4b25-8dac-3f02a86babfb/_history/MTcxMDg3NzQ0MDM2NDE0NzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:44:00 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NzQ0MDM2NDE0NzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:44:00 GMT"
},
{
"key": "Content-Length",
"value": "4368"
},
{
"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": "69644e28-db5c-40bc-a2ff-36bd825f2d9a"
},
{
"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\": \"8867-4\",\n \"display\": \"Heart rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:22:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Nadi Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c1670bd1-e8fc-4b25-8dac-3f02a86babfb\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:22:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:44:00.364147+00:00\",\n \"versionId\": \"MTcxMDg3NzQ0MDM2NDE0NzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{beats}/minute\",\n \"value\": 87\n }\n}"
}
]
},
{
"name": "Observation - Suhu",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8310-5\",\n \"display\": \"Body temperature\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Suhu Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:25:00+00:00\",\n \"issued\": \"2024-03-15T01:25:00+00:00\",\n \"valueQuantity\": {\n \"value\": 37.5,\n \"unit\": \"C\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"Cel\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Suhu",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8310-5\",\n \"display\": \"Body temperature\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Fisik Suhu Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:25:00+00:00\",\n \"issued\": \"2024-03-15T01:25:00+00:00\",\n \"valueQuantity\": {\n \"value\": 37.5,\n \"unit\": \"C\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"Cel\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\",\n \"code\": \"H\",\n \"display\": \"High\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\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": "etag",
"value": "W/\"MTcxMDg3NzU5MjUyOTc5ODAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:46:32 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/9403cd3a-0fc8-4d03-8faa-6751e60b5372/_history/MTcxMDg3NzU5MjUyOTc5ODAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:46:32 GMT"
},
{
"key": "Content-Length",
"value": "5136"
},
{
"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": "dc6da45e-3283-44a8-8ad5-ce4a8977e494"
},
{
"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\": \"8310-5\",\n \"display\": \"Body temperature\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:25:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Fisik Suhu Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"9403cd3a-0fc8-4d03-8faa-6751e60b5372\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"H\",\n \"display\": \"High\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation\"\n }\n ],\n \"text\": \"Di atas nilai referensi\"\n }\n ],\n \"issued\": \"2024-03-15T01:25:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:46:32.529798+00:00\",\n \"versionId\": \"MTcxMDg3NzU5MjUyOTc5ODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"Cel\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"C\",\n \"value\": 37.5\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Fisik Head to Toe",
"item": [
{
"name": "Kepala",
"item": [
{
"name": "Observation - Kepala",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk kepala simetris\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kepala",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk kepala simetris\"\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": "Tue, 14 May 2024 01:35:38 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/Observation/7811a855-bb75-41ce-a2b7-f27a67393d3b/_history/MTcxNTY1MDUzODEwNjQzMzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDUzODEwNjQzMzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:35:38 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": "0f9140cb-5b57-4f67-8757-5a31fe0d969c"
},
{
"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\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"7811a855-bb75-41ce-a2b7-f27a67393d3b\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:35:38.106433+00:00\",\n \"versionId\": \"MTcxNTY1MDUzODEwNjQzMzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Bentuk kepala simetris\"\n}"
}
]
},
{
"name": "Observation - Kepala",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk kepala simetris\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kepala",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk kepala simetris\"\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": "Tue, 14 May 2024 01:35:38 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/Observation/7811a855-bb75-41ce-a2b7-f27a67393d3b/_history/MTcxNTY1MDUzODEwNjQzMzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDUzODEwNjQzMzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:35:38 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": "0f9140cb-5b57-4f67-8757-5a31fe0d969c"
},
{
"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\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"7811a855-bb75-41ce-a2b7-f27a67393d3b\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:35:38.106433+00:00\",\n \"versionId\": \"MTcxNTY1MDUzODEwNjQzMzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Bentuk kepala simetris\"\n}"
}
]
}
]
},
{
"name": "Mata",
"item": [
{
"name": "Observation - Mata",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Mata",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}",
"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/d300ee4c-f29d-4c23-bb0d-0531e25ee160/_history/MTcxNTY1MDU2ODU1OTM5NDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:36:08 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDU2ODU1OTM5NDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:36:08 GMT"
},
{
"key": "content-length",
"value": "824"
},
{
"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": "bd563813-c983-407c-adab-1a7501028bb2"
},
{
"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\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"d300ee4c-f29d-4c23-bb0d-0531e25ee160\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:36:08.559394+00:00\",\n \"versionId\": \"MTcxNTY1MDU2ODU1OTM5NDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}"
}
]
},
{
"name": "Observation - Mata",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Mata",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}",
"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/d300ee4c-f29d-4c23-bb0d-0531e25ee160/_history/MTcxNTY1MDU2ODU1OTM5NDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:36:08 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDU2ODU1OTM5NDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:36:08 GMT"
},
{
"key": "content-length",
"value": "824"
},
{
"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": "bd563813-c983-407c-adab-1a7501028bb2"
},
{
"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\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"d300ee4c-f29d-4c23-bb0d-0531e25ee160\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:36:08.559394+00:00\",\n \"versionId\": \"MTcxNTY1MDU2ODU1OTM5NDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}"
}
]
}
]
},
{
"name": "Telinga",
"item": [
{
"name": "Observation - Telinga",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Telinga",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}",
"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/\"MTcxNTY1MDYwNTMyNTgzMDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/f17dfe94-fa36-4d7a-bd51-1d0f2e77f617/_history/MTcxNTY1MDYwNTMyNTgzMDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:36:45 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:36:45 GMT"
},
{
"key": "content-length",
"value": "854"
},
{
"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": "9064e7bf-485d-449e-807e-c563adb3d345"
},
{
"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\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"f17dfe94-fa36-4d7a-bd51-1d0f2e77f617\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:36:45.325830+00:00\",\n \"versionId\": \"MTcxNTY1MDYwNTMyNTgzMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}"
}
]
},
{
"name": "Observation - Telinga",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Telinga",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}",
"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/\"MTcxNTY1MDYwNTMyNTgzMDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/f17dfe94-fa36-4d7a-bd51-1d0f2e77f617/_history/MTcxNTY1MDYwNTMyNTgzMDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:36:45 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:36:45 GMT"
},
{
"key": "content-length",
"value": "854"
},
{
"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": "9064e7bf-485d-449e-807e-c563adb3d345"
},
{
"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\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"f17dfe94-fa36-4d7a-bd51-1d0f2e77f617\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:36:45.325830+00:00\",\n \"versionId\": \"MTcxNTY1MDYwNTMyNTgzMDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}"
}
]
}
]
},
{
"name": "Hidung",
"item": [
{
"name": "Observation - Hidung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Hidung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MDYzNjMzMjg2NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:37:16 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/a573f2e7-045e-4335-b919-f28286b4d93e/_history/MTcxNTY1MDYzNjMzMjg2NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:37:16 GMT"
},
{
"key": "content-length",
"value": "866"
},
{
"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": "d7d72cef-03c7-473e-82e0-0642eee86598"
},
{
"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\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a573f2e7-045e-4335-b919-f28286b4d93e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:37:16.332866+00:00\",\n \"versionId\": \"MTcxNTY1MDYzNjMzMjg2NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Hidung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Hidung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MDYzNjMzMjg2NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:37:16 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/a573f2e7-045e-4335-b919-f28286b4d93e/_history/MTcxNTY1MDYzNjMzMjg2NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:37:16 GMT"
},
{
"key": "content-length",
"value": "866"
},
{
"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": "d7d72cef-03c7-473e-82e0-0642eee86598"
},
{
"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\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a573f2e7-045e-4335-b919-f28286b4d93e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:37:16.332866+00:00\",\n \"versionId\": \"MTcxNTY1MDYzNjMzMjg2NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Rambut",
"item": [
{
"name": "Observation - Rambut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32436-8\",\n \"display\": \"Physical findings of Hair\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Rambut dalam batas normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Rambut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32436-8\",\n \"display\": \"Physical findings of Hair\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Rambut dalam batas normal\"\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": "Tue, 14 May 2024 01:37:43 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDY2MzMzOTc1MzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/6dbe23c2-3a52-4d1d-811d-b389a721a791/_history/MTcxNTY1MDY2MzMzOTc1MzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:37:43 GMT"
},
{
"key": "content-length",
"value": "798"
},
{
"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": "945f6ec8-3e80-496e-85d6-64dba81053e4"
},
{
"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\": \"32436-8\",\n \"display\": \"Physical findings of Hair\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"6dbe23c2-3a52-4d1d-811d-b389a721a791\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:37:43.339753+00:00\",\n \"versionId\": \"MTcxNTY1MDY2MzMzOTc1MzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Rambut dalam batas normal\"\n}"
}
]
},
{
"name": "Observation - Rambut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32436-8\",\n \"display\": \"Physical findings of Hair\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Rambut dalam batas normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Rambut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32436-8\",\n \"display\": \"Physical findings of Hair\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Rambut dalam batas normal\"\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": "Tue, 14 May 2024 01:37:43 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDY2MzMzOTc1MzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/6dbe23c2-3a52-4d1d-811d-b389a721a791/_history/MTcxNTY1MDY2MzMzOTc1MzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:37:43 GMT"
},
{
"key": "content-length",
"value": "798"
},
{
"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": "945f6ec8-3e80-496e-85d6-64dba81053e4"
},
{
"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\": \"32436-8\",\n \"display\": \"Physical findings of Hair\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"6dbe23c2-3a52-4d1d-811d-b389a721a791\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:37:43.339753+00:00\",\n \"versionId\": \"MTcxNTY1MDY2MzMzOTc1MzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Rambut dalam batas normal\"\n}"
}
]
}
]
},
{
"name": "Bibir",
"item": [
{
"name": "Observation - Bibir",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32446-7\",\n \"display\": \"Physical findings of Lip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Bibir",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32446-7\",\n \"display\": \"Physical findings of Lip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\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": "Tue, 14 May 2024 01:38:13 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/Observation/90f1422b-758d-415a-ab76-38224fd0eb22/_history/MTcxNTY1MDY5MzU0MTA4NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDY5MzU0MTA4NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:38:13 GMT"
},
{
"key": "content-length",
"value": "822"
},
{
"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": "3eb55119-81d2-4cea-a1b4-bece45c3cf72"
},
{
"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\": \"32446-7\",\n \"display\": \"Physical findings of Lip\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"90f1422b-758d-415a-ab76-38224fd0eb22\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:38:13.541085+00:00\",\n \"versionId\": \"MTcxNTY1MDY5MzU0MTA4NTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
},
{
"name": "Observation - Bibir",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32446-7\",\n \"display\": \"Physical findings of Lip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Bibir",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32446-7\",\n \"display\": \"Physical findings of Lip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\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": "Tue, 14 May 2024 01:38:13 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/Observation/90f1422b-758d-415a-ab76-38224fd0eb22/_history/MTcxNTY1MDY5MzU0MTA4NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDY5MzU0MTA4NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:38:13 GMT"
},
{
"key": "content-length",
"value": "822"
},
{
"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": "3eb55119-81d2-4cea-a1b4-bece45c3cf72"
},
{
"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\": \"32446-7\",\n \"display\": \"Physical findings of Lip\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"90f1422b-758d-415a-ab76-38224fd0eb22\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:38:13.541085+00:00\",\n \"versionId\": \"MTcxNTY1MDY5MzU0MTA4NTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
}
]
},
{
"name": "Gigi Geligi",
"item": [
{
"name": "Observation - Gigi Geligi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gigi Geligi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}",
"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/\"MTcxNTY1MDc2MTgwNjk0NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:39:21 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/3ec1c761-bffa-434a-8827-d4a036f3d1fa/_history/MTcxNTY1MDc2MTgwNjk0NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:39:21 GMT"
},
{
"key": "content-length",
"value": "830"
},
{
"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": "24e3c05f-b2d8-4762-8386-365b0b3e39dc"
},
{
"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\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"3ec1c761-bffa-434a-8827-d4a036f3d1fa\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:39:21.806946+00:00\",\n \"versionId\": \"MTcxNTY1MDc2MTgwNjk0NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}"
}
]
},
{
"name": "Observation - Gigi Geligi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gigi Geligi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}",
"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/\"MTcxNTY1MDc2MTgwNjk0NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:39:21 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/3ec1c761-bffa-434a-8827-d4a036f3d1fa/_history/MTcxNTY1MDc2MTgwNjk0NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:39:21 GMT"
},
{
"key": "content-length",
"value": "830"
},
{
"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": "24e3c05f-b2d8-4762-8386-365b0b3e39dc"
},
{
"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\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"3ec1c761-bffa-434a-8827-d4a036f3d1fa\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:39:21.806946+00:00\",\n \"versionId\": \"MTcxNTY1MDc2MTgwNjk0NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}"
}
]
}
]
},
{
"name": "Lidah",
"item": [
{
"name": "Observation - Lidah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lidah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}",
"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/\"MTcxNTY1MDc4NTkwNjcyOTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:39:45 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/9557c5c4-4414-434e-9045-d33d7fce671c/_history/MTcxNTY1MDc4NTkwNjcyOTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:39:45 GMT"
},
{
"key": "content-length",
"value": "823"
},
{
"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": "b5b03004-83f4-44d6-99ac-3f97e56d38c6"
},
{
"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\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"9557c5c4-4414-434e-9045-d33d7fce671c\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:39:45.906729+00:00\",\n \"versionId\": \"MTcxNTY1MDc4NTkwNjcyOTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}"
}
]
},
{
"name": "Observation - Lidah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lidah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}",
"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/\"MTcxNTY1MDc4NTkwNjcyOTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:39:45 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/9557c5c4-4414-434e-9045-d33d7fce671c/_history/MTcxNTY1MDc4NTkwNjcyOTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:39:45 GMT"
},
{
"key": "content-length",
"value": "823"
},
{
"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": "b5b03004-83f4-44d6-99ac-3f97e56d38c6"
},
{
"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\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"9557c5c4-4414-434e-9045-d33d7fce671c\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:39:45.906729+00:00\",\n \"versionId\": \"MTcxNTY1MDc4NTkwNjcyOTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}"
}
]
}
]
},
{
"name": "Langit-langit",
"item": [
{
"name": "Observation - Langit-Langit",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Langit-Langit",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}",
"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/\"MTcxNTY1MDgxMjA5NjI5OTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:40:12 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/Observation/a2693908-c026-4c9c-9bc7-eb3e446777fb/_history/MTcxNTY1MDgxMjA5NjI5OTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:40:12 GMT"
},
{
"key": "content-length",
"value": "971"
},
{
"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": "e3fd77ca-66b2-48cd-9373-b87ba5dd385c"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a2693908-c026-4c9c-9bc7-eb3e446777fb\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:40:12.096299+00:00\",\n \"versionId\": \"MTcxNTY1MDgxMjA5NjI5OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}"
}
]
},
{
"name": "Observation - Langit-Langit",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Langit-Langit",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}",
"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/\"MTcxNTY1MDgxMjA5NjI5OTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:40:12 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/Observation/a2693908-c026-4c9c-9bc7-eb3e446777fb/_history/MTcxNTY1MDgxMjA5NjI5OTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:40:12 GMT"
},
{
"key": "content-length",
"value": "971"
},
{
"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": "e3fd77ca-66b2-48cd-9373-b87ba5dd385c"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a2693908-c026-4c9c-9bc7-eb3e446777fb\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:40:12.096299+00:00\",\n \"versionId\": \"MTcxNTY1MDgxMjA5NjI5OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}"
}
]
}
]
},
{
"name": "Leher",
"item": [
{
"name": "Observation - Leher",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Leher",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}",
"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/8cb4fe7a-277b-4fb6-bf87-e76892122114/_history/MTcxNTY1MDg0OTY5NTAwNjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDg0OTY5NTAwNjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:40:49 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:40:49 GMT"
},
{
"key": "content-length",
"value": "894"
},
{
"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": "15ed29ad-87e3-4ec2-b538-88add7e4f9e3"
},
{
"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\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"8cb4fe7a-277b-4fb6-bf87-e76892122114\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:40:49.695006+00:00\",\n \"versionId\": \"MTcxNTY1MDg0OTY5NTAwNjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}"
}
]
},
{
"name": "Observation - Leher",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Leher",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}",
"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/8cb4fe7a-277b-4fb6-bf87-e76892122114/_history/MTcxNTY1MDg0OTY5NTAwNjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDg0OTY5NTAwNjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:40:49 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:40:49 GMT"
},
{
"key": "content-length",
"value": "894"
},
{
"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": "15ed29ad-87e3-4ec2-b538-88add7e4f9e3"
},
{
"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\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"8cb4fe7a-277b-4fb6-bf87-e76892122114\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:40:49.695006+00:00\",\n \"versionId\": \"MTcxNTY1MDg0OTY5NTAwNjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}"
}
]
}
]
},
{
"name": "Tenggorokan",
"item": [
{
"name": "Observation - Tenggorokan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tenggorokan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\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/09befb6a-8adc-4975-a2b2-889b05b03331/_history/MTcxNTY1MDg3Nzg3NDE3MDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDg3Nzg3NDE3MDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:41:17 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:41:17 GMT"
},
{
"key": "content-length",
"value": "828"
},
{
"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": "617ec805-d841-4648-92c3-67473f37423a"
},
{
"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\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"09befb6a-8adc-4975-a2b2-889b05b03331\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:41:17.874170+00:00\",\n \"versionId\": \"MTcxNTY1MDg3Nzg3NDE3MDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Tenggorokan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tenggorokan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\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/09befb6a-8adc-4975-a2b2-889b05b03331/_history/MTcxNTY1MDg3Nzg3NDE3MDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDg3Nzg3NDE3MDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:41:17 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:41:17 GMT"
},
{
"key": "content-length",
"value": "828"
},
{
"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": "617ec805-d841-4648-92c3-67473f37423a"
},
{
"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\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"09befb6a-8adc-4975-a2b2-889b05b03331\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:41:17.874170+00:00\",\n \"versionId\": \"MTcxNTY1MDg3Nzg3NDE3MDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Tonsil",
"item": [
{
"name": "Observation - Tonsil",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tonsil",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\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/95215908-270e-4187-9d6b-ae65cc4d7634/_history/MTcxNTY1MDkwODc1MzgzMzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:41:48 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDkwODc1MzgzMzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:41:48 GMT"
},
{
"key": "content-length",
"value": "961"
},
{
"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": "8a1ec79d-1f17-47a8-8a15-93ccd5b4f973"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"95215908-270e-4187-9d6b-ae65cc4d7634\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:41:48.753833+00:00\",\n \"versionId\": \"MTcxNTY1MDkwODc1MzgzMzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Tonsil",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tonsil",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\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/95215908-270e-4187-9d6b-ae65cc4d7634/_history/MTcxNTY1MDkwODc1MzgzMzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:41:48 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDkwODc1MzgzMzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:41:48 GMT"
},
{
"key": "content-length",
"value": "961"
},
{
"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": "8a1ec79d-1f17-47a8-8a15-93ccd5b4f973"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"95215908-270e-4187-9d6b-ae65cc4d7634\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:41:48.753833+00:00\",\n \"versionId\": \"MTcxNTY1MDkwODc1MzgzMzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Dada",
"item": [
{
"name": "Observation - Dada",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dada",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\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/39274871-1afe-4149-bb78-4fb37483a904/_history/MTcxNTY1MDk0Njk5OTA5MjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:42:26 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDk0Njk5OTA5MjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:42:27 GMT"
},
{
"key": "content-length",
"value": "869"
},
{
"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": "406158b9-4257-4ff4-a113-9a0f11400b44"
},
{
"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\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"39274871-1afe-4149-bb78-4fb37483a904\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:42:26.999092+00:00\",\n \"versionId\": \"MTcxNTY1MDk0Njk5OTA5MjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\n}"
}
]
},
{
"name": "Observation - Dada",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dada",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\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/39274871-1afe-4149-bb78-4fb37483a904/_history/MTcxNTY1MDk0Njk5OTA5MjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:42:26 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MDk0Njk5OTA5MjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:42:27 GMT"
},
{
"key": "content-length",
"value": "869"
},
{
"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": "406158b9-4257-4ff4-a113-9a0f11400b44"
},
{
"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\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"39274871-1afe-4149-bb78-4fb37483a904\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:42:26.999092+00:00\",\n \"versionId\": \"MTcxNTY1MDk0Njk5OTA5MjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\n}"
}
]
}
]
},
{
"name": "Payudara",
"item": [
{
"name": "Observation - Payudara",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Payudara",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MDk2ODMzNDA3ODAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:42: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/Observation/dbcdd566-c18c-4867-a0b7-62b3f7485f68/_history/MTcxNTY1MDk2ODMzNDA3ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:42:48 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": "efe10b53-f3fe-4032-ab37-e65375069d2e"
},
{
"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\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"dbcdd566-c18c-4867-a0b7-62b3f7485f68\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:42:48.334078+00:00\",\n \"versionId\": \"MTcxNTY1MDk2ODMzNDA3ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Payudara",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Payudara",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MDk2ODMzNDA3ODAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:42: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/Observation/dbcdd566-c18c-4867-a0b7-62b3f7485f68/_history/MTcxNTY1MDk2ODMzNDA3ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:42:48 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": "efe10b53-f3fe-4032-ab37-e65375069d2e"
},
{
"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\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"dbcdd566-c18c-4867-a0b7-62b3f7485f68\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:42:48.334078+00:00\",\n \"versionId\": \"MTcxNTY1MDk2ODMzNDA3ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Punggung",
"item": [
{
"name": "Observation - Punggung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Punggung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\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/81af7310-2504-4d24-90d6-bba0b960c654/_history/MTcxNTY1MTAwMDg5NDk4OTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MTAwMDg5NDk4OTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:43:20 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:43:20 GMT"
},
{
"key": "content-length",
"value": "827"
},
{
"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": "677484a8-dd60-4880-bcc8-51de45119451"
},
{
"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\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"81af7310-2504-4d24-90d6-bba0b960c654\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:43:20.894989+00:00\",\n \"versionId\": \"MTcxNTY1MTAwMDg5NDk4OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\n}"
}
]
},
{
"name": "Observation - Punggung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Punggung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\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/81af7310-2504-4d24-90d6-bba0b960c654/_history/MTcxNTY1MTAwMDg5NDk4OTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MTAwMDg5NDk4OTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:43:20 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:43:20 GMT"
},
{
"key": "content-length",
"value": "827"
},
{
"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": "677484a8-dd60-4880-bcc8-51de45119451"
},
{
"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\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"81af7310-2504-4d24-90d6-bba0b960c654\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:43:20.894989+00:00\",\n \"versionId\": \"MTcxNTY1MTAwMDg5NDk4OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\n}"
}
]
}
]
},
{
"name": "Perut",
"item": [
{
"name": "Observation - Perut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Perut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}",
"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/\"MTcxNTY1MTAyNzY2OTI2NDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:43:47 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/6c848591-736e-4cb9-9649-b1dbaf0cdd70/_history/MTcxNTY1MTAyNzY2OTI2NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:43:47 GMT"
},
{
"key": "content-length",
"value": "977"
},
{
"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": "2824f930-bda5-4cbe-af3d-b96eb3005216"
},
{
"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\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"6c848591-736e-4cb9-9649-b1dbaf0cdd70\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:43:47.669264+00:00\",\n \"versionId\": \"MTcxNTY1MTAyNzY2OTI2NDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}"
}
]
},
{
"name": "Observation - Perut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Perut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}",
"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/\"MTcxNTY1MTAyNzY2OTI2NDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:43:47 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/6c848591-736e-4cb9-9649-b1dbaf0cdd70/_history/MTcxNTY1MTAyNzY2OTI2NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:43:47 GMT"
},
{
"key": "content-length",
"value": "977"
},
{
"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": "2824f930-bda5-4cbe-af3d-b96eb3005216"
},
{
"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\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"6c848591-736e-4cb9-9649-b1dbaf0cdd70\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:43:47.669264+00:00\",\n \"versionId\": \"MTcxNTY1MTAyNzY2OTI2NDAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}"
}
]
}
]
},
{
"name": "Genital",
"item": [
{
"name": "Observation - Genital",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Genital",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}",
"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/\"MTcxNTY1MTEyNTYwNjk1NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/c43ce090-7635-49e6-a99d-588354024ec9/_history/MTcxNTY1MTEyNTYwNjk1NjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:45:25 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:45:25 GMT"
},
{
"key": "content-length",
"value": "1004"
},
{
"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": "01b9f9c2-f9d0-42e4-b082-23246da6c654"
},
{
"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\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c43ce090-7635-49e6-a99d-588354024ec9\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:45:25.606956+00:00\",\n \"versionId\": \"MTcxNTY1MTEyNTYwNjk1NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}"
}
]
},
{
"name": "Observation - Genital",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Genital",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}",
"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/\"MTcxNTY1MTEyNTYwNjk1NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/c43ce090-7635-49e6-a99d-588354024ec9/_history/MTcxNTY1MTEyNTYwNjk1NjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:45:25 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:45:25 GMT"
},
{
"key": "content-length",
"value": "1004"
},
{
"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": "01b9f9c2-f9d0-42e4-b082-23246da6c654"
},
{
"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\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c43ce090-7635-49e6-a99d-588354024ec9\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:45:25.606956+00:00\",\n \"versionId\": \"MTcxNTY1MTEyNTYwNjk1NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}"
}
]
}
]
},
{
"name": "Anus/Dubur",
"item": [
{
"name": "Observation - Anus/Dubur",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"53505006\",\n \"display\": \"Anal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Anus/Dubur",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"53505006\",\n \"display\": \"Anal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MzQzNjIwMzQ3NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/a91f3236-6f8b-4ec8-b171-426ab43dc869/_history/MTcxNTY1MzQzNjIwMzQ3NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:23:56 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:23:56 GMT"
},
{
"key": "content-length",
"value": "942"
},
{
"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": "3cee66ac-d198-4898-a12c-e723fc81f9eb"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"53505006\",\n \"display\": \"Anal structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a91f3236-6f8b-4ec8-b171-426ab43dc869\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:23:56.203476+00:00\",\n \"versionId\": \"MTcxNTY1MzQzNjIwMzQ3NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Anus/Dubur",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"53505006\",\n \"display\": \"Anal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Anus/Dubur",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"53505006\",\n \"display\": \"Anal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MzQzNjIwMzQ3NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/a91f3236-6f8b-4ec8-b171-426ab43dc869/_history/MTcxNTY1MzQzNjIwMzQ3NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:23:56 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:23:56 GMT"
},
{
"key": "content-length",
"value": "942"
},
{
"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": "3cee66ac-d198-4898-a12c-e723fc81f9eb"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"53505006\",\n \"display\": \"Anal structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a91f3236-6f8b-4ec8-b171-426ab43dc869\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:23:56.203476+00:00\",\n \"versionId\": \"MTcxNTY1MzQzNjIwMzQ3NjAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Lengan Atas",
"item": [
{
"name": "Observation - Lengan Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lengan Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\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/fc066d29-fc9e-4c85-9214-6562af06181e/_history/MTcxNTY1MzUxMDg0NzE2MTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:25:10 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MzUxMDg0NzE2MTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:25:10 GMT"
},
{
"key": "content-length",
"value": "860"
},
{
"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": "b00dd34b-3689-4215-abed-1dcbcc8a8cad"
},
{
"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\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"fc066d29-fc9e-4c85-9214-6562af06181e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:25:10.847161+00:00\",\n \"versionId\": \"MTcxNTY1MzUxMDg0NzE2MTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}"
}
]
},
{
"name": "Observation - Lengan Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lengan Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\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/fc066d29-fc9e-4c85-9214-6562af06181e/_history/MTcxNTY1MzUxMDg0NzE2MTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:25:10 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1MzUxMDg0NzE2MTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:25:10 GMT"
},
{
"key": "content-length",
"value": "860"
},
{
"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": "b00dd34b-3689-4215-abed-1dcbcc8a8cad"
},
{
"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\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"fc066d29-fc9e-4c85-9214-6562af06181e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:25:10.847161+00:00\",\n \"versionId\": \"MTcxNTY1MzUxMDg0NzE2MTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}"
}
]
}
]
},
{
"name": "Lengan Bawah",
"item": [
{
"name": "Observation - Lengan Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lengan Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"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/\"MTcxNTY1MzQ5NDU2NzY5OTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:24: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/Observation/2d9cdf22-cef0-4527-adc7-d9f03f3c06c1/_history/MTcxNTY1MzQ5NDU2NzY5OTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:24:54 GMT"
},
{
"key": "content-length",
"value": "859"
},
{
"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": "2e4e9854-43ee-45f7-b2a6-0d048e1a1d30"
},
{
"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\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"2d9cdf22-cef0-4527-adc7-d9f03f3c06c1\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:24:54.567699+00:00\",\n \"versionId\": \"MTcxNTY1MzQ5NDU2NzY5OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}"
}
]
},
{
"name": "Observation - Lengan Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lengan Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"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/\"MTcxNTY1MzQ5NDU2NzY5OTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:24: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/Observation/2d9cdf22-cef0-4527-adc7-d9f03f3c06c1/_history/MTcxNTY1MzQ5NDU2NzY5OTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:24:54 GMT"
},
{
"key": "content-length",
"value": "859"
},
{
"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": "2e4e9854-43ee-45f7-b2a6-0d048e1a1d30"
},
{
"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\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"2d9cdf22-cef0-4527-adc7-d9f03f3c06c1\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:24:54.567699+00:00\",\n \"versionId\": \"MTcxNTY1MzQ5NDU2NzY5OTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}"
}
]
}
]
},
{
"name": "Jari Tangan",
"item": [
{
"name": "Observation - Jari Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"7569003\",\n \"display\": \"Finger structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jari Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"7569003\",\n \"display\": \"Finger structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MzU1NzMyMDQ4NzAwMA\""
},
{
"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/9bc2a713-750c-4891-b4aa-538a0c975f2e/_history/MTcxNTY1MzU1NzMyMDQ4NzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:25:57 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:25:57 GMT"
},
{
"key": "content-length",
"value": "946"
},
{
"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": "47c73bb6-ce82-4c80-a847-770884b4e544"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"7569003\",\n \"display\": \"Finger structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"9bc2a713-750c-4891-b4aa-538a0c975f2e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:25:57.320487+00:00\",\n \"versionId\": \"MTcxNTY1MzU1NzMyMDQ4NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Jari Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"7569003\",\n \"display\": \"Finger structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jari Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"7569003\",\n \"display\": \"Finger structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}",
"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/\"MTcxNTY1MzU1NzMyMDQ4NzAwMA\""
},
{
"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/9bc2a713-750c-4891-b4aa-538a0c975f2e/_history/MTcxNTY1MzU1NzMyMDQ4NzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:25:57 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:25:57 GMT"
},
{
"key": "content-length",
"value": "946"
},
{
"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": "47c73bb6-ce82-4c80-a847-770884b4e544"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"7569003\",\n \"display\": \"Finger structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"9bc2a713-750c-4891-b4aa-538a0c975f2e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:25:57.320487+00:00\",\n \"versionId\": \"MTcxNTY1MzU1NzMyMDQ4NzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Kuku Tangan",
"item": [
{
"name": "Observation - Kuku Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kuku Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}",
"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/b00c829f-c4d1-4752-86ff-9365750a5a1d/_history/MTcxNTY1NDUyMTAzNTA4NTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:42:01 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDUyMTAzNTA4NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:42:01 GMT"
},
{
"key": "content-length",
"value": "947"
},
{
"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": "7cd844e7-c5bc-4aee-8ec1-7b0d448585de"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"32456-6\",\n \"display\": \"Physical findings of Nail\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"b00c829f-c4d1-4752-86ff-9365750a5a1d\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:42:01.035085+00:00\",\n \"versionId\": \"MTcxNTY1NDUyMTAzNTA4NTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
},
{
"name": "Observation - Kuku Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kuku Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}",
"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/b00c829f-c4d1-4752-86ff-9365750a5a1d/_history/MTcxNTY1NDUyMTAzNTA4NTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:42:01 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDUyMTAzNTA4NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:42:01 GMT"
},
{
"key": "content-length",
"value": "947"
},
{
"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": "7cd844e7-c5bc-4aee-8ec1-7b0d448585de"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"32456-6\",\n \"display\": \"Physical findings of Nail\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"b00c829f-c4d1-4752-86ff-9365750a5a1d\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:42:01.035085+00:00\",\n \"versionId\": \"MTcxNTY1NDUyMTAzNTA4NTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
}
]
},
{
"name": "Persendian Tangan",
"item": [
{
"name": "Observation - Persendian Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Persendian Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}",
"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": "last-modified",
"value": "Tue, 14 May 2024 02:42:32 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDU1MjMzMTA4ODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/f5612b80-df4f-4155-96fc-319bc911a003/_history/MTcxNTY1NDU1MjMzMTA4ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:42:32 GMT"
},
{
"key": "content-length",
"value": "840"
},
{
"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": "b1e17248-0893-49bc-8367-b130fa136dc6"
},
{
"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\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"f5612b80-df4f-4155-96fc-319bc911a003\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:42:32.331088+00:00\",\n \"versionId\": \"MTcxNTY1NDU1MjMzMTA4ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}"
}
]
},
{
"name": "Observation - Persendian Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Persendian Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}",
"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": "last-modified",
"value": "Tue, 14 May 2024 02:42:32 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDU1MjMzMTA4ODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/f5612b80-df4f-4155-96fc-319bc911a003/_history/MTcxNTY1NDU1MjMzMTA4ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:42:32 GMT"
},
{
"key": "content-length",
"value": "840"
},
{
"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": "b1e17248-0893-49bc-8367-b130fa136dc6"
},
{
"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\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"f5612b80-df4f-4155-96fc-319bc911a003\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:42:32.331088+00:00\",\n \"versionId\": \"MTcxNTY1NDU1MjMzMTA4ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}"
}
]
}
]
},
{
"name": "Tungkai Atas",
"item": [
{
"name": "Observation - Tungkai Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tungkai Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\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/af181a48-ce4b-4759-a560-e5dba79623c1/_history/MTcxNTY1NDU4MDY2NjU0ODAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:43:00 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDU4MDY2NjU0ODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:43:00 GMT"
},
{
"key": "content-length",
"value": "855"
},
{
"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": "5bc948bc-8709-4957-8cd1-07759d3253cc"
},
{
"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\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"af181a48-ce4b-4759-a560-e5dba79623c1\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:43:00.666548+00:00\",\n \"versionId\": \"MTcxNTY1NDU4MDY2NjU0ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}"
}
]
},
{
"name": "Observation - Tungkai Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tungkai Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\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/af181a48-ce4b-4759-a560-e5dba79623c1/_history/MTcxNTY1NDU4MDY2NjU0ODAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:43:00 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDU4MDY2NjU0ODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:43:00 GMT"
},
{
"key": "content-length",
"value": "855"
},
{
"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": "5bc948bc-8709-4957-8cd1-07759d3253cc"
},
{
"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\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"af181a48-ce4b-4759-a560-e5dba79623c1\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:43:00.666548+00:00\",\n \"versionId\": \"MTcxNTY1NDU4MDY2NjU0ODAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}"
}
]
}
]
},
{
"name": "Tungkai Bawah",
"item": [
{
"name": "Observation - Tungkai Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tungkai Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"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/ba4f22fe-6a3d-4786-a67d-cdeeeefb7953/_history/MTcxNTY1NDYwNjc3NTAyNzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:43:26 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDYwNjc3NTAyNzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:43:26 GMT"
},
{
"key": "content-length",
"value": "855"
},
{
"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": "b33c10a5-e180-4ac2-a47d-1c2fada5f49f"
},
{
"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\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"ba4f22fe-6a3d-4786-a67d-cdeeeefb7953\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:43:26.775027+00:00\",\n \"versionId\": \"MTcxNTY1NDYwNjc3NTAyNzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}"
}
]
},
{
"name": "Observation - Tungkai Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tungkai Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"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/ba4f22fe-6a3d-4786-a67d-cdeeeefb7953/_history/MTcxNTY1NDYwNjc3NTAyNzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:43:26 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDYwNjc3NTAyNzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:43:26 GMT"
},
{
"key": "content-length",
"value": "855"
},
{
"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": "b33c10a5-e180-4ac2-a47d-1c2fada5f49f"
},
{
"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\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"ba4f22fe-6a3d-4786-a67d-cdeeeefb7953\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:43:26.775027+00:00\",\n \"versionId\": \"MTcxNTY1NDYwNjc3NTAyNzAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}"
}
]
}
]
},
{
"name": "Jari Kaki",
"item": [
{
"name": "Observation - Jari Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"29707007\",\n \"display\": \"Toe structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jari Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"29707007\",\n \"display\": \"Toe structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\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": "Tue, 14 May 2024 02:43: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/Observation/54f1f2cf-73b7-451e-864b-df0e894fc1e4/_history/MTcxNTY1NDYyODg2MTMxOTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDYyODg2MTMxOTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:43:48 GMT"
},
{
"key": "content-length",
"value": "942"
},
{
"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": "0929ddb2-c8ee-40d4-bf5a-78fbf667cc98"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"29707007\",\n \"display\": \"Toe structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"54f1f2cf-73b7-451e-864b-df0e894fc1e4\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:43:48.861319+00:00\",\n \"versionId\": \"MTcxNTY1NDYyODg2MTMxOTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Jari Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"29707007\",\n \"display\": \"Toe structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jari Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"29707007\",\n \"display\": \"Toe structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\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": "Tue, 14 May 2024 02:43: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/Observation/54f1f2cf-73b7-451e-864b-df0e894fc1e4/_history/MTcxNTY1NDYyODg2MTMxOTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDYyODg2MTMxOTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:43:48 GMT"
},
{
"key": "content-length",
"value": "942"
},
{
"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": "0929ddb2-c8ee-40d4-bf5a-78fbf667cc98"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"29707007\",\n \"display\": \"Toe structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"54f1f2cf-73b7-451e-864b-df0e894fc1e4\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:43:48.861319+00:00\",\n \"versionId\": \"MTcxNTY1NDYyODg2MTMxOTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Kuku Kaki",
"item": [
{
"name": "Observation - Kuku Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kuku Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\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/fbd1ee39-73fd-46e5-a1ae-f48b29dbf3f4/_history/MTcxNTY1NDY1NTQ5NTEwNTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:44:15 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDY1NTQ5NTEwNTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:44:15 GMT"
},
{
"key": "content-length",
"value": "948"
},
{
"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": "6a8943c5-6e1a-4ed5-8550-d794b967cb91"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"32456-6\",\n \"display\": \"Physical findings of Nail\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"fbd1ee39-73fd-46e5-a1ae-f48b29dbf3f4\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:44:15.495105+00:00\",\n \"versionId\": \"MTcxNTY1NDY1NTQ5NTEwNTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
},
{
"name": "Observation - Kuku Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kuku Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\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/fbd1ee39-73fd-46e5-a1ae-f48b29dbf3f4/_history/MTcxNTY1NDY1NTQ5NTEwNTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:44:15 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDY1NTQ5NTEwNTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:44:15 GMT"
},
{
"key": "content-length",
"value": "948"
},
{
"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": "6a8943c5-6e1a-4ed5-8550-d794b967cb91"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"32456-6\",\n \"display\": \"Physical findings of Nail\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"fbd1ee39-73fd-46e5-a1ae-f48b29dbf3f4\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:44:15.495105+00:00\",\n \"versionId\": \"MTcxNTY1NDY1NTQ5NTEwNTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
}
]
},
{
"name": "Persendian Kaki",
"item": [
{
"name": "Observation - Persendian Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Persendian Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\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/72357ac8-2a0a-4dbb-8451-48c4c9080e38/_history/MTcxNTY1NDY3MzA0MDcyMTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:44:33 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDY3MzA0MDcyMTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:44:33 GMT"
},
{
"key": "content-length",
"value": "949"
},
{
"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": "86cb407b-37ee-41f0-a8ee-b853bed80408"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"72357ac8-2a0a-4dbb-8451-48c4c9080e38\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:44:33.040721+00:00\",\n \"versionId\": \"MTcxNTY1NDY3MzA0MDcyMTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\n}"
}
]
},
{
"name": "Observation - Persendian Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Persendian Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n ],\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\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/72357ac8-2a0a-4dbb-8451-48c4c9080e38/_history/MTcxNTY1NDY3MzA0MDcyMTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:44:33 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDY3MzA0MDcyMTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:44:33 GMT"
},
{
"key": "content-length",
"value": "949"
},
{
"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": "86cb407b-37ee-41f0-a8ee-b853bed80408"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:23:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"72357ac8-2a0a-4dbb-8451-48c4c9080e38\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:23:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:44:33.040721+00:00\",\n \"versionId\": \"MTcxNTY1NDY3MzA0MDcyMTAwMA\"\n },\n \"performer\": [\n {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\n}"
}
]
}
]
}
]
},
{
"name": "Pemeriksaan Antropometri",
"item": [
{
"name": "Observation - Berat Badan",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:26:00+00:00\",\n \"issued\": \"2024-03-15T01:26:00+00:00\",\n \"valueQuantity\": {\n \"value\": 75,\n \"unit\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"kg\"\n }\n}",
"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": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:26:00+00:00\",\n \"issued\": \"2024-03-15T01:26:00+00:00\",\n \"valueQuantity\": {\n \"value\": 75,\n \"unit\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"kg\"\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": "etag",
"value": "W/\"MTcxMDg3NzcyMTk3ODgwNjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:48:41 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/af4930fd-38de-420f-a4fd-c0b3e204daf1/_history/MTcxMDg3NzcyMTk3ODgwNjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:48:41 GMT"
},
{
"key": "Content-Length",
"value": "4328"
},
{
"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": "3a7a0c19-4725-473d-a9cf-16f0a1fcaa65"
},
{
"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\": \"2024-03-15T01:26:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"af4930fd-38de-420f-a4fd-c0b3e204daf1\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:26:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:48:41.978806+00:00\",\n \"versionId\": \"MTcxMDg3NzcyMTk3ODgwNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"kg\",\n \"value\": 75\n }\n}"
}
]
},
{
"name": "Observation - Tinggi Badan",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:27:00+00:00\",\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tinggi Badan",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:27:00+00:00\",\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:49:34 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/c045fbc6-ffae-4b9b-90fb-38baff50ebe8/_history/MTcxMDg3Nzc3NDk1MjgyMjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3Nzc3NDk1MjgyMjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:49:34 GMT"
},
{
"key": "Content-Length",
"value": "4328"
},
{
"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": "5abc27c6-20f1-4c84-816e-5bd5f6dd8b5e"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c045fbc6-ffae-4b9b-90fb-38baff50ebe8\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:49:34.952822+00:00\",\n \"versionId\": \"MTcxMDg3Nzc3NDk1MjgyMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"cm\",\n \"value\": 160\n }\n}"
}
]
},
{
"name": "Observation - Tinggi Badan",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:27:00+00:00\",\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tinggi Badan",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:27:00+00:00\",\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:49:34 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/c045fbc6-ffae-4b9b-90fb-38baff50ebe8/_history/MTcxMDg3Nzc3NDk1MjgyMjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3Nzc3NDk1MjgyMjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:49:34 GMT"
},
{
"key": "Content-Length",
"value": "4328"
},
{
"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": "5abc27c6-20f1-4c84-816e-5bd5f6dd8b5e"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c045fbc6-ffae-4b9b-90fb-38baff50ebe8\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:49:34.952822+00:00\",\n \"versionId\": \"MTcxMDg3Nzc3NDk1MjgyMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"cm\",\n \"value\": 160\n }\n}"
}
]
},
{
"name": "Observation - Berat Badan",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:26:00+00:00\",\n \"issued\": \"2024-03-15T01:26:00+00:00\",\n \"valueQuantity\": {\n \"value\": 75,\n \"unit\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"kg\"\n }\n}",
"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": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:26:00+00:00\",\n \"issued\": \"2024-03-15T01:26:00+00:00\",\n \"valueQuantity\": {\n \"value\": 75,\n \"unit\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"kg\"\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": "etag",
"value": "W/\"MTcxMDg3NzcyMTk3ODgwNjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:48:41 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/af4930fd-38de-420f-a4fd-c0b3e204daf1/_history/MTcxMDg3NzcyMTk3ODgwNjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:48:41 GMT"
},
{
"key": "Content-Length",
"value": "4328"
},
{
"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": "3a7a0c19-4725-473d-a9cf-16f0a1fcaa65"
},
{
"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\": \"2024-03-15T01:26:00+00:00\",\n \"encounter\": {\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"af4930fd-38de-420f-a4fd-c0b3e204daf1\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:26:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:48:41.978806+00:00\",\n \"versionId\": \"MTcxMDg3NzcyMTk3ODgwNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"kg\",\n \"value\": 75\n }\n}"
}
]
}
]
}
]
},
{
"name": "05. Pemeriksaan Psikologis",
"item": [
{
"name": "Status Psikologis",
"item": [
{
"name": "Observation - Status Psikologis",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8693-4\",\n \"display\": \"Mental Status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:27:00+00:00\",\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Status Psikologis",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8693-4\",\n \"display\": \"Mental Status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:27:00+00:00\",\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/04893498-7428-456f-9ad6-7e4e88d9ad53/_history/MTcxNTY2Nzk4MjcxNjE0MjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY2Nzk4MjcxNjE0MjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 06:26:22 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 06:26:22 GMT"
},
{
"key": "content-length",
"value": "809"
},
{
"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": "724894f5-3242-47a1-90ef-4610544ae07a"
},
{
"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\": \"8693-4\",\n \"display\": \"Mental Status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:27:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"04893498-7428-456f-9ad6-7e4e88d9ad53\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T06:26:22.716142+00:00\",\n \"versionId\": \"MTcxNTY2Nzk4MjcxNjE0MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Status Psikologis",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8693-4\",\n \"display\": \"Mental Status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:27:00+00:00\",\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Status Psikologis",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8693-4\",\n \"display\": \"Mental Status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:27:00+00:00\",\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/04893498-7428-456f-9ad6-7e4e88d9ad53/_history/MTcxNTY2Nzk4MjcxNjE0MjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY2Nzk4MjcxNjE0MjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 06:26:22 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 06:26:22 GMT"
},
{
"key": "content-length",
"value": "809"
},
{
"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": "724894f5-3242-47a1-90ef-4610544ae07a"
},
{
"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\": \"8693-4\",\n \"display\": \"Mental Status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:27:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"04893498-7428-456f-9ad6-7e4e88d9ad53\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T06:26:22.716142+00:00\",\n \"versionId\": \"MTcxNTY2Nzk4MjcxNjE0MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
}
]
},
{
"name": "06. Pemeriksaan Penunjang",
"item": [
{
"name": "Laboratorium",
"item": [
{
"name": "Pemeriksaan Gula Darah Puasa",
"item": [
{
"name": "ServiceRequest - Gula Darah Puasa",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Gula Darah Puasa",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f/_history/MTcxMDg0NDczMjc4ODg4ODAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 10:38:52 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg0NDczMjc4ODg4ODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 10:38:52 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": "43259e2c-7a77-4aaa-9b31-d11d0d4592a7"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c7cc7f6c-6291-4d11-8ad5-3dec7505735f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T10:38:52.788888+00:00\",\n \"versionId\": \"MTcxMDg0NDczMjc4ODg4ODAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Gula Darah Puasa",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Gula Darah Puasa",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDg0NjU5NzM5Mjc1MDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 11:09: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/Specimen/939d61b3-1b80-4f28-97e6-ea6c5486672f/_history/MTcxMDg0NjU5NzM5Mjc1MDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 11:09:57 GMT"
},
{
"key": "Content-Length",
"value": "1677"
},
{
"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": "2d6f1ce7-66b7-4ffa-bb64-34df709c4705"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"939d61b3-1b80-4f28-97e6-ea6c5486672f\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T11:09:57.392750+00:00\",\n \"versionId\": \"MTcxMDg0NjU5NzM5Mjc1MDAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Gula Darah Puasa",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000022\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/939d61b3-1b80-4f28-97e6-ea6c5486672f\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 220,\n \"unit\": \"mg/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gula Darah Puasa",
"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\": \"O000022\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/939d61b3-1b80-4f28-97e6-ea6c5486672f\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 220,\n \"unit\": \"mg/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "etag",
"value": "W/\"MTcxMDg1NTU3MDQ3OTg1MTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 13:39:30 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/Observation/6aad23a9-e7dc-40cb-9432-af7db088c84b/_history/MTcxMDg1NTU3MDQ3OTg1MTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 13:39:30 GMT"
},
{
"key": "Content-Length",
"value": "1101"
},
{
"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": "a5cad35f-0a2f-4281-b4e3-85a09b5985ad"
},
{
"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/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"6aad23a9-e7dc-40cb-9432-af7db088c84b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000022\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T13:39:30.479851+00:00\",\n \"versionId\": \"MTcxMDg1NTU3MDQ3OTg1MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/939d61b3-1b80-4f28-97e6-ea6c5486672f\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dl\",\n \"value\": 220\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Gula Darah Puasa",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/6aad23a9-e7dc-40cb-9432-af7db088c84b\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/939d61b3-1b80-4f28-97e6-ea6c5486672f\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Gula Darah Puasa",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/6aad23a9-e7dc-40cb-9432-af7db088c84b\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/939d61b3-1b80-4f28-97e6-ea6c5486672f\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\"\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": "Tue, 19 Mar 2024 16:20:21 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/8dbb9010-c14a-4cbb-9f13-e02ab50f337b/_history/MTcxMDg2NTIyMTQyNDU1MDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NTIyMTQyNDU1MDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:20:21 GMT"
},
{
"key": "Content-Length",
"value": "1191"
},
{
"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": "e72978cc-917a-4dcf-90d7-7405041403dd"
},
{
"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/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"8dbb9010-c14a-4cbb-9f13-e02ab50f337b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:20:21.424550+00:00\",\n \"versionId\": \"MTcxMDg2NTIyMTQyNDU1MDAwMA\"\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/6aad23a9-e7dc-40cb-9432-af7db088c84b\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/939d61b3-1b80-4f28-97e6-ea6c5486672f\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Gula Darah Puasa",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Gula Darah Puasa",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDg0NjU5NzM5Mjc1MDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 11:09: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/Specimen/939d61b3-1b80-4f28-97e6-ea6c5486672f/_history/MTcxMDg0NjU5NzM5Mjc1MDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 11:09:57 GMT"
},
{
"key": "Content-Length",
"value": "1677"
},
{
"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": "2d6f1ce7-66b7-4ffa-bb64-34df709c4705"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"F\",\n \"display\": \"Patient was fasting prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"939d61b3-1b80-4f28-97e6-ea6c5486672f\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T11:09:57.392750+00:00\",\n \"versionId\": \"MTcxMDg0NjU5NzM5Mjc1MDAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Gula Darah Puasa",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000022\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/939d61b3-1b80-4f28-97e6-ea6c5486672f\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 220,\n \"unit\": \"mg/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gula Darah Puasa",
"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\": \"O000022\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/939d61b3-1b80-4f28-97e6-ea6c5486672f\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 220,\n \"unit\": \"mg/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "etag",
"value": "W/\"MTcxMDg1NTU3MDQ3OTg1MTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 13:39:30 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/Observation/6aad23a9-e7dc-40cb-9432-af7db088c84b/_history/MTcxMDg1NTU3MDQ3OTg1MTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 13:39:30 GMT"
},
{
"key": "Content-Length",
"value": "1101"
},
{
"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": "a5cad35f-0a2f-4281-b4e3-85a09b5985ad"
},
{
"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/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\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\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"6aad23a9-e7dc-40cb-9432-af7db088c84b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000022\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T13:39:30.479851+00:00\",\n \"versionId\": \"MTcxMDg1NTU3MDQ3OTg1MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/939d61b3-1b80-4f28-97e6-ea6c5486672f\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dl\",\n \"value\": 220\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Gula Darah Puasa",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/6aad23a9-e7dc-40cb-9432-af7db088c84b\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/939d61b3-1b80-4f28-97e6-ea6c5486672f\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Gula Darah Puasa",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/6aad23a9-e7dc-40cb-9432-af7db088c84b\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/939d61b3-1b80-4f28-97e6-ea6c5486672f\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\"\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": "Tue, 19 Mar 2024 16:20:21 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/8dbb9010-c14a-4cbb-9f13-e02ab50f337b/_history/MTcxMDg2NTIyMTQyNDU1MDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NTIyMTQyNDU1MDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:20:21 GMT"
},
{
"key": "Content-Length",
"value": "1191"
},
{
"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": "e72978cc-917a-4dcf-90d7-7405041403dd"
},
{
"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/c7cc7f6c-6291-4d11-8ad5-3dec7505735f\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"conclusion\": \"Hasil pemeriksaan gula darah puasa dinyatakan tinggi\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"8dbb9010-c14a-4cbb-9f13-e02ab50f337b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:20:21.424550+00:00\",\n \"versionId\": \"MTcxMDg2NTIyMTQyNDU1MDAwMA\"\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/6aad23a9-e7dc-40cb-9432-af7db088c84b\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/939d61b3-1b80-4f28-97e6-ea6c5486672f\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Gula Darah Puasa",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Gula Darah Puasa",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/c7cc7f6c-6291-4d11-8ad5-3dec7505735f/_history/MTcxMDg0NDczMjc4ODg4ODAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 10:38:52 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg0NDczMjc4ODg4ODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 10:38:52 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": "43259e2c-7a77-4aaa-9b31-d11d0d4592a7"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1558-6\",\n \"display\": \"Fasting glucose [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Gula Darah Puasa Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c7cc7f6c-6291-4d11-8ad5-3dec7505735f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T10:38:52.788888+00:00\",\n \"versionId\": \"MTcxMDg0NDczMjc4ODg4ODAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Gula Darah 2 Jam PP",
"item": [
{
"name": "ServiceRequest - Gula Darah 2 Jam PP",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000002\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah 2 Jam PP Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Gula Darah 2 Jam PP",
"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\": \"0000002\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah 2 Jam PP Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "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/a7d7ecee-c197-463d-8776-ec560ab3fed6/_history/MTcxMDg1NjMyMTUzMzQ3MjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg1NjMyMTUzMzQ3MjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 13:52:01 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 13:52:01 GMT"
},
{
"key": "Content-Length",
"value": "1125"
},
{
"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": "226db25f-df8e-423b-98c6-fe83e35d0a02"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Gula Darah 2 Jam PP Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a7d7ecee-c197-463d-8776-ec560ab3fed6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000002\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T13:52:01.533472+00:00\",\n \"versionId\": \"MTcxMDg1NjMyMTUzMzQ3MjAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Gula Darah 2 Jam PP",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000002\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Gula Darah 2 Jam PP",
"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\": \"0000002\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 13:56:14 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg1NjU3NDU3NzQwODAwMA\""
},
{
"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/Specimen/0cada093-d77e-4d0b-8031-5756f3036a06/_history/MTcxMDg1NjU3NDU3NzQwODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 13:56:14 GMT"
},
{
"key": "Content-Length",
"value": "1698"
},
{
"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": "0e4b112d-b588-4a7f-87fd-a0ec2eb10b65"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"0cada093-d77e-4d0b-8031-5756f3036a06\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000002\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T13:56:14.577408+00:00\",\n \"versionId\": \"MTcxMDg1NjU3NDU3NzQwODAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Gula Darah 2 Jam PP",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000023\"\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\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/0cada093-d77e-4d0b-8031-5756f3036a06\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 175,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gula Darah 2 Jam PP",
"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\": \"O000023\"\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\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/0cada093-d77e-4d0b-8031-5756f3036a06\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 175,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "etag",
"value": "W/\"MTcxMDg2NDY3NDY1Mzg2MTAwMA\""
},
{
"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/fabd2336-ecbe-4c9c-903b-49fff3c21e37/_history/MTcxMDg2NDY3NDY1Mzg2MTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:11:14 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:11:14 GMT"
},
{
"key": "Content-Length",
"value": "1081"
},
{
"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": "41886c20-1c72-4877-bded-e828ae3dc26b"
},
{
"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/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\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\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/null\"\n },\n \"id\": \"fabd2336-ecbe-4c9c-903b-49fff3c21e37\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000023\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:11:14.653861+00:00\",\n \"versionId\": \"MTcxMDg2NDY3NDY1Mzg2MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/0cada093-d77e-4d0b-8031-5756f3036a06\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 175\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Gula Darah 2 Jam PP",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah 2 Jam PP\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/fabd2336-ecbe-4c9c-903b-49fff3c21e37\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/0cada093-d77e-4d0b-8031-5756f3036a06\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah 2 jam PP dinyatakan tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Gula Darah 2 Jam PP",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah 2 Jam PP\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/fabd2336-ecbe-4c9c-903b-49fff3c21e37\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/0cada093-d77e-4d0b-8031-5756f3036a06\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah 2 jam PP dinyatakan tinggi\"\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": "Tue, 19 Mar 2024 16:35:57 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NjE1NzMzODUxMjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/a286f992-26aa-4600-a2a2-2c3822e6d7f8/_history/MTcxMDg2NjE1NzMzODUxMjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:35:57 GMT"
},
{
"key": "Content-Length",
"value": "1209"
},
{
"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": "ba9a5cf0-116d-43e2-a866-b5eaf82278b2"
},
{
"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/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah 2 Jam PP\"\n },\n \"conclusion\": \"Hasil pemeriksaan gula darah 2 jam PP dinyatakan tinggi\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a286f992-26aa-4600-a2a2-2c3822e6d7f8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:35:57.338512+00:00\",\n \"versionId\": \"MTcxMDg2NjE1NzMzODUxMjAwMA\"\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/fabd2336-ecbe-4c9c-903b-49fff3c21e37\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/0cada093-d77e-4d0b-8031-5756f3036a06\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Gula Darah 2 Jam PP",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000002\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah 2 Jam PP Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Gula Darah 2 Jam PP",
"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\": \"0000002\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Gula Darah 2 Jam PP Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "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/a7d7ecee-c197-463d-8776-ec560ab3fed6/_history/MTcxMDg1NjMyMTUzMzQ3MjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg1NjMyMTUzMzQ3MjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 13:52:01 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 13:52:01 GMT"
},
{
"key": "Content-Length",
"value": "1125"
},
{
"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": "226db25f-df8e-423b-98c6-fe83e35d0a02"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Puasa\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Gula Darah 2 Jam PP Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a7d7ecee-c197-463d-8776-ec560ab3fed6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000002\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T13:52:01.533472+00:00\",\n \"versionId\": \"MTcxMDg1NjMyMTUzMzQ3MjAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Gula Darah 2 Jam PP",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah 2 Jam PP\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/fabd2336-ecbe-4c9c-903b-49fff3c21e37\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/0cada093-d77e-4d0b-8031-5756f3036a06\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah 2 jam PP dinyatakan tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Gula Darah 2 Jam PP",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah 2 Jam PP\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/fabd2336-ecbe-4c9c-903b-49fff3c21e37\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/0cada093-d77e-4d0b-8031-5756f3036a06\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan gula darah 2 jam PP dinyatakan tinggi\"\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": "Tue, 19 Mar 2024 16:35:57 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NjE1NzMzODUxMjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/a286f992-26aa-4600-a2a2-2c3822e6d7f8/_history/MTcxMDg2NjE1NzMzODUxMjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:35:57 GMT"
},
{
"key": "Content-Length",
"value": "1209"
},
{
"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": "ba9a5cf0-116d-43e2-a866-b5eaf82278b2"
},
{
"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/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah 2 Jam PP\"\n },\n \"conclusion\": \"Hasil pemeriksaan gula darah 2 jam PP dinyatakan tinggi\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a286f992-26aa-4600-a2a2-2c3822e6d7f8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:35:57.338512+00:00\",\n \"versionId\": \"MTcxMDg2NjE1NzMzODUxMjAwMA\"\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/fabd2336-ecbe-4c9c-903b-49fff3c21e37\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/0cada093-d77e-4d0b-8031-5756f3036a06\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Gula Darah 2 Jam PP",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000023\"\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\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/0cada093-d77e-4d0b-8031-5756f3036a06\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 175,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gula Darah 2 Jam PP",
"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\": \"O000023\"\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\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/0cada093-d77e-4d0b-8031-5756f3036a06\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 175,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "etag",
"value": "W/\"MTcxMDg2NDY3NDY1Mzg2MTAwMA\""
},
{
"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/fabd2336-ecbe-4c9c-903b-49fff3c21e37/_history/MTcxMDg2NDY3NDY1Mzg2MTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:11:14 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:11:14 GMT"
},
{
"key": "Content-Length",
"value": "1081"
},
{
"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": "41886c20-1c72-4877-bded-e828ae3dc26b"
},
{
"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/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\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\": \"1521-4\",\n \"display\": \"Glucose [Mass/volume] in Serum or Plasma --2 hours post meal\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/null\"\n },\n \"id\": \"fabd2336-ecbe-4c9c-903b-49fff3c21e37\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000023\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:11:14.653861+00:00\",\n \"versionId\": \"MTcxMDg2NDY3NDY1Mzg2MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/0cada093-d77e-4d0b-8031-5756f3036a06\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 175\n }\n}"
}
]
},
{
"name": "Specimen - Gula Darah 2 Jam PP",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000002\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Gula Darah 2 Jam PP",
"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\": \"0000002\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 13:56:14 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg1NjU3NDU3NzQwODAwMA\""
},
{
"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/Specimen/0cada093-d77e-4d0b-8031-5756f3036a06/_history/MTcxMDg1NjU3NDU3NzQwODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 13:56:14 GMT"
},
{
"key": "Content-Length",
"value": "1698"
},
{
"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": "0e4b112d-b588-4a7f-87fd-a0ec2eb10b65"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"0cada093-d77e-4d0b-8031-5756f3036a06\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000002\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T13:56:14.577408+00:00\",\n \"versionId\": \"MTcxMDg1NjU3NDU3NzQwODAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/a7d7ecee-c197-463d-8776-ec560ab3fed6\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Profil Lipid",
"item": [
{
"name": "ServiceRequest - Profil Lipid",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000004\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Profil Lipid Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Profil Lipid",
"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\": \"0000004\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Profil Lipid Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "etag",
"value": "W/\"MTcxMDg2NjUzNTgxODQyNjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/a333b6be-80b6-4c6a-a734-9be8bca925c2/_history/MTcxMDg2NjUzNTgxODQyNjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:42:15 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:42:15 GMT"
},
{
"key": "Content-Length",
"value": "1085"
},
{
"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": "3c93d5e1-a529-4f79-9272-5ad89664aaed"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Profil Lipid Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a333b6be-80b6-4c6a-a734-9be8bca925c2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000004\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:42:15.818426+00:00\",\n \"versionId\": \"MTcxMDg2NjUzNTgxODQyNjAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Profil Lipid",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000004\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Profil Lipid",
"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\": \"0000004\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\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/b8f35ecd-bf52-45fe-a352-53d045519b82/_history/MTcxMDg2NjgyNjgyNzE3NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NjgyNjgyNzE3NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:47:06 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:47:06 GMT"
},
{
"key": "Content-Length",
"value": "1698"
},
{
"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": "8e416525-56e2-4ad7-a727-f96e81ef6e3a"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"b8f35ecd-bf52-45fe-a352-53d045519b82\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000004\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:47:06.827176+00:00\",\n \"versionId\": \"MTcxMDg2NjgyNjgyNzE3NjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/a333b6be-80b6-4c6a-a734-9be8bca925c2\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Kolesterol",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 206,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kolesterol",
"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\": \"O000025\"\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\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 206,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "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/d1bdce1b-1564-4f8d-8ae6-fe558890d7e9/_history/MTcxMDg2NzIyNjg5NjIwOTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NzIyNjg5NjIwOTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:53:46 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:53:46 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": "1c3913cf-3068-41cb-9c63-245fb1b9fac9"
},
{
"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/a333b6be-80b6-4c6a-a734-9be8bca925c2\"\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\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"d1bdce1b-1564-4f8d-8ae6-fe558890d7e9\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:53:46.896209+00:00\",\n \"versionId\": \"MTcxMDg2NzIyNjg5NjIwOTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/b8f35ecd-bf52-45fe-a352-53d045519b82\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 206\n }\n}"
}
]
},
{
"name": "Observation - Trigliserida",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2571-8\",\n \"display\": \"Triglyceride [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Trigliserida",
"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\": \"O000025\"\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\": \"2571-8\",\n \"display\": \"Triglyceride [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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/661b9315-c49f-4e35-880d-9abe726072ab/_history/MTcxMDg2NzM2Njk3NDM2MTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NzM2Njk3NDM2MTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:56:06 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:56:06 GMT"
},
{
"key": "Content-Length",
"value": "1098"
},
{
"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": "73d43190-b4b6-4dc2-9e98-4110dd406423"
},
{
"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/a333b6be-80b6-4c6a-a734-9be8bca925c2\"\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\": \"2571-8\",\n \"display\": \"Triglyceride [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"661b9315-c49f-4e35-880d-9abe726072ab\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:56:06.974361+00:00\",\n \"versionId\": \"MTcxMDg2NzM2Njk3NDM2MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/b8f35ecd-bf52-45fe-a352-53d045519b82\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 160\n }\n}"
}
]
},
{
"name": "Observation - LDL",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2089-1\",\n \"display\": \"Cholesterol in LDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 140,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - LDL",
"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\": \"O000025\"\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\": \"2089-1\",\n \"display\": \"Cholesterol in LDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 140,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "etag",
"value": "W/\"MTcxMDg2NzUyNzE2NDcwNDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:58:47 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/3ba0f5b0-4bcf-4c6d-a706-b3ea10772f4f/_history/MTcxMDg2NzUyNzE2NDcwNDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:58:47 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": "9b7b82a3-c94f-46ff-bf5a-1b04a2f62f6b"
},
{
"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/a333b6be-80b6-4c6a-a734-9be8bca925c2\"\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\": \"2089-1\",\n \"display\": \"Cholesterol in LDL [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"3ba0f5b0-4bcf-4c6d-a706-b3ea10772f4f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:58:47.164704+00:00\",\n \"versionId\": \"MTcxMDg2NzUyNzE2NDcwNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/b8f35ecd-bf52-45fe-a352-53d045519b82\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 140\n }\n}"
}
]
},
{
"name": "Observation - HDL",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2085-9\",\n \"display\": \"Cholesterol in HDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 38,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - HDL",
"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\": \"O000025\"\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\": \"2085-9\",\n \"display\": \"Cholesterol in HDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 38,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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/d8882227-9883-4579-ba8c-2ff6dabf2f5c/_history/MTcxMDg2NzcwMDk2NzY2OTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NzcwMDk2NzY2OTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:01:40 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:01:40 GMT"
},
{
"key": "Content-Length",
"value": "1103"
},
{
"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": "cb0962ad-1e71-4e25-af04-6903ee0b9246"
},
{
"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/a333b6be-80b6-4c6a-a734-9be8bca925c2\"\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\": \"2085-9\",\n \"display\": \"Cholesterol in HDL [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"d8882227-9883-4579-ba8c-2ff6dabf2f5c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:01:40.967669+00:00\",\n \"versionId\": \"MTcxMDg2NzcwMDk2NzY2OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/b8f35ecd-bf52-45fe-a352-53d045519b82\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 38\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Profil Lipid",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_KolesterolTotal}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_Trigliseride}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_LDL}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_HDL}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_ProfilLipid}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan profil lipid dengan rincian Kolesterol tinggi, Trigliserida tinggi, LDL tinggi, dan HDL rendah menunjukkan adanya risiko terkena penyakit jantung\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Profil Lipid",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_KolesterolTotal}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_Trigliseride}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_LDL}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_HDL}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_ProfilLipid}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan profil lipid dengan rincian Kolesterol tinggi, Trigliserida tinggi, LDL tinggi, dan HDL rendah menunjukkan adanya risiko terkena penyakit jantung\"\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/44d5ced9-0f94-433c-beab-2a11b3b959ff/_history/MTcxMDg2Nzg5NzYzODMwMDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:04:57 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2Nzg5NzYzODMwMDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:04:57 GMT"
},
{
"key": "Content-Length",
"value": "1477"
},
{
"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": "ced72323-4ebf-46e6-a1ad-036491b2ecbe"
},
{
"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/a333b6be-80b6-4c6a-a734-9be8bca925c2\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"conclusion\": \"Hasil pemeriksaan profil lipid dengan rincian Kolesterol tinggi, Trigliserida tinggi, LDL tinggi, dan HDL rendah menunjukkan adanya risiko terkena penyakit jantung\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"44d5ced9-0f94-433c-beab-2a11b3b959ff\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:04:57.638300+00:00\",\n \"versionId\": \"MTcxMDg2Nzg5NzYzODMwMDAwMA\"\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/d1bdce1b-1564-4f8d-8ae6-fe558890d7e9\"\n },\n {\n \"reference\": \"Observation/661b9315-c49f-4e35-880d-9abe726072ab\"\n },\n {\n \"reference\": \"Observation/3ba0f5b0-4bcf-4c6d-a706-b3ea10772f4f\"\n },\n {\n \"reference\": \"Observation/d8882227-9883-4579-ba8c-2ff6dabf2f5c\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/b8f35ecd-bf52-45fe-a352-53d045519b82\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Profil Lipid",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_KolesterolTotal}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_Trigliseride}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_LDL}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_HDL}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_ProfilLipid}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan profil lipid dengan rincian Kolesterol tinggi, Trigliserida tinggi, LDL tinggi, dan HDL rendah menunjukkan adanya risiko terkena penyakit jantung\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Profil Lipid",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_KolesterolTotal}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_Trigliseride}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_LDL}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_HDL}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_ProfilLipid}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan profil lipid dengan rincian Kolesterol tinggi, Trigliserida tinggi, LDL tinggi, dan HDL rendah menunjukkan adanya risiko terkena penyakit jantung\"\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/44d5ced9-0f94-433c-beab-2a11b3b959ff/_history/MTcxMDg2Nzg5NzYzODMwMDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:04:57 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2Nzg5NzYzODMwMDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:04:57 GMT"
},
{
"key": "Content-Length",
"value": "1477"
},
{
"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": "ced72323-4ebf-46e6-a1ad-036491b2ecbe"
},
{
"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/a333b6be-80b6-4c6a-a734-9be8bca925c2\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"conclusion\": \"Hasil pemeriksaan profil lipid dengan rincian Kolesterol tinggi, Trigliserida tinggi, LDL tinggi, dan HDL rendah menunjukkan adanya risiko terkena penyakit jantung\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"44d5ced9-0f94-433c-beab-2a11b3b959ff\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:04:57.638300+00:00\",\n \"versionId\": \"MTcxMDg2Nzg5NzYzODMwMDAwMA\"\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/d1bdce1b-1564-4f8d-8ae6-fe558890d7e9\"\n },\n {\n \"reference\": \"Observation/661b9315-c49f-4e35-880d-9abe726072ab\"\n },\n {\n \"reference\": \"Observation/3ba0f5b0-4bcf-4c6d-a706-b3ea10772f4f\"\n },\n {\n \"reference\": \"Observation/d8882227-9883-4579-ba8c-2ff6dabf2f5c\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/b8f35ecd-bf52-45fe-a352-53d045519b82\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - HDL",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2085-9\",\n \"display\": \"Cholesterol in HDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 38,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - HDL",
"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\": \"O000025\"\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\": \"2085-9\",\n \"display\": \"Cholesterol in HDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 38,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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/d8882227-9883-4579-ba8c-2ff6dabf2f5c/_history/MTcxMDg2NzcwMDk2NzY2OTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NzcwMDk2NzY2OTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:01:40 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:01:40 GMT"
},
{
"key": "Content-Length",
"value": "1103"
},
{
"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": "cb0962ad-1e71-4e25-af04-6903ee0b9246"
},
{
"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/a333b6be-80b6-4c6a-a734-9be8bca925c2\"\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\": \"2085-9\",\n \"display\": \"Cholesterol in HDL [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"d8882227-9883-4579-ba8c-2ff6dabf2f5c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:01:40.967669+00:00\",\n \"versionId\": \"MTcxMDg2NzcwMDk2NzY2OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/b8f35ecd-bf52-45fe-a352-53d045519b82\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 38\n }\n}"
}
]
},
{
"name": "Observation - Kolesterol",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 206,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kolesterol",
"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\": \"O000025\"\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\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 206,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "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/d1bdce1b-1564-4f8d-8ae6-fe558890d7e9/_history/MTcxMDg2NzIyNjg5NjIwOTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NzIyNjg5NjIwOTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:53:46 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:53:46 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": "1c3913cf-3068-41cb-9c63-245fb1b9fac9"
},
{
"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/a333b6be-80b6-4c6a-a734-9be8bca925c2\"\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\": \"2093-3\",\n \"display\": \"Cholesterol [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"d1bdce1b-1564-4f8d-8ae6-fe558890d7e9\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:53:46.896209+00:00\",\n \"versionId\": \"MTcxMDg2NzIyNjg5NjIwOTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/b8f35ecd-bf52-45fe-a352-53d045519b82\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 206\n }\n}"
}
]
},
{
"name": "Observation - LDL",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2089-1\",\n \"display\": \"Cholesterol in LDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 140,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - LDL",
"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\": \"O000025\"\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\": \"2089-1\",\n \"display\": \"Cholesterol in LDL [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 140,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "etag",
"value": "W/\"MTcxMDg2NzUyNzE2NDcwNDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:58:47 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/3ba0f5b0-4bcf-4c6d-a706-b3ea10772f4f/_history/MTcxMDg2NzUyNzE2NDcwNDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:58:47 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": "9b7b82a3-c94f-46ff-bf5a-1b04a2f62f6b"
},
{
"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/a333b6be-80b6-4c6a-a734-9be8bca925c2\"\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\": \"2089-1\",\n \"display\": \"Cholesterol in LDL [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"3ba0f5b0-4bcf-4c6d-a706-b3ea10772f4f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:58:47.164704+00:00\",\n \"versionId\": \"MTcxMDg2NzUyNzE2NDcwNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/b8f35ecd-bf52-45fe-a352-53d045519b82\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 140\n }\n}"
}
]
},
{
"name": "Specimen - Profil Lipid",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000004\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Profil Lipid",
"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\": \"0000004\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\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/b8f35ecd-bf52-45fe-a352-53d045519b82/_history/MTcxMDg2NjgyNjgyNzE3NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NjgyNjgyNzE3NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:47:06 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:47:06 GMT"
},
{
"key": "Content-Length",
"value": "1698"
},
{
"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": "8e416525-56e2-4ad7-a727-f96e81ef6e3a"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"b8f35ecd-bf52-45fe-a352-53d045519b82\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000004\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:47:06.827176+00:00\",\n \"versionId\": \"MTcxMDg2NjgyNjgyNzE3NjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/a333b6be-80b6-4c6a-a734-9be8bca925c2\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Trigliserida",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000025\"\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\": \"2571-8\",\n \"display\": \"Triglyceride [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Trigliserida",
"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\": \"O000025\"\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\": \"2571-8\",\n \"display\": \"Triglyceride [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_ProfilLipid}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_ProfilLipid}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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/661b9315-c49f-4e35-880d-9abe726072ab/_history/MTcxMDg2NzM2Njk3NDM2MTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NzM2Njk3NDM2MTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:56:06 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:56:06 GMT"
},
{
"key": "Content-Length",
"value": "1098"
},
{
"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": "73d43190-b4b6-4dc2-9e98-4110dd406423"
},
{
"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/a333b6be-80b6-4c6a-a734-9be8bca925c2\"\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\": \"2571-8\",\n \"display\": \"Triglyceride [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"661b9315-c49f-4e35-880d-9abe726072ab\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000025\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:56:06.974361+00:00\",\n \"versionId\": \"MTcxMDg2NzM2Njk3NDM2MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/b8f35ecd-bf52-45fe-a352-53d045519b82\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 160\n }\n}"
}
]
},
{
"name": "ServiceRequest - Profil Lipid",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000004\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Profil Lipid Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Profil Lipid",
"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\": \"0000004\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Profil Lipid Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "etag",
"value": "W/\"MTcxMDg2NjUzNTgxODQyNjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/a333b6be-80b6-4c6a-a734-9be8bca925c2/_history/MTcxMDg2NjUzNTgxODQyNjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:42:15 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:42:15 GMT"
},
{
"key": "Content-Length",
"value": "1085"
},
{
"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": "3c93d5e1-a529-4f79-9272-5ad89664aaed"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"100898-6\",\n \"display\": \"Lipid panel - Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Profil Lipid\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Profil Lipid Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a333b6be-80b6-4c6a-a734-9be8bca925c2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000004\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:42:15.818426+00:00\",\n \"versionId\": \"MTcxMDg2NjUzNTgxODQyNjAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan HbA1c",
"item": [
{
"name": "ServiceRequest - HbA1c",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000003\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan HbA1c Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - HbA1c",
"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\": \"0000003\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan HbA1c Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "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/f5ec1670-0793-4ca0-ac20-e583656d8c99/_history/MTcxMDg2NTQ4NzMwNDQ4NTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:24:47 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NTQ4NzMwNDQ4NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:24:47 GMT"
},
{
"key": "Content-Length",
"value": "1080"
},
{
"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": "67027e77-de2c-4eef-b24c-21fc0131df1d"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan HbA1c Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"f5ec1670-0793-4ca0-ac20-e583656d8c99\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000003\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:24:47.304485+00:00\",\n \"versionId\": \"MTcxMDg2NTQ4NzMwNDQ4NTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - HbA1c",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000003\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - HbA1c",
"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\": \"0000003\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:34:32 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/00cab59b-a920-4f58-afbb-3cdb5f38d286/_history/MTcxMDg2NjA3MjczNjUwNjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NjA3MjczNjUwNjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:34:32 GMT"
},
{
"key": "Content-Length",
"value": "1698"
},
{
"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": "ec708536-f601-4024-bf80-0e1113ab56e8"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"00cab59b-a920-4f58-afbb-3cdb5f38d286\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000003\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:34:32.736506+00:00\",\n \"versionId\": \"MTcxMDg2NjA3MjczNjUwNjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - HbA1c",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000024\"\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\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_HbA1c}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - HbA1c",
"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\": \"O000024\"\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\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_HbA1c}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\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/316e663c-3bc7-45bd-aed8-47fa4cd887ed/_history/MTcxMDg2NjMzNzMzMTI2MTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NjMzNzMzMTI2MTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:38:57 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:38:57 GMT"
},
{
"key": "Content-Length",
"value": "1083"
},
{
"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": "527ba45e-0399-45ed-96d1-ce7399a51067"
},
{
"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/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\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\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a333b6be-80b6-4c6a-a734-9be8bca925c2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000024\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:38:57.331261+00:00\",\n \"versionId\": \"MTcxMDg2NjMzNzMzMTI2MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/00cab59b-a920-4f58-afbb-3cdb5f38d286\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"%\",\n \"value\": 5\n }\n}"
}
]
},
{
"name": "DiagnosticReport - HbA1c",
"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\": \"5234348\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_HbA1c}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_HbA1c}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan HbA1c masih dalam keadaan normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - HbA1c",
"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\": \"5234348\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_HbA1c}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_HbA1c}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan HbA1c masih dalam keadaan normal\"\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": "Tue, 19 Mar 2024 16:40:49 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/DiagnosticReport/b4db5574-000c-4968-939a-896c3e3d7626/_history/MTcxMDg2NjQ0OTY5MjQ1NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NjQ0OTY5MjQ1NjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:40:49 GMT"
},
{
"key": "Content-Length",
"value": "1170"
},
{
"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": "e4da0b00-a641-4d12-b4ed-f53e03ad63c5"
},
{
"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/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"conclusion\": \"Hasil pemeriksaan HbA1c masih dalam keadaan normal\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"b4db5574-000c-4968-939a-896c3e3d7626\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234348\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:40:49.692456+00:00\",\n \"versionId\": \"MTcxMDg2NjQ0OTY5MjQ1NjAwMA\"\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/316e663c-3bc7-45bd-aed8-47fa4cd887ed\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/00cab59b-a920-4f58-afbb-3cdb5f38d286\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - HbA1c",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000024\"\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\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_HbA1c}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - HbA1c",
"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\": \"O000024\"\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\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_HbA1c}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\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/316e663c-3bc7-45bd-aed8-47fa4cd887ed/_history/MTcxMDg2NjMzNzMzMTI2MTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NjMzNzMzMTI2MTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:38:57 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:38:57 GMT"
},
{
"key": "Content-Length",
"value": "1083"
},
{
"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": "527ba45e-0399-45ed-96d1-ce7399a51067"
},
{
"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/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\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\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a333b6be-80b6-4c6a-a734-9be8bca925c2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000024\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:38:57.331261+00:00\",\n \"versionId\": \"MTcxMDg2NjMzNzMzMTI2MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/00cab59b-a920-4f58-afbb-3cdb5f38d286\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"%\",\n \"value\": 5\n }\n}"
}
]
},
{
"name": "Specimen - HbA1c",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000003\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - HbA1c",
"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\": \"0000003\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:34:32 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/00cab59b-a920-4f58-afbb-3cdb5f38d286/_history/MTcxMDg2NjA3MjczNjUwNjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NjA3MjczNjUwNjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:34:32 GMT"
},
{
"key": "Content-Length",
"value": "1698"
},
{
"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": "ec708536-f601-4024-bf80-0e1113ab56e8"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"00cab59b-a920-4f58-afbb-3cdb5f38d286\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000003\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:34:32.736506+00:00\",\n \"versionId\": \"MTcxMDg2NjA3MjczNjUwNjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "ServiceRequest - HbA1c",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000003\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan HbA1c Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - HbA1c",
"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\": \"0000003\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan HbA1c Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "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/f5ec1670-0793-4ca0-ac20-e583656d8c99/_history/MTcxMDg2NTQ4NzMwNDQ4NTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 16:24:47 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NTQ4NzMwNDQ4NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:24:47 GMT"
},
{
"key": "Content-Length",
"value": "1080"
},
{
"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": "67027e77-de2c-4eef-b24c-21fc0131df1d"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan HbA1c Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"f5ec1670-0793-4ca0-ac20-e583656d8c99\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000003\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:24:47.304485+00:00\",\n \"versionId\": \"MTcxMDg2NTQ4NzMwNDQ4NTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "DiagnosticReport - HbA1c",
"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\": \"5234348\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_HbA1c}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_HbA1c}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan HbA1c masih dalam keadaan normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - HbA1c",
"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\": \"5234348\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_HbA1c}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_HbA1c}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan HbA1c masih dalam keadaan normal\"\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": "Tue, 19 Mar 2024 16:40:49 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/DiagnosticReport/b4db5574-000c-4968-939a-896c3e3d7626/_history/MTcxMDg2NjQ0OTY5MjQ1NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2NjQ0OTY5MjQ1NjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 16:40:49 GMT"
},
{
"key": "Content-Length",
"value": "1170"
},
{
"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": "e4da0b00-a641-4d12-b4ed-f53e03ad63c5"
},
{
"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/f5ec1670-0793-4ca0-ac20-e583656d8c99\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"4548-4\",\n \"display\": \"Hemoglobin A1c/Hemoglobin.total in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan HbA1c\"\n },\n \"conclusion\": \"Hasil pemeriksaan HbA1c masih dalam keadaan normal\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"b4db5574-000c-4968-939a-896c3e3d7626\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234348\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T16:40:49.692456+00:00\",\n \"versionId\": \"MTcxMDg2NjQ0OTY5MjQ1NjAwMA\"\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/316e663c-3bc7-45bd-aed8-47fa4cd887ed\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/00cab59b-a920-4f58-afbb-3cdb5f38d286\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Fungsi Ginjal",
"item": [
{
"name": "Pemeriksaan Urinalisis - Proteinuria",
"item": [
{
"name": "ServiceRequest - Urinalisis - Proteinuria",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000005\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Urinalisis-Proteinuria Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Urinalisis - Proteinuria",
"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\": \"0000005\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Urinalisis-Proteinuria Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "etag",
"value": "W/\"MTcxMDg2ODI4ODIwNzkzOTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:11:28 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/ServiceRequest/7a25ce62-8840-4be2-86b5-8bafb074dfc7/_history/MTcxMDg2ODI4ODIwNzkzOTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:11:28 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": "7ece545d-0ad6-47d9-a1c6-1a483923dc02"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Urinalisis-Proteinuria Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"7a25ce62-8840-4be2-86b5-8bafb074dfc7\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000005\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:11:28.207939+00:00\",\n \"versionId\": \"MTcxMDg2ODI4ODIwNzkzOTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Urinalisis - Proteinuria",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000005\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Urinalisis - Proteinuria",
"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\": \"0000005\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:13:01 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2ODM4MTA1ODE5NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0/_history/MTcxMDg2ODM4MTA1ODE5NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:13:01 GMT"
},
{
"key": "Content-Length",
"value": "1680"
},
{
"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": "377aaea4-08a7-407e-b70f-88546bb3776c"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000005\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:13:01.058196+00:00\",\n \"versionId\": \"MTcxMDg2ODM4MTA1ODE5NjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/7a25ce62-8840-4be2-86b5-8bafb074dfc7\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Urinalisis - Proteinuria",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000026\"\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\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/{{Observation_UrinalisisProteinuria}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 19,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Urinalisis - Proteinuria",
"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\": \"O000026\"\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\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/{{Observation_UrinalisisProteinuria}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 19,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 19 Mar 2024 17:15:16 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2ODUxNjQ3MTgxMTAwMA\""
},
{
"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/c35068f5-3a64-4cae-8fa6-3f34252df222/_history/MTcxMDg2ODUxNjQ3MTgxMTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:15:16 GMT"
},
{
"key": "Content-Length",
"value": "1082"
},
{
"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": "82aad55d-cbe9-4846-8de0-5d3a511f7345"
},
{
"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/7a25ce62-8840-4be2-86b5-8bafb074dfc7\"\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\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c35068f5-3a64-4cae-8fa6-3f34252df222\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000026\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:15:16.471811+00:00\",\n \"versionId\": \"MTcxMDg2ODUxNjQ3MTgxMTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 19\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Urinalisis - Proteinuria",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_UrinalisisProteinuria}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_UrinalisisProteinuria}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan urinalisis-proteinuria menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Urinalisis - Proteinuria",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_UrinalisisProteinuria}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_UrinalisisProteinuria}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan urinalisis-proteinuria menunjukkan nilai normal\"\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/e521c8d1-e535-427e-8514-50c5dc0f4c02/_history/MTcxMDg2ODY1MTQwMTA0MDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:17:31 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2ODY1MTQwMTA0MDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:17:31 GMT"
},
{
"key": "Content-Length",
"value": "1192"
},
{
"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": "654a5a6a-ec29-4273-a9d7-2a60c731c159"
},
{
"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/7a25ce62-8840-4be2-86b5-8bafb074dfc7\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"conclusion\": \"Hasil pemeriksaan urinalisis-proteinuria menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"e521c8d1-e535-427e-8514-50c5dc0f4c02\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:17:31.401040+00:00\",\n \"versionId\": \"MTcxMDg2ODY1MTQwMTA0MDAwMA\"\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/c35068f5-3a64-4cae-8fa6-3f34252df222\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Urinalisis - Proteinuria",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000005\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Urinalisis - Proteinuria",
"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\": \"0000005\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:13:01 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2ODM4MTA1ODE5NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0/_history/MTcxMDg2ODM4MTA1ODE5NjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:13:01 GMT"
},
{
"key": "Content-Length",
"value": "1680"
},
{
"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": "377aaea4-08a7-407e-b70f-88546bb3776c"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000005\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:13:01.058196+00:00\",\n \"versionId\": \"MTcxMDg2ODM4MTA1ODE5NjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/7a25ce62-8840-4be2-86b5-8bafb074dfc7\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Urinalisis - Proteinuria",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_UrinalisisProteinuria}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_UrinalisisProteinuria}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan urinalisis-proteinuria menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Urinalisis - Proteinuria",
"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\": \"5234342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_UrinalisisProteinuria}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_UrinalisisProteinuria}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan urinalisis-proteinuria menunjukkan nilai normal\"\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/e521c8d1-e535-427e-8514-50c5dc0f4c02/_history/MTcxMDg2ODY1MTQwMTA0MDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:17:31 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2ODY1MTQwMTA0MDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:17:31 GMT"
},
{
"key": "Content-Length",
"value": "1192"
},
{
"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": "654a5a6a-ec29-4273-a9d7-2a60c731c159"
},
{
"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/7a25ce62-8840-4be2-86b5-8bafb074dfc7\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"conclusion\": \"Hasil pemeriksaan urinalisis-proteinuria menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"e521c8d1-e535-427e-8514-50c5dc0f4c02\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:17:31.401040+00:00\",\n \"versionId\": \"MTcxMDg2ODY1MTQwMTA0MDAwMA\"\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/c35068f5-3a64-4cae-8fa6-3f34252df222\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Urinalisis - Proteinuria",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000005\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Urinalisis-Proteinuria Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Urinalisis - Proteinuria",
"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\": \"0000005\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Urinalisis-Proteinuria Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "etag",
"value": "W/\"MTcxMDg2ODI4ODIwNzkzOTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:11:28 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/ServiceRequest/7a25ce62-8840-4be2-86b5-8bafb074dfc7/_history/MTcxMDg2ODI4ODIwNzkzOTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:11:28 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": "7ece545d-0ad6-47d9-a1c6-1a483923dc02"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Urinalisis-Proteinuria\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Urinalisis-Proteinuria Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"7a25ce62-8840-4be2-86b5-8bafb074dfc7\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000005\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:11:28.207939+00:00\",\n \"versionId\": \"MTcxMDg2ODI4ODIwNzkzOTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Urinalisis - Proteinuria",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000026\"\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\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/{{Observation_UrinalisisProteinuria}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 19,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Urinalisis - Proteinuria",
"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\": \"O000026\"\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\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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/{{Observation_UrinalisisProteinuria}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_UrinalisisProteinuria}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 19,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 19 Mar 2024 17:15:16 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2ODUxNjQ3MTgxMTAwMA\""
},
{
"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/c35068f5-3a64-4cae-8fa6-3f34252df222/_history/MTcxMDg2ODUxNjQ3MTgxMTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:15:16 GMT"
},
{
"key": "Content-Length",
"value": "1082"
},
{
"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": "82aad55d-cbe9-4846-8de0-5d3a511f7345"
},
{
"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/7a25ce62-8840-4be2-86b5-8bafb074dfc7\"\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\": \"2888-6\",\n \"display\": \"Protein [Mass/volume] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c35068f5-3a64-4cae-8fa6-3f34252df222\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000026\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:15:16.471811+00:00\",\n \"versionId\": \"MTcxMDg2ODUxNjQ3MTgxMTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/9fc1c961-7ad3-4c6d-b365-33e7fb9e7be0\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 19\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Rasio Albumin: Kreatinin Urin",
"item": [
{
"name": "ServiceRequest - Rasio Albumin: Kreatinin Urin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000006\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Rasio Albumin: Kreatinin Urin Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Rasio Albumin: Kreatinin Urin",
"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\": \"0000006\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Rasio Albumin: Kreatinin Urin Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/c1f8488b-5c9f-4707-b115-1e9e3502054b/_history/MTcxMDg2OTA5MDQ2MjU4NDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTA5MDQ2MjU4NDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:24:50 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:24:50 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": "b53b559f-1c66-4c0e-854f-165df5c23601"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Rasio Albumin: Kreatinin Urin Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c1f8488b-5c9f-4707-b115-1e9e3502054b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000006\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:24:50.462584+00:00\",\n \"versionId\": \"MTcxMDg2OTA5MDQ2MjU4NDAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Rasio Albumin: Kreatinin Urin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000006\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Rasio Albumin: Kreatinin Urin",
"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\": \"0000006\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:30:20 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTQyMDEwMTYwODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/f826230e-d8f0-41e8-bbfc-7057bd7e8653/_history/MTcxMDg2OTQyMDEwMTYwODAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:30:20 GMT"
},
{
"key": "Content-Length",
"value": "1680"
},
{
"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": "498ad610-30fa-4ccb-b4fd-485687e7df53"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"f826230e-d8f0-41e8-bbfc-7057bd7e8653\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000006\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:30:20.101608+00:00\",\n \"versionId\": \"MTcxMDg2OTQyMDEwMTYwODAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/c1f8488b-5c9f-4707-b115-1e9e3502054b\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Rasio Albumin: Kreatinin Urin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000027\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_RasioAlbuminKreatininUrin}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 28,\n \"unit\": \"mg/g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Rasio Albumin: Kreatinin Urin",
"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\": \"O000027\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_RasioAlbuminKreatininUrin}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 28,\n \"unit\": \"mg/g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"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/8507e092-65bf-47f0-a46f-5d0e0986b1f9/_history/MTcxMDg2OTYwOTEyMTA3OTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:33:29 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTYwOTEyMTA3OTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:33:29 GMT"
},
{
"key": "Content-Length",
"value": "1096"
},
{
"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": "5ac4e206-4dd1-4424-824d-01925488d17d"
},
{
"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/c1f8488b-5c9f-4707-b115-1e9e3502054b\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"8507e092-65bf-47f0-a46f-5d0e0986b1f9\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000027\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:33:29.121079+00:00\",\n \"versionId\": \"MTcxMDg2OTYwOTEyMTA3OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/f826230e-d8f0-41e8-bbfc-7057bd7e8653\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/g\",\n \"value\": 28\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Rasio Albumin: Kreatinin Urin",
"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\": \"5234342\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan rasio albumin: kreatinin menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Rasio Albumin: Kreatinin Urin",
"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\": \"5234342\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan rasio albumin: kreatinin menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTcwNTYzOTcyNTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/3a40c5cc-7dec-4688-8af8-f3af20405c55/_history/MTcxMDg2OTcwNTYzOTcyNTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:35:05 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:35:05 GMT"
},
{
"key": "Content-Length",
"value": "1220"
},
{
"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": "d8803c84-8c93-4eac-8c78-cecbbc724468"
},
{
"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"
},
{
"key": "Connection",
"value": "close"
}
],
"cookie": [],
"body": "{\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/c1f8488b-5c9f-4707-b115-1e9e3502054b\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"conclusion\": \"Hasil pemeriksaan rasio albumin: kreatinin menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"3a40c5cc-7dec-4688-8af8-f3af20405c55\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:35:05.639725+00:00\",\n \"versionId\": \"MTcxMDg2OTcwNTYzOTcyNTAwMA\"\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/8507e092-65bf-47f0-a46f-5d0e0986b1f9\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/f826230e-d8f0-41e8-bbfc-7057bd7e8653\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Rasio Albumin: Kreatinin Urin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000006\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Rasio Albumin: Kreatinin Urin",
"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\": \"0000006\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:30:20 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTQyMDEwMTYwODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/f826230e-d8f0-41e8-bbfc-7057bd7e8653/_history/MTcxMDg2OTQyMDEwMTYwODAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:30:20 GMT"
},
{
"key": "Content-Length",
"value": "1680"
},
{
"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": "498ad610-30fa-4ccb-b4fd-485687e7df53"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"57617002\",\n \"display\": \"Urine specimen collection\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"f826230e-d8f0-41e8-bbfc-7057bd7e8653\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000006\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:30:20.101608+00:00\",\n \"versionId\": \"MTcxMDg2OTQyMDEwMTYwODAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/c1f8488b-5c9f-4707-b115-1e9e3502054b\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"122575003\",\n \"display\": \"Urine specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Rasio Albumin: Kreatinin Urin",
"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\": \"5234342\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan rasio albumin: kreatinin menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Rasio Albumin: Kreatinin Urin",
"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\": \"5234342\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan rasio albumin: kreatinin menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTcwNTYzOTcyNTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/3a40c5cc-7dec-4688-8af8-f3af20405c55/_history/MTcxMDg2OTcwNTYzOTcyNTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:35:05 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:35:05 GMT"
},
{
"key": "Content-Length",
"value": "1220"
},
{
"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": "d8803c84-8c93-4eac-8c78-cecbbc724468"
},
{
"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"
},
{
"key": "Connection",
"value": "close"
}
],
"cookie": [],
"body": "{\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/c1f8488b-5c9f-4707-b115-1e9e3502054b\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"conclusion\": \"Hasil pemeriksaan rasio albumin: kreatinin menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"3a40c5cc-7dec-4688-8af8-f3af20405c55\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5234342\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:35:05.639725+00:00\",\n \"versionId\": \"MTcxMDg2OTcwNTYzOTcyNTAwMA\"\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/8507e092-65bf-47f0-a46f-5d0e0986b1f9\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/f826230e-d8f0-41e8-bbfc-7057bd7e8653\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Rasio Albumin: Kreatinin Urin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000006\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Rasio Albumin: Kreatinin Urin Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Rasio Albumin: Kreatinin Urin",
"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\": \"0000006\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Rasio Albumin: Kreatinin Urin Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/c1f8488b-5c9f-4707-b115-1e9e3502054b/_history/MTcxMDg2OTA5MDQ2MjU4NDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTA5MDQ2MjU4NDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:24:50 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:24:50 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": "b53b559f-1c66-4c0e-854f-165df5c23601"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Rasio Albumin: Kreatinin Urin\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Rasio Albumin: Kreatinin Urin Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c1f8488b-5c9f-4707-b115-1e9e3502054b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000006\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:24:50.462584+00:00\",\n \"versionId\": \"MTcxMDg2OTA5MDQ2MjU4NDAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Rasio Albumin: Kreatinin Urin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000027\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_RasioAlbuminKreatininUrin}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 28,\n \"unit\": \"mg/g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Rasio Albumin: Kreatinin Urin",
"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\": \"O000027\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_RasioAlbuminKreatininUrin}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{Specimen_RasioAlbuminKreatininUrin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 28,\n \"unit\": \"mg/g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/g\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"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/8507e092-65bf-47f0-a46f-5d0e0986b1f9/_history/MTcxMDg2OTYwOTEyMTA3OTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:33:29 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTYwOTEyMTA3OTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:33:29 GMT"
},
{
"key": "Content-Length",
"value": "1096"
},
{
"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": "5ac4e206-4dd1-4424-824d-01925488d17d"
},
{
"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/c1f8488b-5c9f-4707-b115-1e9e3502054b\"\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\": \"14959-1\",\n \"display\": \"Microalbumin/Creatinine [Mass Ratio] in Urine\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"8507e092-65bf-47f0-a46f-5d0e0986b1f9\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000027\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:33:29.121079+00:00\",\n \"versionId\": \"MTcxMDg2OTYwOTEyMTA3OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/f826230e-d8f0-41e8-bbfc-7057bd7e8653\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/g\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/g\",\n \"value\": 28\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Ureum",
"item": [
{
"name": "ServiceRequest - Ureum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000007\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Ureum Puasa Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Ureum",
"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\": \"0000007\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Ureum Puasa Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTg5ODAwMzk0MzAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:38:18 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/982b0c89-ceac-4645-86ff-cc2e792b7cc8/_history/MTcxMDg2OTg5ODAwMzk0MzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:38:18 GMT"
},
{
"key": "Content-Length",
"value": "1074"
},
{
"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": "678130d6-3e89-4a7e-a73a-79b05177b73c"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Ureum Puasa Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"982b0c89-ceac-4645-86ff-cc2e792b7cc8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000007\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:38:18.003943+00:00\",\n \"versionId\": \"MTcxMDg2OTg5ODAwMzk0MzAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Ureum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000007\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:10+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Ureum",
"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\": \"0000007\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:10+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:45:39 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/2a69e435-3fd4-4415-914f-8deff3cdedc9/_history/MTcxMDg3MDMzOTk5MDU0MjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDMzOTk5MDU0MjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:45:40 GMT"
},
{
"key": "Content-Length",
"value": "1698"
},
{
"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": "ddcf01cb-82ea-415a-a50d-9da97d9c5651"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"2a69e435-3fd4-4415-914f-8deff3cdedc9\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000007\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:45:39.990542+00:00\",\n \"versionId\": \"MTcxMDg3MDMzOTk5MDU0MjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:10+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/982b0c89-ceac-4645-86ff-cc2e792b7cc8\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Ureum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000028\"\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\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Ureum}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Ureum",
"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\": \"O000028\"\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\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Ureum}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 19 Mar 2024 17:46:27 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDM4NzM3MTQwNjAwMA\""
},
{
"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/e9b880fa-5f19-479a-831a-bb736329034e/_history/MTcxMDg3MDM4NzM3MTQwNjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:46:27 GMT"
},
{
"key": "Content-Length",
"value": "1080"
},
{
"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": "14937ffa-db42-4f63-840c-ce9adc3a1d97"
},
{
"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/982b0c89-ceac-4645-86ff-cc2e792b7cc8\"\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\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"e9b880fa-5f19-479a-831a-bb736329034e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000028\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:46:27.371406+00:00\",\n \"versionId\": \"MTcxMDg3MDM4NzM3MTQwNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/2a69e435-3fd4-4415-914f-8deff3cdedc9\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 35\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Ureum",
"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\": \"5233342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Ureum}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Ureum}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan ureum menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Ureum",
"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\": \"5233342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Ureum}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Ureum}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan ureum menunjukkan nilai normal\"\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/aa79c994-9a3d-4acf-b74a-f12ba0ce3868/_history/MTcxMDg3MDQzMzY2NzMzNzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:47:13 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDQzMzY2NzMzNzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:47:13 GMT"
},
{
"key": "Content-Length",
"value": "1156"
},
{
"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": "73ebe9ff-90c3-4785-a629-9543ed70ba00"
},
{
"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/982b0c89-ceac-4645-86ff-cc2e792b7cc8\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"conclusion\": \"Hasil pemeriksaan ureum menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"aa79c994-9a3d-4acf-b74a-f12ba0ce3868\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5233342\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:47:13.667337+00:00\",\n \"versionId\": \"MTcxMDg3MDQzMzY2NzMzNzAwMA\"\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/e9b880fa-5f19-479a-831a-bb736329034e\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/2a69e435-3fd4-4415-914f-8deff3cdedc9\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Ureum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000007\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Ureum Puasa Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Ureum",
"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\": \"0000007\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Ureum Puasa Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg2OTg5ODAwMzk0MzAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:38:18 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/982b0c89-ceac-4645-86ff-cc2e792b7cc8/_history/MTcxMDg2OTg5ODAwMzk0MzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:38:18 GMT"
},
{
"key": "Content-Length",
"value": "1074"
},
{
"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": "678130d6-3e89-4a7e-a73a-79b05177b73c"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Ureum Puasa Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"982b0c89-ceac-4645-86ff-cc2e792b7cc8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000007\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:38:18.003943+00:00\",\n \"versionId\": \"MTcxMDg2OTg5ODAwMzk0MzAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Ureum",
"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\": \"5233342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Ureum}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Ureum}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan ureum menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Ureum",
"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\": \"5233342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Ureum}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Ureum}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan ureum menunjukkan nilai normal\"\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/aa79c994-9a3d-4acf-b74a-f12ba0ce3868/_history/MTcxMDg3MDQzMzY2NzMzNzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:47:13 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDQzMzY2NzMzNzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:47:13 GMT"
},
{
"key": "Content-Length",
"value": "1156"
},
{
"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": "73ebe9ff-90c3-4785-a629-9543ed70ba00"
},
{
"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/982b0c89-ceac-4645-86ff-cc2e792b7cc8\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Ureum\"\n },\n \"conclusion\": \"Hasil pemeriksaan ureum menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"aa79c994-9a3d-4acf-b74a-f12ba0ce3868\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5233342\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:47:13.667337+00:00\",\n \"versionId\": \"MTcxMDg3MDQzMzY2NzMzNzAwMA\"\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/e9b880fa-5f19-479a-831a-bb736329034e\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/2a69e435-3fd4-4415-914f-8deff3cdedc9\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Ureum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000007\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:10+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Ureum",
"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\": \"0000007\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:10+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:45:39 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/2a69e435-3fd4-4415-914f-8deff3cdedc9/_history/MTcxMDg3MDMzOTk5MDU0MjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDMzOTk5MDU0MjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:45:40 GMT"
},
{
"key": "Content-Length",
"value": "1698"
},
{
"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": "ddcf01cb-82ea-415a-a50d-9da97d9c5651"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"2a69e435-3fd4-4415-914f-8deff3cdedc9\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000007\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:45:39.990542+00:00\",\n \"versionId\": \"MTcxMDg3MDMzOTk5MDU0MjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:10+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/982b0c89-ceac-4645-86ff-cc2e792b7cc8\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Ureum",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000028\"\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\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Ureum}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Ureum",
"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\": \"O000028\"\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\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Ureum}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Ureum}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 35,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 19 Mar 2024 17:46:27 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDM4NzM3MTQwNjAwMA\""
},
{
"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/e9b880fa-5f19-479a-831a-bb736329034e/_history/MTcxMDg3MDM4NzM3MTQwNjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:46:27 GMT"
},
{
"key": "Content-Length",
"value": "1080"
},
{
"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": "14937ffa-db42-4f63-840c-ce9adc3a1d97"
},
{
"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/982b0c89-ceac-4645-86ff-cc2e792b7cc8\"\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\": \"20977-5\",\n \"display\": \"Urea [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"e9b880fa-5f19-479a-831a-bb736329034e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000028\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:46:27.371406+00:00\",\n \"versionId\": \"MTcxMDg3MDM4NzM3MTQwNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/2a69e435-3fd4-4415-914f-8deff3cdedc9\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 35\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Kreatinin",
"item": [
{
"name": "ServiceRequest - Kreatinin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000008\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Kreatinin Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Kreatinin",
"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\": \"0000008\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Kreatinin Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "etag",
"value": "W/\"MTcxMDg3MDUzNDY2MDg1NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/8392111e-b6d9-4192-803a-865fb8e8416f/_history/MTcxMDg3MDUzNDY2MDg1NzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:48:54 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:48:54 GMT"
},
{
"key": "Content-Length",
"value": "1082"
},
{
"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": "8ce0c7b3-a936-446a-adad-073f3dc85d6c"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Kreatinin Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"8392111e-b6d9-4192-803a-865fb8e8416f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000008\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:48:54.660857+00:00\",\n \"versionId\": \"MTcxMDg3MDUzNDY2MDg1NzAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Kreatinin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000008\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Kreatinin",
"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\": \"0000008\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:50:34 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDYzNDg3OTU1ODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/a6363fce-14ff-45dd-9e04-e07c08e2b902/_history/MTcxMDg3MDYzNDg3OTU1ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:50:34 GMT"
},
{
"key": "Content-Length",
"value": "1698"
},
{
"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": "2dc15a41-1203-4576-9219-362ab94fb0d1"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"a6363fce-14ff-45dd-9e04-e07c08e2b902\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000008\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:50:34.879558+00:00\",\n \"versionId\": \"MTcxMDg3MDYzNDg3OTU1ODAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/8392111e-b6d9-4192-803a-865fb8e8416f\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Kreatinin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000028\"\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\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Creatinine}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 1,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kreatinin",
"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\": \"O000028\"\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\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Creatinine}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 1,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 19 Mar 2024 17:52:22 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/87339903-e873-4274-979e-059988f70b4a/_history/MTcxMDg3MDc0MjAwNTMyNDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDc0MjAwNTMyNDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:52:22 GMT"
},
{
"key": "Content-Length",
"value": "1085"
},
{
"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": "c6309bf2-5990-4e23-9b87-04458a10cb2c"
},
{
"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/8392111e-b6d9-4192-803a-865fb8e8416f\"\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\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"87339903-e873-4274-979e-059988f70b4a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000028\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:52:22.005324+00:00\",\n \"versionId\": \"MTcxMDg3MDc0MjAwNTMyNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/a6363fce-14ff-45dd-9e04-e07c08e2b902\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 1\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Kreatinin",
"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\": \"5434342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Creatinine}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Creatinine}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan kreatinin menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Kreatinin",
"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\": \"5434342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Creatinine}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Creatinine}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan kreatinin menunjukkan nilai normal\"\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/8e43bda4-9693-4652-876c-a8e87c7db835/_history/MTcxMDg3MDkxODY1OTc2NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDkxODY1OTc2NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:55:18 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:55:18 GMT"
},
{
"key": "Content-Length",
"value": "1170"
},
{
"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": "dbe671da-491a-49df-8eff-43f0b8f17d17"
},
{
"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/8392111e-b6d9-4192-803a-865fb8e8416f\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"conclusion\": \"Hasil pemeriksaan kreatinin menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"8e43bda4-9693-4652-876c-a8e87c7db835\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5434342\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:55:18.659766+00:00\",\n \"versionId\": \"MTcxMDg3MDkxODY1OTc2NjAwMA\"\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/87339903-e873-4274-979e-059988f70b4a\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/a6363fce-14ff-45dd-9e04-e07c08e2b902\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Kreatinin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000008\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Kreatinin Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Kreatinin",
"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\": \"0000008\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Kreatinin Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "etag",
"value": "W/\"MTcxMDg3MDUzNDY2MDg1NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/8392111e-b6d9-4192-803a-865fb8e8416f/_history/MTcxMDg3MDUzNDY2MDg1NzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:48:54 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:48:54 GMT"
},
{
"key": "Content-Length",
"value": "1082"
},
{
"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": "8ce0c7b3-a936-446a-adad-073f3dc85d6c"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Kreatinin Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"8392111e-b6d9-4192-803a-865fb8e8416f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000008\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:48:54.660857+00:00\",\n \"versionId\": \"MTcxMDg3MDUzNDY2MDg1NzAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy\",\n \"reference\": \"Practitioner/N10000007\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Kreatinin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000028\"\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\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Creatinine}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 1,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kreatinin",
"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\": \"O000028\"\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\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Creatinine}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 1,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "Tue, 19 Mar 2024 17:52:22 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/87339903-e873-4274-979e-059988f70b4a/_history/MTcxMDg3MDc0MjAwNTMyNDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDc0MjAwNTMyNDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:52:22 GMT"
},
{
"key": "Content-Length",
"value": "1085"
},
{
"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": "c6309bf2-5990-4e23-9b87-04458a10cb2c"
},
{
"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/8392111e-b6d9-4192-803a-865fb8e8416f\"\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\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"87339903-e873-4274-979e-059988f70b4a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000005\",\n \"value\": \"O000028\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:52:22.005324+00:00\",\n \"versionId\": \"MTcxMDg3MDc0MjAwNTMyNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000005\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/a6363fce-14ff-45dd-9e04-e07c08e2b902\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 1\n }\n}"
}
]
},
{
"name": "Specimen - Kreatinin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000008\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Kreatinin",
"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\": \"0000008\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-15T02:30:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:50:34 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDYzNDg3OTU1ODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/a6363fce-14ff-45dd-9e04-e07c08e2b902/_history/MTcxMDg3MDYzNDg3OTU1ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:50:34 GMT"
},
{
"key": "Content-Length",
"value": "1698"
},
{
"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": "2dc15a41-1203-4576-9219-362ab94fb0d1"
},
{
"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\": \"2024-03-15T02:30:00+00:00\",\n \"collector\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-15T02:32:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"a6363fce-14ff-45dd-9e04-e07c08e2b902\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000005\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000005\",\n \"value\": \"0000008\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:50:34.879558+00:00\",\n \"versionId\": \"MTcxMDg3MDYzNDg3OTU1ODAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-15T02:34:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-15T02:33:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/8392111e-b6d9-4192-803a-865fb8e8416f\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Kreatinin",
"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\": \"5434342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Creatinine}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Creatinine}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan kreatinin menunjukkan nilai normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Kreatinin",
"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\": \"5434342\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"issued\": \"2024-03-15T02:36: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_Creatinine}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_Creatinine}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Creatinine}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan kreatinin menunjukkan nilai normal\"\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/8e43bda4-9693-4652-876c-a8e87c7db835/_history/MTcxMDg3MDkxODY1OTc2NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3MDkxODY1OTc2NjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 17:55:18 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 17:55:18 GMT"
},
{
"key": "Content-Length",
"value": "1170"
},
{
"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": "dbe671da-491a-49df-8eff-43f0b8f17d17"
},
{
"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/8392111e-b6d9-4192-803a-865fb8e8416f\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"38483-4\",\n \"display\": \"Creatinine [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Kreatinin\"\n },\n \"conclusion\": \"Hasil pemeriksaan kreatinin menunjukkan nilai normal\",\n \"effectiveDateTime\": \"2024-03-15T02:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"8e43bda4-9693-4652-876c-a8e87c7db835\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000005/lab\",\n \"use\": \"official\",\n \"value\": \"5434342\"\n }\n ],\n \"issued\": \"2024-03-15T02:36:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T17:55:18.659766+00:00\",\n \"versionId\": \"MTcxMDg3MDkxODY1OTc2NjAwMA\"\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/87339903-e873-4274-979e-059988f70b4a\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/a6363fce-14ff-45dd-9e04-e07c08e2b902\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
}
]
}
]
},
{
"name": "Radiologi",
"item": [
{
"name": "Status Puasa, Alergi, dan Hamil",
"item": [
{
"name": "Procedure - Status Puasa Pasien",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Procedure\",\n \"status\": \"not-done\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"103693007\",\n \"display\": \"Diagnostic procedure\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"792805006\",\n \"display\": \"Fasting\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T01:27:00+00:00\",\n \"end\": \"2024-03-15T01:27:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Prosedur Puasa tidak dilakukan Pasien\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - Status Puasa Pasien",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Procedure\",\n \"status\": \"not-done\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"103693007\",\n \"display\": \"Diagnostic procedure\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"792805006\",\n \"display\": \"Fasting\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T01:27:00+00:00\",\n \"end\": \"2024-03-15T01:27:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Prosedur Puasa tidak dilakukan Pasien\"\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": "last-modified",
"value": "Tue, 19 Mar 2024 23:50:20 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/Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1/_history/MTcxMDg5MjIyMDc2MDAzNTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg5MjIyMDc2MDAzNTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 23:50:20 GMT"
},
{
"key": "Content-Length",
"value": "4062"
},
{
"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": "55fd7901-0ffb-46ee-9e34-0f5442050bd0"
},
{
"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 },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"792805006\",\n \"display\": \"Fasting\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"de5aa1ed-b5b0-48a4-bf28-873c99353aa1\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T23:50:20.760035+00:00\",\n \"versionId\": \"MTcxMDg5MjIyMDc2MDAzNTAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Prosedur Puasa tidak dilakukan Pasien\"\n }\n ],\n \"performedPeriod\": {\n \"end\": \"2024-03-15T01:27:00+00:00\",\n \"start\": \"2024-03-15T01:27:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"not-done\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Status Kehamilan Pasien",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"82810-3\",\n \"display\": \"Pregnancy status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:28:00+00:00\",\n \"issued\": \"2024-03-15T01:28:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"60001007\",\n \"display\": \"Not pregnant\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Status Kehamilan Pasien",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"82810-3\",\n \"display\": \"Pregnancy status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:28:00+00:00\",\n \"issued\": \"2024-03-15T01:28:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"60001007\",\n \"display\": \"Not pregnant\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDg5MjQwNzcyMTY1MjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 23:53:27 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/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e/_history/MTcxMDg5MjQwNzcyMTY1MjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 23:53:27 GMT"
},
{
"key": "Content-Length",
"value": "4352"
},
{
"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": "9bef59e9-cf58-4a6c-8b35-3e89667b7d83"
},
{
"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\": \"82810-3\",\n \"display\": \"Pregnancy status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:28:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:28:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T23:53:27.721652+00:00\",\n \"versionId\": \"MTcxMDg5MjQwNzcyMTY1MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"60001007\",\n \"display\": \"Not pregnant\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "AllergyIntolerance - Status Alergi Bahan Kontras",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"10085104\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"medication\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000918\",\n \"display\": \"IODIXANOL\"\n }\n ],\n \"text\": \"Alergi Bahan Kontras Iodixanol\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-15T01:29:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/AllergyIntolerance",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
]
}
},
"response": [
{
"name": "AllergyIntolerance - Status Alergi Bahan Kontras",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"10085104\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"medication\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000918\",\n \"display\": \"IODIXANOL\"\n }\n ],\n \"text\": \"Alergi Bahan Kontras Iodixanol\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-15T01:29:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/AllergyIntolerance",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDg5MjU1NTcwNjE4MDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 23:55: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/AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b/_history/MTcxMDg5MjU1NTcwNjE4MDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 23:55:55 GMT"
},
{
"key": "Content-Length",
"value": "5188"
},
{
"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": "7e721ec7-d661-4aa9-ab7f-b8c49c052cb9"
},
{
"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 \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000918\",\n \"display\": \"IODIXANOL\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Bahan Kontras Iodixanol\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"9cc9090f-89ae-428a-9707-eccd44e5952b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000002\",\n \"use\": \"official\",\n \"value\": \"10085104\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T23:55:55.706180+00:00\",\n \"versionId\": \"MTcxMDg5MjU1NTcwNjE4MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2024-03-15T01:29:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n}"
}
]
},
{
"name": "AllergyIntolerance - Status Alergi Bahan Kontras",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"10085104\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"medication\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000918\",\n \"display\": \"IODIXANOL\"\n }\n ],\n \"text\": \"Alergi Bahan Kontras Iodixanol\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-15T01:29:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/AllergyIntolerance",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
]
}
},
"response": [
{
"name": "AllergyIntolerance - Status Alergi Bahan Kontras",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"10085104\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"medication\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000918\",\n \"display\": \"IODIXANOL\"\n }\n ],\n \"text\": \"Alergi Bahan Kontras Iodixanol\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-15T01:29:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/AllergyIntolerance",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDg5MjU1NTcwNjE4MDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 23:55: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/AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b/_history/MTcxMDg5MjU1NTcwNjE4MDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 23:55:55 GMT"
},
{
"key": "Content-Length",
"value": "5188"
},
{
"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": "7e721ec7-d661-4aa9-ab7f-b8c49c052cb9"
},
{
"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 \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000918\",\n \"display\": \"IODIXANOL\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Bahan Kontras Iodixanol\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"9cc9090f-89ae-428a-9707-eccd44e5952b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000002\",\n \"use\": \"official\",\n \"value\": \"10085104\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T23:55:55.706180+00:00\",\n \"versionId\": \"MTcxMDg5MjU1NTcwNjE4MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2024-03-15T01:29:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Procedure - Status Puasa Pasien",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Procedure\",\n \"status\": \"not-done\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"103693007\",\n \"display\": \"Diagnostic procedure\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"792805006\",\n \"display\": \"Fasting\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T01:27:00+00:00\",\n \"end\": \"2024-03-15T01:27:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Prosedur Puasa tidak dilakukan Pasien\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - Status Puasa Pasien",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Procedure\",\n \"status\": \"not-done\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"103693007\",\n \"display\": \"Diagnostic procedure\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"792805006\",\n \"display\": \"Fasting\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T01:27:00+00:00\",\n \"end\": \"2024-03-15T01:27:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Prosedur Puasa tidak dilakukan Pasien\"\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": "last-modified",
"value": "Tue, 19 Mar 2024 23:50:20 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/Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1/_history/MTcxMDg5MjIyMDc2MDAzNTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg5MjIyMDc2MDAzNTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 23:50:20 GMT"
},
{
"key": "Content-Length",
"value": "4062"
},
{
"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": "55fd7901-0ffb-46ee-9e34-0f5442050bd0"
},
{
"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 },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"792805006\",\n \"display\": \"Fasting\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"de5aa1ed-b5b0-48a4-bf28-873c99353aa1\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T23:50:20.760035+00:00\",\n \"versionId\": \"MTcxMDg5MjIyMDc2MDAzNTAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Prosedur Puasa tidak dilakukan Pasien\"\n }\n ],\n \"performedPeriod\": {\n \"end\": \"2024-03-15T01:27:00+00:00\",\n \"start\": \"2024-03-15T01:27:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Dr. dr. Voight, MARS\",\n \"reference\": \"Practitioner/N10000001\"\n }\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"not-done\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Status Kehamilan Pasien",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"82810-3\",\n \"display\": \"Pregnancy status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:28:00+00:00\",\n \"issued\": \"2024-03-15T01:28:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"60001007\",\n \"display\": \"Not pregnant\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Status Kehamilan Pasien",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"82810-3\",\n \"display\": \"Pregnancy status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:28:00+00:00\",\n \"issued\": \"2024-03-15T01:28:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"60001007\",\n \"display\": \"Not pregnant\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDg5MjQwNzcyMTY1MjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 23:53:27 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/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e/_history/MTcxMDg5MjQwNzcyMTY1MjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 23:53:27 GMT"
},
{
"key": "Content-Length",
"value": "4352"
},
{
"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": "9bef59e9-cf58-4a6c-8b35-3e89667b7d83"
},
{
"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\": \"82810-3\",\n \"display\": \"Pregnancy status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T01:28:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T01:28:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T23:53:27.721652+00:00\",\n \"versionId\": \"MTcxMDg5MjQwNzcyMTY1MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"60001007\",\n \"display\": \"Not pregnant\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Rontgen Thorax",
"item": [
{
"name": "ServiceRequest - Create",
"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\": \"00001B\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120054\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ],\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"DX\"\n }\n ],\n \"text\": \"Modality Code: DX\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"DX0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"00001B\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120054\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ],\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"DX\"\n }\n ],\n \"text\": \"Modality Code: DX\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"DX0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "etag",
"value": "W/\"MTcxMDg5Mzc0NjE5OTc4ODAwMA\""
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 00:15:46 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/ServiceRequest/ba80cc65-4331-46e6-8673-0f720cf7f5c7/_history/MTcxMDg5Mzc0NjE5OTc4ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 00:15:46 GMT"
},
{
"key": "Content-Length",
"value": "8778"
},
{
"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": "48904b20-0a7a-4345-b40a-ba62121a41f7"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"36572-6\",\n \"display\": \"XR Chest AP\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"ba80cc65-4331-46e6-8673-0f720cf7f5c7\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"00001B\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120054\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T00:15:46.199788+00:00\",\n \"versionId\": \"MTcxMDg5Mzc0NjE5OTc4ODAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"DX\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: DX\"\n },\n {\n \"coding\": [\n {\n \"display\": \"DX0001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120054",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120054"
}
]
}
},
"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/10000002|21120054",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120054"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 00:21:44 GMT"
},
{
"key": "Content-Length",
"value": "21112"
},
{
"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": "56331747-030a-4153-8a8b-9f35e2c09ccd"
},
{
"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/1f09d404-ae47-4d8f-b8e5-df332b85da8e\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/ba80cc65-4331-46e6-8673-0f720cf7f5c7\"\n }\n ],\n \"id\": \"1f09d404-ae47-4d8f-b8e5-df332b85da8e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120054\"\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-03-20T00:21:08.067915+00:00\",\n \"versionId\": \"MTcxMDg5NDA2ODA2NzkxNTAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"DX\",\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\": \"DX\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T01:30:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T01:30:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ImagingStudy/a4147bac-6fb7-45bd-b165-fa1421ff2856\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/b6910728-652f-4322-8ff6-53dfb8b87a43\"\n }\n ],\n \"id\": \"a4147bac-6fb7-45bd-b165-fa1421ff2856\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120054\"\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-03-19T13:35:04.172181+00:00\",\n \"versionId\": \"MTcxMDg1NTMwNDE3MjE4MTAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"CT\",\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\": \"CT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2022-12-26T16:30:27+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2023-03-01T02:30:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030015\"\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ImagingStudy/34dfa1b3-95f3-4b81-bb00-c73eeb99272d\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/539cad4d-4ab5-4168-9cdf-088083076593\"\n }\n ],\n \"id\": \"34dfa1b3-95f3-4b81-bb00-c73eeb99272d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120054\"\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-03-19T12:18:54.240418+00:00\",\n \"versionId\": \"MTcxMDg1MDczNDI0MDQxODAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"CT\",\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\": \"CT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2022-12-26T16:30:27+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-01T02:30:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030015\"\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%2F10000002%7C21120054\"\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%2F10000002%7C21120054\"\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%2F10000002%7C21120054\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 3,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111111\"\n }\n ],\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_RontgenThorax}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000164\",\n \"display\": \"Cardiothoracic Ratio (CTR)\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 60,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"85804007\",\n \"display\": \"Congestion\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"128309002\",\n \"display\": \"Radiologic infiltrate\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"41699000\",\n \"display\": \"Effusion\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Ditemukan kelainan dalam Rontgen Thorax\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111111\"\n }\n ],\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_RontgenThorax}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000164\",\n \"display\": \"Cardiothoracic Ratio (CTR)\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 60,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"85804007\",\n \"display\": \"Congestion\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"128309002\",\n \"display\": \"Radiologic infiltrate\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"41699000\",\n \"display\": \"Effusion\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Ditemukan kelainan dalam Rontgen Thorax\"\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": "Wed, 20 Mar 2024 00:31:06 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/Observation/1138176c-aede-4ced-ae05-57172c9ffc89/_history/MTcxMDg5NDY2Njk1ODYwMTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg5NDY2Njk1ODYwMTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 00:31:06 GMT"
},
{
"key": "Content-Length",
"value": "8440"
},
{
"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": "1cdd661f-f6c4-4e1e-a544-48e8ee818757"
},
{
"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/ba80cc65-4331-46e6-8673-0f720cf7f5c7\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"36572-6\",\n \"display\": \"XR Chest AP\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000164\",\n \"display\": \"Cardiothoracic Ratio (CTR)\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"valueQuantity\": {\n \"code\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"%\",\n \"value\": 60\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"85804007\",\n \"display\": \"Congestion\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"128309002\",\n \"display\": \"Radiologic infiltrate\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"41699000\",\n \"display\": \"Effusion\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/1f09d404-ae47-4d8f-b8e5-df332b85da8e\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"1138176c-aede-4ced-ae05-57172c9ffc89\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111111\"\n }\n ],\n \"issued\": \"2024-03-15T01:35:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T00:31:06.958601+00:00\",\n \"versionId\": \"MTcxMDg5NDY2Njk1ODYwMTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Ditemukan kelainan dalam Rontgen Thorax\"\n}"
}
]
},
{
"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\": \"52343421\"\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35: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_RontgenThorax}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_RontgenThorax}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya pembesaran jantung (cardiomegaly) disertai kongesti, infiltrat, dan efusi\"\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\": \"52343421\"\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35: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_RontgenThorax}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_RontgenThorax}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya pembesaran jantung (cardiomegaly) disertai kongesti, infiltrat, dan efusi\"\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/79afc2f6-e5a4-4e99-b25c-0612de508b60/_history/MTcxMDg5NTI4NTE5NDcyODAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 00:41:25 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg5NTI4NTE5NDcyODAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 00:41:25 GMT"
},
{
"key": "Content-Length",
"value": "5610"
},
{
"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": "c0a4e066-9331-4205-bc69-80c7733d44c6"
},
{
"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/ba80cc65-4331-46e6-8673-0f720cf7f5c7\"\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\": \"36572-6\",\n \"display\": \"XR Chest AP\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Ditemukan adanya pembesaran jantung (cardiomegaly) disertai kongesti, infiltrat, dan efusi\",\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"79afc2f6-e5a4-4e99-b25c-0612de508b60\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343421\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/1f09d404-ae47-4d8f-b8e5-df332b85da8e\"\n }\n ],\n \"issued\": \"2024-03-15T01:35:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T00:41:25.194728+00:00\",\n \"versionId\": \"MTcxMDg5NTI4NTE5NDcyODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/1138176c-aede-4ced-ae05-57172c9ffc89\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120054",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120054"
}
]
}
},
"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/10000002|21120054",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120054"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 00:21:44 GMT"
},
{
"key": "Content-Length",
"value": "21112"
},
{
"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": "56331747-030a-4153-8a8b-9f35e2c09ccd"
},
{
"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/1f09d404-ae47-4d8f-b8e5-df332b85da8e\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/ba80cc65-4331-46e6-8673-0f720cf7f5c7\"\n }\n ],\n \"id\": \"1f09d404-ae47-4d8f-b8e5-df332b85da8e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120054\"\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-03-20T00:21:08.067915+00:00\",\n \"versionId\": \"MTcxMDg5NDA2ODA2NzkxNTAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"DX\",\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\": \"DX\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T01:30:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T01:30:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ImagingStudy/a4147bac-6fb7-45bd-b165-fa1421ff2856\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/b6910728-652f-4322-8ff6-53dfb8b87a43\"\n }\n ],\n \"id\": \"a4147bac-6fb7-45bd-b165-fa1421ff2856\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120054\"\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-03-19T13:35:04.172181+00:00\",\n \"versionId\": \"MTcxMDg1NTMwNDE3MjE4MTAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"CT\",\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\": \"CT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2022-12-26T16:30:27+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2023-03-01T02:30:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030015\"\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ImagingStudy/34dfa1b3-95f3-4b81-bb00-c73eeb99272d\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/539cad4d-4ab5-4168-9cdf-088083076593\"\n }\n ],\n \"id\": \"34dfa1b3-95f3-4b81-bb00-c73eeb99272d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120054\"\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-03-19T12:18:54.240418+00:00\",\n \"versionId\": \"MTcxMDg1MDczNDI0MDQxODAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"CT\",\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\": \"CT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2022-12-26T16:30:27+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-01T02:30:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030015\"\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%2F10000002%7C21120054\"\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%2F10000002%7C21120054\"\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%2F10000002%7C21120054\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 3,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "ServiceRequest - Create",
"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\": \"00001B\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120054\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ],\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"DX\"\n }\n ],\n \"text\": \"Modality Code: DX\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"DX0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"00001B\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120054\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ],\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"DX\"\n }\n ],\n \"text\": \"Modality Code: DX\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"DX0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "etag",
"value": "W/\"MTcxMDg5Mzc0NjE5OTc4ODAwMA\""
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 00:15:46 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/ServiceRequest/ba80cc65-4331-46e6-8673-0f720cf7f5c7/_history/MTcxMDg5Mzc0NjE5OTc4ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 00:15:46 GMT"
},
{
"key": "Content-Length",
"value": "8778"
},
{
"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": "48904b20-0a7a-4345-b40a-ba62121a41f7"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"36572-6\",\n \"display\": \"XR Chest AP\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"ba80cc65-4331-46e6-8673-0f720cf7f5c7\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"00001B\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120054\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T00:15:46.199788+00:00\",\n \"versionId\": \"MTcxMDg5Mzc0NjE5OTc4ODAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"DX\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: DX\"\n },\n {\n \"coding\": [\n {\n \"display\": \"DX0001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"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\": \"52343421\"\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35: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_RontgenThorax}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_RontgenThorax}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya pembesaran jantung (cardiomegaly) disertai kongesti, infiltrat, dan efusi\"\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\": \"52343421\"\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35: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_RontgenThorax}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_RontgenThorax}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya pembesaran jantung (cardiomegaly) disertai kongesti, infiltrat, dan efusi\"\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/79afc2f6-e5a4-4e99-b25c-0612de508b60/_history/MTcxMDg5NTI4NTE5NDcyODAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 00:41:25 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg5NTI4NTE5NDcyODAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 00:41:25 GMT"
},
{
"key": "Content-Length",
"value": "5610"
},
{
"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": "c0a4e066-9331-4205-bc69-80c7733d44c6"
},
{
"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/ba80cc65-4331-46e6-8673-0f720cf7f5c7\"\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\": \"36572-6\",\n \"display\": \"XR Chest AP\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Ditemukan adanya pembesaran jantung (cardiomegaly) disertai kongesti, infiltrat, dan efusi\",\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"79afc2f6-e5a4-4e99-b25c-0612de508b60\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343421\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/1f09d404-ae47-4d8f-b8e5-df332b85da8e\"\n }\n ],\n \"issued\": \"2024-03-15T01:35:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T00:41:25.194728+00:00\",\n \"versionId\": \"MTcxMDg5NTI4NTE5NDcyODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/1138176c-aede-4ced-ae05-57172c9ffc89\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111111\"\n }\n ],\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_RontgenThorax}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000164\",\n \"display\": \"Cardiothoracic Ratio (CTR)\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 60,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"85804007\",\n \"display\": \"Congestion\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"128309002\",\n \"display\": \"Radiologic infiltrate\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"41699000\",\n \"display\": \"Effusion\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Ditemukan kelainan dalam Rontgen Thorax\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111111\"\n }\n ],\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_RontgenThorax}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000164\",\n \"display\": \"Cardiothoracic Ratio (CTR)\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 60,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"85804007\",\n \"display\": \"Congestion\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"128309002\",\n \"display\": \"Radiologic infiltrate\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"41699000\",\n \"display\": \"Effusion\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Ditemukan kelainan dalam Rontgen Thorax\"\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": "Wed, 20 Mar 2024 00:31:06 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/Observation/1138176c-aede-4ced-ae05-57172c9ffc89/_history/MTcxMDg5NDY2Njk1ODYwMTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg5NDY2Njk1ODYwMTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 00:31:06 GMT"
},
{
"key": "Content-Length",
"value": "8440"
},
{
"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": "1cdd661f-f6c4-4e1e-a544-48e8ee818757"
},
{
"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/ba80cc65-4331-46e6-8673-0f720cf7f5c7\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"36572-6\",\n \"display\": \"XR Chest AP\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000164\",\n \"display\": \"Cardiothoracic Ratio (CTR)\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"valueQuantity\": {\n \"code\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"%\",\n \"value\": 60\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"85804007\",\n \"display\": \"Congestion\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"128309002\",\n \"display\": \"Radiologic infiltrate\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"41699000\",\n \"display\": \"Effusion\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/1f09d404-ae47-4d8f-b8e5-df332b85da8e\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"1138176c-aede-4ced-ae05-57172c9ffc89\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111111\"\n }\n ],\n \"issued\": \"2024-03-15T01:35:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T00:31:06.958601+00:00\",\n \"versionId\": \"MTcxMDg5NDY2Njk1ODYwMTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Ditemukan kelainan dalam Rontgen Thorax\"\n}"
}
]
}
]
},
{
"name": "CT Calcium Score",
"item": [
{
"name": "ServiceRequest - Create",
"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\": \"000012\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120055\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\"\n }\n ],\n \"text\": \"Pemeriksaan CT Calcium Score\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"CT\"\n }\n ],\n \"text\": \"Modality Code: CT\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"CT0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:35:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan CT Calcium Score untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan CT Calcium Score\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000012\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120055\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\"\n }\n ],\n \"text\": \"Pemeriksaan CT Calcium Score\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"CT\"\n }\n ],\n \"text\": \"Modality Code: CT\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"CT0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:35:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan CT Calcium Score untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan CT Calcium Score\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/1b012615-0364-4390-8e0c-83dd6edf0fc3/_history/MTcxMDg5NjM4NjUxOTIzODAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg5NjM4NjUxOTIzODAwMA\""
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 00:59:46 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 00:59:46 GMT"
},
{
"key": "Content-Length",
"value": "8998"
},
{
"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": "d76d461f-e642-43bb-b6ce-a669c638ea8f"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan CT Calcium Score\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"1b012615-0364-4390-8e0c-83dd6edf0fc3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000012\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120055\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T00:59:46.519238+00:00\",\n \"versionId\": \"MTcxMDg5NjM4NjUxOTIzODAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan CT Calcium Score\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T01:35:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"CT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: CT\"\n },\n {\n \"coding\": [\n {\n \"display\": \"CT0001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan CT Calcium Score untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120055",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120055"
}
]
}
},
"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/10000002|21120055",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120055"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 01:05:05 GMT"
},
{
"key": "Content-Length",
"value": "15036"
},
{
"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": "e0ddad73-98e0-4fab-b5b0-297403bc3404"
},
{
"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/beeb7d34-e02e-4c9e-8ff2-0fc485419900\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/1b012615-0364-4390-8e0c-83dd6edf0fc3\"\n }\n ],\n \"id\": \"beeb7d34-e02e-4c9e-8ff2-0fc485419900\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120055\"\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-03-20T01:01:43.236670+00:00\",\n \"versionId\": \"MTcxMDg5NjUwMzIzNjY3MDAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"CT\",\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\": \"CT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T01:35:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T01:35:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ImagingStudy/fee30ff1-2ce1-4b3f-9330-fdcebbce1438\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/b6910728-652f-4322-8ff6-53dfb8b87a43\"\n }\n ],\n \"id\": \"fee30ff1-2ce1-4b3f-9330-fdcebbce1438\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120055\"\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-03-19T13:36:51.621708+00:00\",\n \"versionId\": \"MTcxMDg1NTQxMTYyMTcwODAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"CT\",\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\": \"CT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2022-12-26T16:30:27+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2023-03-01T02:30:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030015\"\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%2F10000002%7C21120055\"\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%2F10000002%7C21120055\"\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%2F10000002%7C21120055\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 2,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111112\"\n }\n ],\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\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:35:00+00:00\",\n \"issued\": \"2024-03-15T01:40:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTCalciumScore}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_CTCalciumScore}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 300,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111112\"\n }\n ],\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\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:35:00+00:00\",\n \"issued\": \"2024-03-15T01:40:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTCalciumScore}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_CTCalciumScore}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 300,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\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": "Wed, 20 Mar 2024 01:19:50 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg5NzU5MDMyNDg3NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/5564ed15-90ea-4b79-b6a2-b17ad5f78bbc/_history/MTcxMDg5NzU5MDMyNDg3NzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 01:19:50 GMT"
},
{
"key": "Content-Length",
"value": "5922"
},
{
"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": "ba99eff8-8d88-46b2-93c9-dcf2eb37265f"
},
{
"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/1b012615-0364-4390-8e0c-83dd6edf0fc3\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/beeb7d34-e02e-4c9e-8ff2-0fc485419900\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T01:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"5564ed15-90ea-4b79-b6a2-b17ad5f78bbc\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111112\"\n }\n ],\n \"issued\": \"2024-03-15T01:40:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T01:19:50.324877+00:00\",\n \"versionId\": \"MTcxMDg5NzU5MDMyNDg3NzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"%\",\n \"value\": 300\n }\n}"
}
]
},
{
"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\": \"52343422\"\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\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35: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_CTCalciumScore}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_CTCalciumScore}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTCalciumScore}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya plak yang cukup banyak dan sedang mengalami gangguan jantung dengan risiko serangan jantung menengah tinggi.\"\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\": \"52343422\"\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\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35: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_CTCalciumScore}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_CTCalciumScore}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTCalciumScore}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya plak yang cukup banyak dan sedang mengalami gangguan jantung dengan risiko serangan jantung menengah tinggi.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 01:24:52 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg5Nzg5MjYzMDcyNDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/15895f39-4f94-4330-a71c-b3c760f8310b/_history/MTcxMDg5Nzg5MjYzMDcyNDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 01:24:52 GMT"
},
{
"key": "Content-Length",
"value": "5954"
},
{
"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": "0915a578-31f0-4b75-84b7-572ec633df0c"
},
{
"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/1b012615-0364-4390-8e0c-83dd6edf0fc3\"\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\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Ditemukan adanya plak yang cukup banyak dan sedang mengalami gangguan jantung dengan risiko serangan jantung menengah tinggi.\",\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"15895f39-4f94-4330-a71c-b3c760f8310b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343422\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/beeb7d34-e02e-4c9e-8ff2-0fc485419900\"\n }\n ],\n \"issued\": \"2024-03-15T01:35:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T01:24:52.630724+00:00\",\n \"versionId\": \"MTcxMDg5Nzg5MjYzMDcyNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/5564ed15-90ea-4b79-b6a2-b17ad5f78bbc\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120055",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120055"
}
]
}
},
"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/10000002|21120055",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120055"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 01:05:05 GMT"
},
{
"key": "Content-Length",
"value": "15036"
},
{
"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": "e0ddad73-98e0-4fab-b5b0-297403bc3404"
},
{
"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/beeb7d34-e02e-4c9e-8ff2-0fc485419900\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/1b012615-0364-4390-8e0c-83dd6edf0fc3\"\n }\n ],\n \"id\": \"beeb7d34-e02e-4c9e-8ff2-0fc485419900\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120055\"\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-03-20T01:01:43.236670+00:00\",\n \"versionId\": \"MTcxMDg5NjUwMzIzNjY3MDAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"CT\",\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\": \"CT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T01:35:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T01:35:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ImagingStudy/fee30ff1-2ce1-4b3f-9330-fdcebbce1438\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/b6910728-652f-4322-8ff6-53dfb8b87a43\"\n }\n ],\n \"id\": \"fee30ff1-2ce1-4b3f-9330-fdcebbce1438\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120055\"\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-03-19T13:36:51.621708+00:00\",\n \"versionId\": \"MTcxMDg1NTQxMTYyMTcwODAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"CT\",\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\": \"CT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2022-12-26T16:30:27+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2023-03-01T02:30:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030015\"\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%2F10000002%7C21120055\"\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%2F10000002%7C21120055\"\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%2F10000002%7C21120055\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 2,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111112\"\n }\n ],\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\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:35:00+00:00\",\n \"issued\": \"2024-03-15T01:40:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTCalciumScore}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_CTCalciumScore}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 300,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111112\"\n }\n ],\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\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:35:00+00:00\",\n \"issued\": \"2024-03-15T01:40:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTCalciumScore}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_CTCalciumScore}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 300,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\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": "Wed, 20 Mar 2024 01:19:50 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg5NzU5MDMyNDg3NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/5564ed15-90ea-4b79-b6a2-b17ad5f78bbc/_history/MTcxMDg5NzU5MDMyNDg3NzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 01:19:50 GMT"
},
{
"key": "Content-Length",
"value": "5922"
},
{
"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": "ba99eff8-8d88-46b2-93c9-dcf2eb37265f"
},
{
"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/1b012615-0364-4390-8e0c-83dd6edf0fc3\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/beeb7d34-e02e-4c9e-8ff2-0fc485419900\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T01:35:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"5564ed15-90ea-4b79-b6a2-b17ad5f78bbc\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111112\"\n }\n ],\n \"issued\": \"2024-03-15T01:40:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T01:19:50.324877+00:00\",\n \"versionId\": \"MTcxMDg5NzU5MDMyNDg3NzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"%\",\n \"value\": 300\n }\n}"
}
]
},
{
"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\": \"52343422\"\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\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35: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_CTCalciumScore}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_CTCalciumScore}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTCalciumScore}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya plak yang cukup banyak dan sedang mengalami gangguan jantung dengan risiko serangan jantung menengah tinggi.\"\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\": \"52343422\"\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\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35: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_CTCalciumScore}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_CTCalciumScore}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTCalciumScore}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya plak yang cukup banyak dan sedang mengalami gangguan jantung dengan risiko serangan jantung menengah tinggi.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 01:24:52 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg5Nzg5MjYzMDcyNDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/15895f39-4f94-4330-a71c-b3c760f8310b/_history/MTcxMDg5Nzg5MjYzMDcyNDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 01:24:52 GMT"
},
{
"key": "Content-Length",
"value": "5954"
},
{
"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": "0915a578-31f0-4b75-84b7-572ec633df0c"
},
{
"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/1b012615-0364-4390-8e0c-83dd6edf0fc3\"\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\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Ditemukan adanya plak yang cukup banyak dan sedang mengalami gangguan jantung dengan risiko serangan jantung menengah tinggi.\",\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"15895f39-4f94-4330-a71c-b3c760f8310b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343422\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/beeb7d34-e02e-4c9e-8ff2-0fc485419900\"\n }\n ],\n \"issued\": \"2024-03-15T01:35:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T01:24:52.630724+00:00\",\n \"versionId\": \"MTcxMDg5Nzg5MjYzMDcyNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/5564ed15-90ea-4b79-b6a2-b17ad5f78bbc\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Create",
"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\": \"000012\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120055\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\"\n }\n ],\n \"text\": \"Pemeriksaan CT Calcium Score\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"CT\"\n }\n ],\n \"text\": \"Modality Code: CT\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"CT0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:35:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan CT Calcium Score untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan CT Calcium Score\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000012\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120055\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\"\n }\n ],\n \"text\": \"Pemeriksaan CT Calcium Score\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"CT\"\n }\n ],\n \"text\": \"Modality Code: CT\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"CT0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:35:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan CT Calcium Score untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan CT Calcium Score\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/1b012615-0364-4390-8e0c-83dd6edf0fc3/_history/MTcxMDg5NjM4NjUxOTIzODAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg5NjM4NjUxOTIzODAwMA\""
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 00:59:46 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 00:59:46 GMT"
},
{
"key": "Content-Length",
"value": "8998"
},
{
"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": "d76d461f-e642-43bb-b6ce-a669c638ea8f"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"79087-3\",\n \"display\": \"CT Heart and Coronary arteries for calcium scoring WO contrast\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan CT Calcium Score\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"1b012615-0364-4390-8e0c-83dd6edf0fc3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000012\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120055\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T00:59:46.519238+00:00\",\n \"versionId\": \"MTcxMDg5NjM4NjUxOTIzODAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan CT Calcium Score\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T01:35:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"CT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: CT\"\n },\n {\n \"coding\": [\n {\n \"display\": \"CT0001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan CT Calcium Score untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
}
]
},
{
"name": "CT Angiografi Koroner",
"item": [
{
"name": "ServiceRequest - Create",
"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\": \"000012\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120056\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\"\n }\n ],\n \"text\": \"Pemeriksaan CT Angiografi Koroner\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"CT\"\n }\n ],\n \"text\": \"Modality Code: CT\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"CT0002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan CT Angiografi Koroner untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan CT Angiografi Koroner\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000012\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120056\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\"\n }\n ],\n \"text\": \"Pemeriksaan CT Angiografi Koroner\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"CT\"\n }\n ],\n \"text\": \"Modality Code: CT\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"CT0002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan CT Angiografi Koroner untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan CT Angiografi Koroner\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "etag",
"value": "W/\"MTcxMDkwMDkzMzMxMjE1NTAwMA\""
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 02:15:33 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/53e941f4-5695-45a5-a651-ca6664968cd8/_history/MTcxMDkwMDkzMzMxMjE1NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 02:15:33 GMT"
},
{
"key": "Content-Length",
"value": "8990"
},
{
"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": "3cba3ef1-566d-4f79-a049-29a4dd5b0386"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan CT Angiografi Koroner\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"53e941f4-5695-45a5-a651-ca6664968cd8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000012\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120056\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T02:15:33.312155+00:00\",\n \"versionId\": \"MTcxMDkwMDkzMzMxMjE1NTAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan CT Angiografi Koroner\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"CT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: CT\"\n },\n {\n \"coding\": [\n {\n \"display\": \"CT0002\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan CT Angiografi Koroner untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120056",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120056"
}
]
}
},
"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/10000002|21120056",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120056"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 02:17:32 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "8e70361d-cdee-4236-921e-b4f43f36a076"
},
{
"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/661cfabd-73ad-4bc0-930b-a6768ec4beb0\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/53e941f4-5695-45a5-a651-ca6664968cd8\"\n }\n ],\n \"id\": \"661cfabd-73ad-4bc0-930b-a6768ec4beb0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120056\"\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-03-20T02:16:56.233273+00:00\",\n \"versionId\": \"MTcxMDkwMTAxNjIzMzI3MzAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"CT\",\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\": \"CT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T01:35:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T01:40:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120056\"\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%2F10000002%7C21120056\"\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%2F10000002%7C21120056\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111112\"\n }\n ],\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\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"issued\": \"2024-03-15T01:45:10+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTAngiografi}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_CTAngiografi}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 72,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111112\"\n }\n ],\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\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"issued\": \"2024-03-15T01:45:10+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTAngiografi}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_CTAngiografi}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 72,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\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": "Wed, 20 Mar 2024 02:26:48 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDkwMTYwODExMjQxODAwMA\""
},
{
"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/bf5d887f-bb8c-417e-9a56-d4f6dd771912/_history/MTcxMDkwMTYwODExMjQxODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 02:26:48 GMT"
},
{
"key": "Content-Length",
"value": "5852"
},
{
"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": "c7b56c43-e537-40f4-9b33-702442c2d26a"
},
{
"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/53e941f4-5695-45a5-a651-ca6664968cd8\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/661cfabd-73ad-4bc0-930b-a6768ec4beb0\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"bf5d887f-bb8c-417e-9a56-d4f6dd771912\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111112\"\n }\n ],\n \"issued\": \"2024-03-15T01:45:10+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T02:26:48.112418+00:00\",\n \"versionId\": \"MTcxMDkwMTYwODExMjQxODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"%\",\n \"value\": 72\n }\n}"
}
]
},
{
"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\": \"52343423\"\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\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"issued\": \"2024-03-15T01:45:10+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_CTAngiografi}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_CTAngiografi}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTAngiografi}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya penyempitan dan penyumbatan pembuluh darah\"\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\": \"52343423\"\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\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"issued\": \"2024-03-15T01:45:10+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_CTAngiografi}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_CTAngiografi}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTAngiografi}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya penyempitan dan penyumbatan pembuluh darah\"\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": "Wed, 20 Mar 2024 02:31:25 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/DiagnosticReport/b204ffe6-8a88-48f8-a10c-618d019cf079/_history/MTcxMDkwMTg4NTE1MDczNjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDkwMTg4NTE1MDczNjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 02:31:25 GMT"
},
{
"key": "Content-Length",
"value": "5622"
},
{
"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": "bd16774c-e6fe-446e-8751-d01333ce7c09"
},
{
"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/53e941f4-5695-45a5-a651-ca6664968cd8\"\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\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Ditemukan adanya penyempitan dan penyumbatan pembuluh darah\",\n \"effectiveDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"b204ffe6-8a88-48f8-a10c-618d019cf079\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343423\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/661cfabd-73ad-4bc0-930b-a6768ec4beb0\"\n }\n ],\n \"issued\": \"2024-03-15T01:45:10+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T02:31:25.150736+00:00\",\n \"versionId\": \"MTcxMDkwMTg4NTE1MDczNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/bf5d887f-bb8c-417e-9a56-d4f6dd771912\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"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\": \"52343423\"\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\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"issued\": \"2024-03-15T01:45:10+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_CTAngiografi}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_CTAngiografi}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTAngiografi}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya penyempitan dan penyumbatan pembuluh darah\"\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\": \"52343423\"\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\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"issued\": \"2024-03-15T01:45:10+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_CTAngiografi}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_CTAngiografi}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTAngiografi}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya penyempitan dan penyumbatan pembuluh darah\"\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": "Wed, 20 Mar 2024 02:31:25 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/DiagnosticReport/b204ffe6-8a88-48f8-a10c-618d019cf079/_history/MTcxMDkwMTg4NTE1MDczNjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDkwMTg4NTE1MDczNjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 02:31:25 GMT"
},
{
"key": "Content-Length",
"value": "5622"
},
{
"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": "bd16774c-e6fe-446e-8751-d01333ce7c09"
},
{
"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/53e941f4-5695-45a5-a651-ca6664968cd8\"\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\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Ditemukan adanya penyempitan dan penyumbatan pembuluh darah\",\n \"effectiveDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"b204ffe6-8a88-48f8-a10c-618d019cf079\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343423\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/661cfabd-73ad-4bc0-930b-a6768ec4beb0\"\n }\n ],\n \"issued\": \"2024-03-15T01:45:10+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T02:31:25.150736+00:00\",\n \"versionId\": \"MTcxMDkwMTg4NTE1MDczNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/bf5d887f-bb8c-417e-9a56-d4f6dd771912\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120056",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120056"
}
]
}
},
"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/10000002|21120056",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120056"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 02:17:32 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "8e70361d-cdee-4236-921e-b4f43f36a076"
},
{
"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/661cfabd-73ad-4bc0-930b-a6768ec4beb0\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/53e941f4-5695-45a5-a651-ca6664968cd8\"\n }\n ],\n \"id\": \"661cfabd-73ad-4bc0-930b-a6768ec4beb0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120056\"\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-03-20T02:16:56.233273+00:00\",\n \"versionId\": \"MTcxMDkwMTAxNjIzMzI3MzAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"CT\",\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\": \"CT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T01:35:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T01:40:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120056\"\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%2F10000002%7C21120056\"\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%2F10000002%7C21120056\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111112\"\n }\n ],\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\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"issued\": \"2024-03-15T01:45:10+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTAngiografi}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_CTAngiografi}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 72,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111112\"\n }\n ],\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\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"issued\": \"2024-03-15T01:45:10+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CTAngiografi}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_CTAngiografi}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 72,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\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": "Wed, 20 Mar 2024 02:26:48 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDkwMTYwODExMjQxODAwMA\""
},
{
"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/bf5d887f-bb8c-417e-9a56-d4f6dd771912/_history/MTcxMDkwMTYwODExMjQxODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 02:26:48 GMT"
},
{
"key": "Content-Length",
"value": "5852"
},
{
"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": "c7b56c43-e537-40f4-9b33-702442c2d26a"
},
{
"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/53e941f4-5695-45a5-a651-ca6664968cd8\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/661cfabd-73ad-4bc0-930b-a6768ec4beb0\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"bf5d887f-bb8c-417e-9a56-d4f6dd771912\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111112\"\n }\n ],\n \"issued\": \"2024-03-15T01:45:10+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T02:26:48.112418+00:00\",\n \"versionId\": \"MTcxMDkwMTYwODExMjQxODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"%\",\n \"value\": 72\n }\n}"
}
]
},
{
"name": "ServiceRequest - Create",
"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\": \"000012\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120056\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\"\n }\n ],\n \"text\": \"Pemeriksaan CT Angiografi Koroner\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"CT\"\n }\n ],\n \"text\": \"Modality Code: CT\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"CT0002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan CT Angiografi Koroner untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan CT Angiografi Koroner\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000012\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120056\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\"\n }\n ],\n \"text\": \"Pemeriksaan CT Angiografi Koroner\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"CT\"\n }\n ],\n \"text\": \"Modality Code: CT\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"CT0002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan CT Angiografi Koroner untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan CT Angiografi Koroner\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "etag",
"value": "W/\"MTcxMDkwMDkzMzMxMjE1NTAwMA\""
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 02:15:33 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/53e941f4-5695-45a5-a651-ca6664968cd8/_history/MTcxMDkwMDkzMzMxMjE1NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 02:15:33 GMT"
},
{
"key": "Content-Length",
"value": "8990"
},
{
"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": "3cba3ef1-566d-4f79-a049-29a4dd5b0386"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"79073-3\",\n \"display\": \"CTA Heart and Coronary arteries W contrast IV\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan CT Angiografi Koroner\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"53e941f4-5695-45a5-a651-ca6664968cd8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000012\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120056\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T02:15:33.312155+00:00\",\n \"versionId\": \"MTcxMDkwMDkzMzMxMjE1NTAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan CT Angiografi Koroner\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T01:40:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"CT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: CT\"\n },\n {\n \"coding\": [\n {\n \"display\": \"CT0002\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan CT Angiografi Koroner untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
}
]
},
{
"name": "Uji Latih Jantung EKG",
"item": [
{
"name": "ServiceRequest - Create",
"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\": \"000013\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120057\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"ECG\"\n }\n ],\n \"text\": \"Modality Code: ECG\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"ECG0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000013\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120057\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"ECG\"\n }\n ],\n \"text\": \"Modality Code: ECG\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"ECG0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/b0c4bd50-ccfa-4bbc-a9f3-ba4e8c45ed63/_history/MTcxMDk3MDI1NTY4MTU5NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3MDI1NTY4MTU5NDAwMA\""
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 21:30:55 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:30:55 GMT"
},
{
"key": "Content-Length",
"value": "8958"
},
{
"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": "41e6d415-02a8-4ec6-b991-e356b157b130"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"b0c4bd50-ccfa-4bbc-a9f3-ba4e8c45ed63\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000013\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120057\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T21:30:55.681594+00:00\",\n \"versionId\": \"MTcxMDk3MDI1NTY4MTU5NDAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"ECG\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: ECG\"\n },\n {\n \"coding\": [\n {\n \"display\": \"ECG0001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120057",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120057"
}
]
}
},
"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/10000002|21120057",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120057"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:32:55 GMT"
},
{
"key": "Content-Length",
"value": "8968"
},
{
"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": "6f89425e-32bf-4d45-a6c9-92cc722ce894"
},
{
"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/7a1484b5-cffc-40a7-813f-9db9558849ff\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/b0c4bd50-ccfa-4bbc-a9f3-ba4e8c45ed63\"\n }\n ],\n \"id\": \"7a1484b5-cffc-40a7-813f-9db9558849ff\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120057\"\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-03-20T21:32:37.681717+00:00\",\n \"versionId\": \"MTcxMDk3MDM1NzY4MTcxNzAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"ECG\",\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\": \"ECG\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T01:45:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T01:45:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120057\"\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%2F10000002%7C21120057\"\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%2F10000002%7C21120057\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111113\"\n }\n ],\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\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"issued\": \"2024-03-15T01:50:10+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EKGUjiLatihJantung}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EKGUjiLatihJantung}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000375\",\n \"display\": \"Respon iskemia positif\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111113\"\n }\n ],\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\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"issued\": \"2024-03-15T01:50:10+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EKGUjiLatihJantung}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EKGUjiLatihJantung}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000375\",\n \"display\": \"Respon iskemia positif\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk3MDU1NjQ2NzA5MzAwMA\""
},
{
"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/8ace5d9a-f503-4924-aa8c-3900c1ccb004/_history/MTcxMDk3MDU1NjQ2NzA5MzAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 21:35:56 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:35:56 GMT"
},
{
"key": "Content-Length",
"value": "6092"
},
{
"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": "b5a54533-6467-408d-91f3-ebf849b120ef"
},
{
"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/b0c4bd50-ccfa-4bbc-a9f3-ba4e8c45ed63\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/7a1484b5-cffc-40a7-813f-9db9558849ff\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"8ace5d9a-f503-4924-aa8c-3900c1ccb004\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111113\"\n }\n ],\n \"issued\": \"2024-03-15T01:50:10+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T21:35:56.467093+00:00\",\n \"versionId\": \"MTcxMDk3MDU1NjQ2NzA5MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000375\",\n \"display\": \"Respon iskemia positif\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n}"
}
]
},
{
"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\": \"52343424\"\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\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"issued\": \"2024-03-15T01:50:10+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_EKGUjiLatihJantung}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EKGUjiLatihJantung}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EKGUjiLatihJantung}}\"\n }\n ],\n \"conclusion\": \"Respon iskemia positif\"\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\": \"52343424\"\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\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"issued\": \"2024-03-15T01:50:10+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_EKGUjiLatihJantung}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EKGUjiLatihJantung}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EKGUjiLatihJantung}}\"\n }\n ],\n \"conclusion\": \"Respon iskemia positif\"\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/a647ef27-9458-46e8-beeb-45625795379c/_history/MTcxMDk3MDc3MTc3Mjg0NjAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 21:39:31 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3MDc3MTc3Mjg0NjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:39:31 GMT"
},
{
"key": "Content-Length",
"value": "5430"
},
{
"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": "2af66d2a-9c1d-484f-aabb-1d30d1f204a1"
},
{
"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/b0c4bd50-ccfa-4bbc-a9f3-ba4e8c45ed63\"\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\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Respon iskemia positif\",\n \"effectiveDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a647ef27-9458-46e8-beeb-45625795379c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343424\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/7a1484b5-cffc-40a7-813f-9db9558849ff\"\n }\n ],\n \"issued\": \"2024-03-15T01:50:10+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T21:39:31.772846+00:00\",\n \"versionId\": \"MTcxMDk3MDc3MTc3Mjg0NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/8ace5d9a-f503-4924-aa8c-3900c1ccb004\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120057",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120057"
}
]
}
},
"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/10000002|21120057",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120057"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:32:55 GMT"
},
{
"key": "Content-Length",
"value": "8968"
},
{
"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": "6f89425e-32bf-4d45-a6c9-92cc722ce894"
},
{
"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/7a1484b5-cffc-40a7-813f-9db9558849ff\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/b0c4bd50-ccfa-4bbc-a9f3-ba4e8c45ed63\"\n }\n ],\n \"id\": \"7a1484b5-cffc-40a7-813f-9db9558849ff\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120057\"\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-03-20T21:32:37.681717+00:00\",\n \"versionId\": \"MTcxMDk3MDM1NzY4MTcxNzAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"ECG\",\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\": \"ECG\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T01:45:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T01:45:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120057\"\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%2F10000002%7C21120057\"\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%2F10000002%7C21120057\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111113\"\n }\n ],\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\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"issued\": \"2024-03-15T01:50:10+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EKGUjiLatihJantung}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EKGUjiLatihJantung}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000375\",\n \"display\": \"Respon iskemia positif\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111113\"\n }\n ],\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\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"issued\": \"2024-03-15T01:50:10+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EKGUjiLatihJantung}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EKGUjiLatihJantung}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000375\",\n \"display\": \"Respon iskemia positif\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk3MDU1NjQ2NzA5MzAwMA\""
},
{
"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/8ace5d9a-f503-4924-aa8c-3900c1ccb004/_history/MTcxMDk3MDU1NjQ2NzA5MzAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 21:35:56 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:35:56 GMT"
},
{
"key": "Content-Length",
"value": "6092"
},
{
"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": "b5a54533-6467-408d-91f3-ebf849b120ef"
},
{
"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/b0c4bd50-ccfa-4bbc-a9f3-ba4e8c45ed63\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/7a1484b5-cffc-40a7-813f-9db9558849ff\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"8ace5d9a-f503-4924-aa8c-3900c1ccb004\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111113\"\n }\n ],\n \"issued\": \"2024-03-15T01:50:10+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T21:35:56.467093+00:00\",\n \"versionId\": \"MTcxMDk3MDU1NjQ2NzA5MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000375\",\n \"display\": \"Respon iskemia positif\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n}"
}
]
},
{
"name": "ServiceRequest - Create",
"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\": \"000013\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120057\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"ECG\"\n }\n ],\n \"text\": \"Modality Code: ECG\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"ECG0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000013\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120057\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"ECG\"\n }\n ],\n \"text\": \"Modality Code: ECG\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"ECG0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/b0c4bd50-ccfa-4bbc-a9f3-ba4e8c45ed63/_history/MTcxMDk3MDI1NTY4MTU5NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3MDI1NTY4MTU5NDAwMA\""
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 21:30:55 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:30:55 GMT"
},
{
"key": "Content-Length",
"value": "8958"
},
{
"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": "41e6d415-02a8-4ec6-b991-e356b157b130"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"b0c4bd50-ccfa-4bbc-a9f3-ba4e8c45ed63\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000013\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120057\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T21:30:55.681594+00:00\",\n \"versionId\": \"MTcxMDk3MDI1NTY4MTU5NDAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"ECG\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: ECG\"\n },\n {\n \"coding\": [\n {\n \"display\": \"ECG0001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung EKG untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"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\": \"52343424\"\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\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"issued\": \"2024-03-15T01:50:10+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_EKGUjiLatihJantung}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EKGUjiLatihJantung}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EKGUjiLatihJantung}}\"\n }\n ],\n \"conclusion\": \"Respon iskemia positif\"\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\": \"52343424\"\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\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"issued\": \"2024-03-15T01:50:10+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_EKGUjiLatihJantung}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EKGUjiLatihJantung}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EKGUjiLatihJantung}}\"\n }\n ],\n \"conclusion\": \"Respon iskemia positif\"\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/a647ef27-9458-46e8-beeb-45625795379c/_history/MTcxMDk3MDc3MTc3Mjg0NjAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 21:39:31 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3MDc3MTc3Mjg0NjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:39:31 GMT"
},
{
"key": "Content-Length",
"value": "5430"
},
{
"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": "2af66d2a-9c1d-484f-aabb-1d30d1f204a1"
},
{
"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/b0c4bd50-ccfa-4bbc-a9f3-ba4e8c45ed63\"\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\": \"76645-1\",\n \"display\": \"Cardiac stress test EKG study Type\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Respon iskemia positif\",\n \"effectiveDateTime\": \"2024-03-15T01:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"a647ef27-9458-46e8-beeb-45625795379c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343424\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/7a1484b5-cffc-40a7-813f-9db9558849ff\"\n }\n ],\n \"issued\": \"2024-03-15T01:50:10+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T21:39:31.772846+00:00\",\n \"versionId\": \"MTcxMDk3MDc3MTc3Mjg0NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/8ace5d9a-f503-4924-aa8c-3900c1ccb004\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Uji Latih Jantung Ekokardiografi",
"item": [
{
"name": "ServiceRequest - Create",
"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\": \"000014\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120058\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"EC\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"EC00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000014\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120058\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"EC\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"EC00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/d4e10a13-4801-4a93-b69f-8548c647068b/_history/MTcxMDk3MTEwMDcwNzY0NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3MTEwMDcwNzY0NTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 21:45:00 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:45:00 GMT"
},
{
"key": "Content-Length",
"value": "9046"
},
{
"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": "7a585d1c-c3cf-4f51-8d02-31bff110c9ad"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"d4e10a13-4801-4a93-b69f-8548c647068b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000014\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120058\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T21:45:00.707645+00:00\",\n \"versionId\": \"MTcxMDk3MTEwMDcwNzY0NTAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"EC\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"display\": \"EC00001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120058",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120058"
}
]
}
},
"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/10000002|21120058",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120058"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:48:27 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "dba75494-e8eb-4fd3-ac71-09587bc161cd"
},
{
"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/b5213fc4-29ca-4303-acc2-edbb5b9bb20e\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/d4e10a13-4801-4a93-b69f-8548c647068b\"\n }\n ],\n \"id\": \"b5213fc4-29ca-4303-acc2-edbb5b9bb20e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120058\"\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-03-20T21:48:12.307013+00:00\",\n \"versionId\": \"MTcxMDk3MTI5MjMwNzAxMzAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"EC\",\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\": \"EC\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T01:50:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T01:50:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120058\"\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%2F10000002%7C21120058\"\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%2F10000002%7C21120058\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111114\"\n }\n ],\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"issued\": \"2024-03-15T01:55:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoUjiLatihJantung}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EkhoUjiLatihJantung}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000375\",\n \"display\": \"Respon iskemia positif\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111114\"\n }\n ],\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"issued\": \"2024-03-15T01:55:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoUjiLatihJantung}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EkhoUjiLatihJantung}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000375\",\n \"display\": \"Respon iskemia positif\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 21:52:03 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3MTUyMzA1MDI2MDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/6568a9da-69b2-4931-9b0e-dec7ab14e2b5/_history/MTcxMDk3MTUyMzA1MDI2MDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:52:03 GMT"
},
{
"key": "Content-Length",
"value": "6056"
},
{
"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": "96f42558-e5d8-4189-86eb-ca7683ac7ee7"
},
{
"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/d4e10a13-4801-4a93-b69f-8548c647068b\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/b5213fc4-29ca-4303-acc2-edbb5b9bb20e\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"6568a9da-69b2-4931-9b0e-dec7ab14e2b5\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111114\"\n }\n ],\n \"issued\": \"2024-03-15T01:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T21:52:03.050260+00:00\",\n \"versionId\": \"MTcxMDk3MTUyMzA1MDI2MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000375\",\n \"display\": \"Respon iskemia positif\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n}"
}
]
},
{
"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\": \"52343425\"\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"issued\": \"2024-03-15T01:55: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_EkhoUjiLatihJantung}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EkhoUjiLatihJantung}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoUjiLatihJantung}}\"\n }\n ],\n \"conclusion\": \"Respon iskemia positif\"\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\": \"52343425\"\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"issued\": \"2024-03-15T01:55: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_EkhoUjiLatihJantung}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EkhoUjiLatihJantung}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoUjiLatihJantung}}\"\n }\n ],\n \"conclusion\": \"Respon iskemia positif\"\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/31ead3ff-40e4-493d-9a82-ceae823b7a44/_history/MTcxMDk3MTYxNzQ2NDczODAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 21:53:37 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3MTYxNzQ2NDczODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:53:37 GMT"
},
{
"key": "Content-Length",
"value": "5394"
},
{
"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": "973db248-6b64-4657-8676-b2a65714b961"
},
{
"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/d4e10a13-4801-4a93-b69f-8548c647068b\"\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Respon iskemia positif\",\n \"effectiveDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"31ead3ff-40e4-493d-9a82-ceae823b7a44\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343425\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/b5213fc4-29ca-4303-acc2-edbb5b9bb20e\"\n }\n ],\n \"issued\": \"2024-03-15T01:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T21:53:37.464738+00:00\",\n \"versionId\": \"MTcxMDk3MTYxNzQ2NDczODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/6568a9da-69b2-4931-9b0e-dec7ab14e2b5\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111114\"\n }\n ],\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"issued\": \"2024-03-15T01:55:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoUjiLatihJantung}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EkhoUjiLatihJantung}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000375\",\n \"display\": \"Respon iskemia positif\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111114\"\n }\n ],\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"issued\": \"2024-03-15T01:55:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoUjiLatihJantung}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EkhoUjiLatihJantung}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000375\",\n \"display\": \"Respon iskemia positif\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 21:52:03 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3MTUyMzA1MDI2MDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/6568a9da-69b2-4931-9b0e-dec7ab14e2b5/_history/MTcxMDk3MTUyMzA1MDI2MDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:52:03 GMT"
},
{
"key": "Content-Length",
"value": "6056"
},
{
"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": "96f42558-e5d8-4189-86eb-ca7683ac7ee7"
},
{
"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/d4e10a13-4801-4a93-b69f-8548c647068b\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/b5213fc4-29ca-4303-acc2-edbb5b9bb20e\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"6568a9da-69b2-4931-9b0e-dec7ab14e2b5\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111114\"\n }\n ],\n \"issued\": \"2024-03-15T01:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T21:52:03.050260+00:00\",\n \"versionId\": \"MTcxMDk3MTUyMzA1MDI2MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000375\",\n \"display\": \"Respon iskemia positif\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120058",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120058"
}
]
}
},
"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/10000002|21120058",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120058"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:48:27 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "dba75494-e8eb-4fd3-ac71-09587bc161cd"
},
{
"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/b5213fc4-29ca-4303-acc2-edbb5b9bb20e\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/d4e10a13-4801-4a93-b69f-8548c647068b\"\n }\n ],\n \"id\": \"b5213fc4-29ca-4303-acc2-edbb5b9bb20e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120058\"\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-03-20T21:48:12.307013+00:00\",\n \"versionId\": \"MTcxMDk3MTI5MjMwNzAxMzAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"EC\",\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\": \"EC\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T01:50:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T01:50:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120058\"\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%2F10000002%7C21120058\"\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%2F10000002%7C21120058\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "ServiceRequest - Create",
"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\": \"000014\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120058\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"EC\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"EC00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000014\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120058\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"EC\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"EC00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/d4e10a13-4801-4a93-b69f-8548c647068b/_history/MTcxMDk3MTEwMDcwNzY0NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3MTEwMDcwNzY0NTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 21:45:00 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:45:00 GMT"
},
{
"key": "Content-Length",
"value": "9046"
},
{
"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": "7a585d1c-c3cf-4f51-8d02-31bff110c9ad"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"d4e10a13-4801-4a93-b69f-8548c647068b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000014\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120058\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T21:45:00.707645+00:00\",\n \"versionId\": \"MTcxMDk3MTEwMDcwNzY0NTAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"EC\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"display\": \"EC00001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"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\": \"52343425\"\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"issued\": \"2024-03-15T01:55: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_EkhoUjiLatihJantung}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EkhoUjiLatihJantung}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoUjiLatihJantung}}\"\n }\n ],\n \"conclusion\": \"Respon iskemia positif\"\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\": \"52343425\"\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"issued\": \"2024-03-15T01:55: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_EkhoUjiLatihJantung}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EkhoUjiLatihJantung}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoUjiLatihJantung}}\"\n }\n ],\n \"conclusion\": \"Respon iskemia positif\"\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/31ead3ff-40e4-493d-9a82-ceae823b7a44/_history/MTcxMDk3MTYxNzQ2NDczODAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 21:53:37 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3MTYxNzQ2NDczODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 21:53:37 GMT"
},
{
"key": "Content-Length",
"value": "5394"
},
{
"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": "973db248-6b64-4657-8676-b2a65714b961"
},
{
"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/d4e10a13-4801-4a93-b69f-8548c647068b\"\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Respon iskemia positif\",\n \"effectiveDateTime\": \"2024-03-15T01:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"31ead3ff-40e4-493d-9a82-ceae823b7a44\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343425\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/b5213fc4-29ca-4303-acc2-edbb5b9bb20e\"\n }\n ],\n \"issued\": \"2024-03-15T01:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T21:53:37.464738+00:00\",\n \"versionId\": \"MTcxMDk3MTYxNzQ2NDczODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/6568a9da-69b2-4931-9b0e-dec7ab14e2b5\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Uji Latih Jantung SPECT",
"item": [
{
"name": "ServiceRequest - Create",
"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\": \"000015\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120059\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39726-5\",\n \"display\": \"NM Heart Perfusion at rest and W stress and W radionuclide IV\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"NM\"\n }\n ],\n \"text\": \"Modality Code: NM\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"NM00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000015\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120059\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39726-5\",\n \"display\": \"NM Heart Perfusion at rest and W stress and W radionuclide IV\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"NM\"\n }\n ],\n \"text\": \"Modality Code: NM\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"NM00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "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/9f3d9cbd-3a4d-4a93-bcfa-09d90ce1a70d/_history/MTcxMDk3MzQ5ODMwMDA5NzAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 22:24:58 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3MzQ5ODMwMDA5NzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:24:58 GMT"
},
{
"key": "Content-Length",
"value": "9082"
},
{
"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": "76eb4772-a76a-4a68-9757-214cee6019f6"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"39726-5\",\n \"display\": \"NM Heart Perfusion at rest and W stress and W radionuclide IV\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"9f3d9cbd-3a4d-4a93-bcfa-09d90ce1a70d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000015\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120059\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T22:24:58.300097+00:00\",\n \"versionId\": \"MTcxMDk3MzQ5ODMwMDA5NzAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"NM\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: NM\"\n },\n {\n \"coding\": [\n {\n \"display\": \"NM00001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120059",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120059"
}
]
}
},
"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/10000002|21120059",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120059"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:26:28 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "950c9962-6461-4b39-9a71-76a3e2667362"
},
{
"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/25431ddd-9f10-42b5-b403-154882db203f\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9f3d9cbd-3a4d-4a93-bcfa-09d90ce1a70d\"\n }\n ],\n \"id\": \"25431ddd-9f10-42b5-b403-154882db203f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120059\"\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-03-20T22:26:11.363988+00:00\",\n \"versionId\": \"MTcxMDk3MzU3MTM2Mzk4ODAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"NM\",\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\": \"NM\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T01:50:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T01:55:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120059\"\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%2F10000002%7C21120059\"\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%2F10000002%7C21120059\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111115\"\n }\n ],\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\": \"39726-5\",\n \"display\": \"NM Heart Perfusion at rest and W stress and W radionuclide IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"issued\": \"2024-03-15T02:00:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTUjiLatihJantung}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_SPECTUjiLatihJantung}}\"\n }\n ],\n \"valueString\": \"Temuan pertama yaitu Pola Iskemia Myokard: Pada fase stres, terdapat daerah hipoperfusi di segmen inferior dan posterior dari miokardium. Hal ini mengindikasikan adanya iskemia miokard pada daerah tersebut, yang konsisten dengan penyakit arteri koroner. Temuan berikutnya yaitu Cardiomegaly, evaluasi morfologi jantung menunjukkan adanya pembesaran pada kamar atrium dan ventrikel kiri. Dimensi ventrikel kiri diperluas, menunjukkan tanda-tanda cardiomegaly.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111115\"\n }\n ],\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\": \"39726-5\",\n \"display\": \"NM Heart Perfusion at rest and W stress and W radionuclide IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"issued\": \"2024-03-15T02:00:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTUjiLatihJantung}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_SPECTUjiLatihJantung}}\"\n }\n ],\n \"valueString\": \"Temuan pertama yaitu Pola Iskemia Myokard: Pada fase stres, terdapat daerah hipoperfusi di segmen inferior dan posterior dari miokardium. Hal ini mengindikasikan adanya iskemia miokard pada daerah tersebut, yang konsisten dengan penyakit arteri koroner. Temuan berikutnya yaitu Cardiomegaly, evaluasi morfologi jantung menunjukkan adanya pembesaran pada kamar atrium dan ventrikel kiri. Dimensi ventrikel kiri diperluas, menunjukkan tanda-tanda cardiomegaly.\"\n}",
"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": "last-modified",
"value": "Wed, 20 Mar 2024 22:32:11 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/25d31528-e631-479e-a1a5-73540ab98db4/_history/MTcxMDk3MzkzMTY0MjE3MTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3MzkzMTY0MjE3MTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:32:11 GMT"
},
{
"key": "Content-Length",
"value": "7404"
},
{
"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": "b7e551ea-466c-4d57-be30-7eef5a62b4ad"
},
{
"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/9f3d9cbd-3a4d-4a93-bcfa-09d90ce1a70d\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"39726-5\",\n \"display\": \"NM Heart Perfusion at rest and W stress and W radionuclide IV\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/25431ddd-9f10-42b5-b403-154882db203f\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"25d31528-e631-479e-a1a5-73540ab98db4\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111115\"\n }\n ],\n \"issued\": \"2024-03-15T02:00:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T22:32:11.642171+00:00\",\n \"versionId\": \"MTcxMDk3MzkzMTY0MjE3MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Temuan pertama yaitu Pola Iskemia Myokard: Pada fase stres, terdapat daerah hipoperfusi di segmen inferior dan posterior dari miokardium. Hal ini mengindikasikan adanya iskemia miokard pada daerah tersebut, yang konsisten dengan penyakit arteri koroner. Temuan berikutnya yaitu Cardiomegaly, evaluasi morfologi jantung menunjukkan adanya pembesaran pada kamar atrium dan ventrikel kiri. Dimensi ventrikel kiri diperluas, menunjukkan tanda-tanda cardiomegaly.\"\n}"
}
]
},
{
"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\": \"52343426\"\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"issued\": \"2024-03-15T02: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_SPECTUjiLatihJantung}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_SPECTUjiLatihJantung}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTUjiLatihJantung}}\"\n }\n ],\n \"conclusion\": \"Hasil uji latih jantung SPECT menunjukkan adanya pola iskemia miokard pada segmen inferior dan posterior, yang dapat terkait dengan penyakit arteri koroner. Selain itu, ditemukan cardiomegaly dengan pembesaran kamar atrium dan ventrikel kiri. Hasil ini mengindikasikan adanya komplikasi jantung serius yang mungkin terkait dengan kondisi seperti dislipidemia, hipertensi, atau penyakit jantung koroner. Rekomendasi untuk evaluasi lebih lanjut dan manajemen risiko kardiovaskular diperlukan.\"\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\": \"52343426\"\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"issued\": \"2024-03-15T02: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_SPECTUjiLatihJantung}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_SPECTUjiLatihJantung}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTUjiLatihJantung}}\"\n }\n ],\n \"conclusion\": \"Hasil uji latih jantung SPECT menunjukkan adanya pola iskemia miokard pada segmen inferior dan posterior, yang dapat terkait dengan penyakit arteri koroner. Selain itu, ditemukan cardiomegaly dengan pembesaran kamar atrium dan ventrikel kiri. Hasil ini mengindikasikan adanya komplikasi jantung serius yang mungkin terkait dengan kondisi seperti dislipidemia, hipertensi, atau penyakit jantung koroner. Rekomendasi untuk evaluasi lebih lanjut dan manajemen risiko kardiovaskular diperlukan.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk3NDAxMjg0Mzk1NjAwMA\""
},
{
"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/DiagnosticReport/237be170-1edf-420f-b749-5648f32b67b8/_history/MTcxMDk3NDAxMjg0Mzk1NjAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 22:33:32 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:33:32 GMT"
},
{
"key": "Content-Length",
"value": "7266"
},
{
"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": "51f97a03-e91f-4985-9039-37c8e5d498a9"
},
{
"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/9f3d9cbd-3a4d-4a93-bcfa-09d90ce1a70d\"\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Hasil uji latih jantung SPECT menunjukkan adanya pola iskemia miokard pada segmen inferior dan posterior, yang dapat terkait dengan penyakit arteri koroner. Selain itu, ditemukan cardiomegaly dengan pembesaran kamar atrium dan ventrikel kiri. Hasil ini mengindikasikan adanya komplikasi jantung serius yang mungkin terkait dengan kondisi seperti dislipidemia, hipertensi, atau penyakit jantung koroner. Rekomendasi untuk evaluasi lebih lanjut dan manajemen risiko kardiovaskular diperlukan.\",\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"237be170-1edf-420f-b749-5648f32b67b8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343426\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/25431ddd-9f10-42b5-b403-154882db203f\"\n }\n ],\n \"issued\": \"2024-03-15T02:00:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T22:33:32.843956+00:00\",\n \"versionId\": \"MTcxMDk3NDAxMjg0Mzk1NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/25d31528-e631-479e-a1a5-73540ab98db4\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120059",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120059"
}
]
}
},
"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/10000002|21120059",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120059"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:26:28 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "950c9962-6461-4b39-9a71-76a3e2667362"
},
{
"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/25431ddd-9f10-42b5-b403-154882db203f\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/9f3d9cbd-3a4d-4a93-bcfa-09d90ce1a70d\"\n }\n ],\n \"id\": \"25431ddd-9f10-42b5-b403-154882db203f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120059\"\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-03-20T22:26:11.363988+00:00\",\n \"versionId\": \"MTcxMDk3MzU3MTM2Mzk4ODAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"NM\",\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\": \"NM\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T01:50:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T01:55:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120059\"\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%2F10000002%7C21120059\"\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%2F10000002%7C21120059\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "ServiceRequest - Create",
"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\": \"000015\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120059\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39726-5\",\n \"display\": \"NM Heart Perfusion at rest and W stress and W radionuclide IV\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"NM\"\n }\n ],\n \"text\": \"Modality Code: NM\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"NM00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000015\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120059\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39726-5\",\n \"display\": \"NM Heart Perfusion at rest and W stress and W radionuclide IV\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"NM\"\n }\n ],\n \"text\": \"Modality Code: NM\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"NM00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "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/9f3d9cbd-3a4d-4a93-bcfa-09d90ce1a70d/_history/MTcxMDk3MzQ5ODMwMDA5NzAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 22:24:58 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3MzQ5ODMwMDA5NzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:24:58 GMT"
},
{
"key": "Content-Length",
"value": "9082"
},
{
"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": "76eb4772-a76a-4a68-9757-214cee6019f6"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"39726-5\",\n \"display\": \"NM Heart Perfusion at rest and W stress and W radionuclide IV\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"9f3d9cbd-3a4d-4a93-bcfa-09d90ce1a70d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000015\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120059\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T22:24:58.300097+00:00\",\n \"versionId\": \"MTcxMDk3MzQ5ODMwMDA5NzAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"NM\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: NM\"\n },\n {\n \"coding\": [\n {\n \"display\": \"NM00001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Uji Latih Jantung SPECT untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"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\": \"52343426\"\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"issued\": \"2024-03-15T02: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_SPECTUjiLatihJantung}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_SPECTUjiLatihJantung}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTUjiLatihJantung}}\"\n }\n ],\n \"conclusion\": \"Hasil uji latih jantung SPECT menunjukkan adanya pola iskemia miokard pada segmen inferior dan posterior, yang dapat terkait dengan penyakit arteri koroner. Selain itu, ditemukan cardiomegaly dengan pembesaran kamar atrium dan ventrikel kiri. Hasil ini mengindikasikan adanya komplikasi jantung serius yang mungkin terkait dengan kondisi seperti dislipidemia, hipertensi, atau penyakit jantung koroner. Rekomendasi untuk evaluasi lebih lanjut dan manajemen risiko kardiovaskular diperlukan.\"\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\": \"52343426\"\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"issued\": \"2024-03-15T02: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_SPECTUjiLatihJantung}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_SPECTUjiLatihJantung}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTUjiLatihJantung}}\"\n }\n ],\n \"conclusion\": \"Hasil uji latih jantung SPECT menunjukkan adanya pola iskemia miokard pada segmen inferior dan posterior, yang dapat terkait dengan penyakit arteri koroner. Selain itu, ditemukan cardiomegaly dengan pembesaran kamar atrium dan ventrikel kiri. Hasil ini mengindikasikan adanya komplikasi jantung serius yang mungkin terkait dengan kondisi seperti dislipidemia, hipertensi, atau penyakit jantung koroner. Rekomendasi untuk evaluasi lebih lanjut dan manajemen risiko kardiovaskular diperlukan.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk3NDAxMjg0Mzk1NjAwMA\""
},
{
"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/DiagnosticReport/237be170-1edf-420f-b749-5648f32b67b8/_history/MTcxMDk3NDAxMjg0Mzk1NjAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 22:33:32 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:33:32 GMT"
},
{
"key": "Content-Length",
"value": "7266"
},
{
"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": "51f97a03-e91f-4985-9039-37c8e5d498a9"
},
{
"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/9f3d9cbd-3a4d-4a93-bcfa-09d90ce1a70d\"\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\": \"59282-4\",\n \"display\": \"Cardiac stress echo study\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Hasil uji latih jantung SPECT menunjukkan adanya pola iskemia miokard pada segmen inferior dan posterior, yang dapat terkait dengan penyakit arteri koroner. Selain itu, ditemukan cardiomegaly dengan pembesaran kamar atrium dan ventrikel kiri. Hasil ini mengindikasikan adanya komplikasi jantung serius yang mungkin terkait dengan kondisi seperti dislipidemia, hipertensi, atau penyakit jantung koroner. Rekomendasi untuk evaluasi lebih lanjut dan manajemen risiko kardiovaskular diperlukan.\",\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"237be170-1edf-420f-b749-5648f32b67b8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343426\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/25431ddd-9f10-42b5-b403-154882db203f\"\n }\n ],\n \"issued\": \"2024-03-15T02:00:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T22:33:32.843956+00:00\",\n \"versionId\": \"MTcxMDk3NDAxMjg0Mzk1NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/25d31528-e631-479e-a1a5-73540ab98db4\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111115\"\n }\n ],\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\": \"39726-5\",\n \"display\": \"NM Heart Perfusion at rest and W stress and W radionuclide IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"issued\": \"2024-03-15T02:00:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTUjiLatihJantung}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_SPECTUjiLatihJantung}}\"\n }\n ],\n \"valueString\": \"Temuan pertama yaitu Pola Iskemia Myokard: Pada fase stres, terdapat daerah hipoperfusi di segmen inferior dan posterior dari miokardium. Hal ini mengindikasikan adanya iskemia miokard pada daerah tersebut, yang konsisten dengan penyakit arteri koroner. Temuan berikutnya yaitu Cardiomegaly, evaluasi morfologi jantung menunjukkan adanya pembesaran pada kamar atrium dan ventrikel kiri. Dimensi ventrikel kiri diperluas, menunjukkan tanda-tanda cardiomegaly.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111115\"\n }\n ],\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\": \"39726-5\",\n \"display\": \"NM Heart Perfusion at rest and W stress and W radionuclide IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"issued\": \"2024-03-15T02:00:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTUjiLatihJantung}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_SPECTUjiLatihJantung}}\"\n }\n ],\n \"valueString\": \"Temuan pertama yaitu Pola Iskemia Myokard: Pada fase stres, terdapat daerah hipoperfusi di segmen inferior dan posterior dari miokardium. Hal ini mengindikasikan adanya iskemia miokard pada daerah tersebut, yang konsisten dengan penyakit arteri koroner. Temuan berikutnya yaitu Cardiomegaly, evaluasi morfologi jantung menunjukkan adanya pembesaran pada kamar atrium dan ventrikel kiri. Dimensi ventrikel kiri diperluas, menunjukkan tanda-tanda cardiomegaly.\"\n}",
"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": "last-modified",
"value": "Wed, 20 Mar 2024 22:32:11 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/25d31528-e631-479e-a1a5-73540ab98db4/_history/MTcxMDk3MzkzMTY0MjE3MTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3MzkzMTY0MjE3MTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:32:11 GMT"
},
{
"key": "Content-Length",
"value": "7404"
},
{
"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": "b7e551ea-466c-4d57-be30-7eef5a62b4ad"
},
{
"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/9f3d9cbd-3a4d-4a93-bcfa-09d90ce1a70d\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"39726-5\",\n \"display\": \"NM Heart Perfusion at rest and W stress and W radionuclide IV\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/25431ddd-9f10-42b5-b403-154882db203f\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"25d31528-e631-479e-a1a5-73540ab98db4\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111115\"\n }\n ],\n \"issued\": \"2024-03-15T02:00:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T22:32:11.642171+00:00\",\n \"versionId\": \"MTcxMDk3MzkzMTY0MjE3MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Temuan pertama yaitu Pola Iskemia Myokard: Pada fase stres, terdapat daerah hipoperfusi di segmen inferior dan posterior dari miokardium. Hal ini mengindikasikan adanya iskemia miokard pada daerah tersebut, yang konsisten dengan penyakit arteri koroner. Temuan berikutnya yaitu Cardiomegaly, evaluasi morfologi jantung menunjukkan adanya pembesaran pada kamar atrium dan ventrikel kiri. Dimensi ventrikel kiri diperluas, menunjukkan tanda-tanda cardiomegaly.\"\n}"
}
]
}
]
},
{
"name": "Dobutamine Stress Ekokardiografi",
"item": [
{
"name": "ServiceRequest - Create",
"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\": \"000016\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120060\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\"\n }\n ],\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"EC\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"EC00002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:00:00+00:00\",\n \"authoredOn\": \"2024-03-15T02:05:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000016\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120060\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\"\n }\n ],\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"EC\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"EC00002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:00:00+00:00\",\n \"authoredOn\": \"2024-03-15T02:05:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "Wed, 20 Mar 2024 22:39:22 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3NDM2MjgzNTE3MjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/e7dfc8d8-b6fa-4a11-8205-d9587cc0e533/_history/MTcxMDk3NDM2MjgzNTE3MjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:39:22 GMT"
},
{
"key": "Content-Length",
"value": "9230"
},
{
"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": "ec7b49af-831a-4585-8d99-f9dc561d594e"
},
{
"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\": \"2024-03-15T02:05:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ],\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"e7dfc8d8-b6fa-4a11-8205-d9587cc0e533\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000016\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120060\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T22:39:22.835172+00:00\",\n \"versionId\": \"MTcxMDk3NDM2MjgzNTE3MjAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T02:00:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"EC\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"display\": \"EC00002\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120060",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120060"
}
]
}
},
"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/10000002|21120060",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120060"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:41:51 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "34994cea-fc86-4524-8880-41ab20d59cef"
},
{
"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/7b3de694-b887-45ba-a414-03c6d4571a7e\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/e7dfc8d8-b6fa-4a11-8205-d9587cc0e533\"\n }\n ],\n \"id\": \"7b3de694-b887-45ba-a414-03c6d4571a7e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120060\"\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-03-20T22:41:19.689819+00:00\",\n \"versionId\": \"MTcxMDk3NDQ3OTY4OTgxOTAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"EC\",\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\": \"EC\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T02:00:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T02:00:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120060\"\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%2F10000002%7C21120060\"\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%2F10000002%7C21120060\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111116\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:00:00+00:00\",\n \"issued\": \"2024-03-15T02:05:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoDobutamineStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EkhoDobutamineStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) mengalami peningkatan denyut jantung dan tekanan darah selama uji latih dan menunjukkan adanya kelainan pada struktur dan fungsi jantung, 2) terdapat tanda-tanda plak aterosklerotik pada arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia dan terlihat area hiperechogenic pada beberapa segment koroner, mengindikasikan adanya penumpukan lemak atau kolesterol, 3) Ditemukan pembesaran atrium dan ventrikel kiri, serta hipertrofi ventrikel kiri pada evaluasi akhir dan ukuran jantung secara keseluruhan terlihat melebihi batas normal, mengindikasikan adanya cardiomegaly, 4)terlihat adanya gangguan gerakan dinding pada beberapa segmen jantung, menunjukkan iskemia miokard dan terdapat penurunan kontraktilitas pada beberapa segmen jantung, yang mencerminkan disfungsi jantung yang mungkin terkait dengan cardiomegaly.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111116\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:00:00+00:00\",\n \"issued\": \"2024-03-15T02:05:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoDobutamineStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EkhoDobutamineStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) mengalami peningkatan denyut jantung dan tekanan darah selama uji latih dan menunjukkan adanya kelainan pada struktur dan fungsi jantung, 2) terdapat tanda-tanda plak aterosklerotik pada arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia dan terlihat area hiperechogenic pada beberapa segment koroner, mengindikasikan adanya penumpukan lemak atau kolesterol, 3) Ditemukan pembesaran atrium dan ventrikel kiri, serta hipertrofi ventrikel kiri pada evaluasi akhir dan ukuran jantung secara keseluruhan terlihat melebihi batas normal, mengindikasikan adanya cardiomegaly, 4)terlihat adanya gangguan gerakan dinding pada beberapa segmen jantung, menunjukkan iskemia miokard dan terdapat penurunan kontraktilitas pada beberapa segmen jantung, yang mencerminkan disfungsi jantung yang mungkin terkait dengan cardiomegaly.\"\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/4d54abad-e2a5-4278-8c96-d4c9a7e21319/_history/MTcxMDk3NDkyNTA2MzY4NTAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 22:48:45 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3NDkyNTA2MzY4NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:48:45 GMT"
},
{
"key": "Content-Length",
"value": "9056"
},
{
"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": "440c4cec-6a29-4114-923e-5850f0b86b57"
},
{
"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/e7dfc8d8-b6fa-4a11-8205-d9587cc0e533\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/7b3de694-b887-45ba-a414-03c6d4571a7e\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:00:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"4d54abad-e2a5-4278-8c96-d4c9a7e21319\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111116\"\n }\n ],\n \"issued\": \"2024-03-15T02:05:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T22:48:45.063685+00:00\",\n \"versionId\": \"MTcxMDk3NDkyNTA2MzY4NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) mengalami peningkatan denyut jantung dan tekanan darah selama uji latih dan menunjukkan adanya kelainan pada struktur dan fungsi jantung, 2) terdapat tanda-tanda plak aterosklerotik pada arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia dan terlihat area hiperechogenic pada beberapa segment koroner, mengindikasikan adanya penumpukan lemak atau kolesterol, 3) Ditemukan pembesaran atrium dan ventrikel kiri, serta hipertrofi ventrikel kiri pada evaluasi akhir dan ukuran jantung secara keseluruhan terlihat melebihi batas normal, mengindikasikan adanya cardiomegaly, 4)terlihat adanya gangguan gerakan dinding pada beberapa segmen jantung, menunjukkan iskemia miokard dan terdapat penurunan kontraktilitas pada beberapa segmen jantung, yang mencerminkan disfungsi jantung yang mungkin terkait dengan cardiomegaly.\"\n}"
}
]
},
{
"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\": \"52343426\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"issued\": \"2024-03-15T02: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_EkhoDobutamineStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EkhoDobutamineStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoDobutamineStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Dobutamine Stress Ekokardiografi menunjukkan tanda-tanda yang mengarah pada dislipidemia dan cardiomegaly. Pasien menunjukkan iskemia miokard serta disfungsi kontraksi jantung yang konsisten dengan komplikasi dari kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\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\": \"52343426\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"issued\": \"2024-03-15T02: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_EkhoDobutamineStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EkhoDobutamineStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoDobutamineStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Dobutamine Stress Ekokardiografi menunjukkan tanda-tanda yang mengarah pada dislipidemia dan cardiomegaly. Pasien menunjukkan iskemia miokard serta disfungsi kontraksi jantung yang konsisten dengan komplikasi dari kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk3NDk5MjE4ODY1MTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/78a660d7-cc11-4980-9842-7fb23ff9dbf1/_history/MTcxMDk3NDk5MjE4ODY1MTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 22:49:52 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:49:52 GMT"
},
{
"key": "Content-Length",
"value": "6946"
},
{
"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": "a257a87f-149c-4be0-beba-355c0e446d12"
},
{
"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/e7dfc8d8-b6fa-4a11-8205-d9587cc0e533\"\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\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"conclusion\": \"Hasil Dobutamine Stress Ekokardiografi menunjukkan tanda-tanda yang mengarah pada dislipidemia dan cardiomegaly. Pasien menunjukkan iskemia miokard serta disfungsi kontraksi jantung yang konsisten dengan komplikasi dari kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\",\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"78a660d7-cc11-4980-9842-7fb23ff9dbf1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343426\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/7b3de694-b887-45ba-a414-03c6d4571a7e\"\n }\n ],\n \"issued\": \"2024-03-15T02:00:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T22:49:52.188651+00:00\",\n \"versionId\": \"MTcxMDk3NDk5MjE4ODY1MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/4d54abad-e2a5-4278-8c96-d4c9a7e21319\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Create",
"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\": \"000016\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120060\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\"\n }\n ],\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"EC\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"EC00002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:00:00+00:00\",\n \"authoredOn\": \"2024-03-15T02:05:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000016\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120060\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\"\n }\n ],\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"EC\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"EC00002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:00:00+00:00\",\n \"authoredOn\": \"2024-03-15T02:05:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "Wed, 20 Mar 2024 22:39:22 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3NDM2MjgzNTE3MjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/e7dfc8d8-b6fa-4a11-8205-d9587cc0e533/_history/MTcxMDk3NDM2MjgzNTE3MjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:39:22 GMT"
},
{
"key": "Content-Length",
"value": "9230"
},
{
"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": "ec7b49af-831a-4585-8d99-f9dc561d594e"
},
{
"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\": \"2024-03-15T02:05:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ],\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"e7dfc8d8-b6fa-4a11-8205-d9587cc0e533\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000016\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120060\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T22:39:22.835172+00:00\",\n \"versionId\": \"MTcxMDk3NDM2MjgzNTE3MjAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T02:00:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"EC\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"display\": \"EC00002\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"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\": \"52343426\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"issued\": \"2024-03-15T02: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_EkhoDobutamineStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EkhoDobutamineStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoDobutamineStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Dobutamine Stress Ekokardiografi menunjukkan tanda-tanda yang mengarah pada dislipidemia dan cardiomegaly. Pasien menunjukkan iskemia miokard serta disfungsi kontraksi jantung yang konsisten dengan komplikasi dari kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\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\": \"52343426\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"issued\": \"2024-03-15T02: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_EkhoDobutamineStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EkhoDobutamineStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoDobutamineStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Dobutamine Stress Ekokardiografi menunjukkan tanda-tanda yang mengarah pada dislipidemia dan cardiomegaly. Pasien menunjukkan iskemia miokard serta disfungsi kontraksi jantung yang konsisten dengan komplikasi dari kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk3NDk5MjE4ODY1MTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/78a660d7-cc11-4980-9842-7fb23ff9dbf1/_history/MTcxMDk3NDk5MjE4ODY1MTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 22:49:52 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:49:52 GMT"
},
{
"key": "Content-Length",
"value": "6946"
},
{
"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": "a257a87f-149c-4be0-beba-355c0e446d12"
},
{
"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/e7dfc8d8-b6fa-4a11-8205-d9587cc0e533\"\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\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"conclusion\": \"Hasil Dobutamine Stress Ekokardiografi menunjukkan tanda-tanda yang mengarah pada dislipidemia dan cardiomegaly. Pasien menunjukkan iskemia miokard serta disfungsi kontraksi jantung yang konsisten dengan komplikasi dari kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\",\n \"effectiveDateTime\": \"2024-03-15T01:55:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"78a660d7-cc11-4980-9842-7fb23ff9dbf1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343426\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/7b3de694-b887-45ba-a414-03c6d4571a7e\"\n }\n ],\n \"issued\": \"2024-03-15T02:00:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T22:49:52.188651+00:00\",\n \"versionId\": \"MTcxMDk3NDk5MjE4ODY1MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/4d54abad-e2a5-4278-8c96-d4c9a7e21319\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120060",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120060"
}
]
}
},
"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/10000002|21120060",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120060"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:41:51 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "34994cea-fc86-4524-8880-41ab20d59cef"
},
{
"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/7b3de694-b887-45ba-a414-03c6d4571a7e\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/e7dfc8d8-b6fa-4a11-8205-d9587cc0e533\"\n }\n ],\n \"id\": \"7b3de694-b887-45ba-a414-03c6d4571a7e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120060\"\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-03-20T22:41:19.689819+00:00\",\n \"versionId\": \"MTcxMDk3NDQ3OTY4OTgxOTAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"EC\",\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\": \"EC\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T02:00:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T02:00:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120060\"\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%2F10000002%7C21120060\"\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%2F10000002%7C21120060\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111116\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:00:00+00:00\",\n \"issued\": \"2024-03-15T02:05:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoDobutamineStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EkhoDobutamineStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) mengalami peningkatan denyut jantung dan tekanan darah selama uji latih dan menunjukkan adanya kelainan pada struktur dan fungsi jantung, 2) terdapat tanda-tanda plak aterosklerotik pada arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia dan terlihat area hiperechogenic pada beberapa segment koroner, mengindikasikan adanya penumpukan lemak atau kolesterol, 3) Ditemukan pembesaran atrium dan ventrikel kiri, serta hipertrofi ventrikel kiri pada evaluasi akhir dan ukuran jantung secara keseluruhan terlihat melebihi batas normal, mengindikasikan adanya cardiomegaly, 4)terlihat adanya gangguan gerakan dinding pada beberapa segmen jantung, menunjukkan iskemia miokard dan terdapat penurunan kontraktilitas pada beberapa segmen jantung, yang mencerminkan disfungsi jantung yang mungkin terkait dengan cardiomegaly.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111116\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:00:00+00:00\",\n \"issued\": \"2024-03-15T02:05:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoDobutamineStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EkhoDobutamineStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) mengalami peningkatan denyut jantung dan tekanan darah selama uji latih dan menunjukkan adanya kelainan pada struktur dan fungsi jantung, 2) terdapat tanda-tanda plak aterosklerotik pada arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia dan terlihat area hiperechogenic pada beberapa segment koroner, mengindikasikan adanya penumpukan lemak atau kolesterol, 3) Ditemukan pembesaran atrium dan ventrikel kiri, serta hipertrofi ventrikel kiri pada evaluasi akhir dan ukuran jantung secara keseluruhan terlihat melebihi batas normal, mengindikasikan adanya cardiomegaly, 4)terlihat adanya gangguan gerakan dinding pada beberapa segmen jantung, menunjukkan iskemia miokard dan terdapat penurunan kontraktilitas pada beberapa segmen jantung, yang mencerminkan disfungsi jantung yang mungkin terkait dengan cardiomegaly.\"\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/4d54abad-e2a5-4278-8c96-d4c9a7e21319/_history/MTcxMDk3NDkyNTA2MzY4NTAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 22:48:45 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3NDkyNTA2MzY4NTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:48:45 GMT"
},
{
"key": "Content-Length",
"value": "9056"
},
{
"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": "440c4cec-6a29-4114-923e-5850f0b86b57"
},
{
"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/e7dfc8d8-b6fa-4a11-8205-d9587cc0e533\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"IP099357\",\n \"display\": \"Dobutamine Stress Ekokardiografi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/7b3de694-b887-45ba-a414-03c6d4571a7e\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:00:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"4d54abad-e2a5-4278-8c96-d4c9a7e21319\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111116\"\n }\n ],\n \"issued\": \"2024-03-15T02:05:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T22:48:45.063685+00:00\",\n \"versionId\": \"MTcxMDk3NDkyNTA2MzY4NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) mengalami peningkatan denyut jantung dan tekanan darah selama uji latih dan menunjukkan adanya kelainan pada struktur dan fungsi jantung, 2) terdapat tanda-tanda plak aterosklerotik pada arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia dan terlihat area hiperechogenic pada beberapa segment koroner, mengindikasikan adanya penumpukan lemak atau kolesterol, 3) Ditemukan pembesaran atrium dan ventrikel kiri, serta hipertrofi ventrikel kiri pada evaluasi akhir dan ukuran jantung secara keseluruhan terlihat melebihi batas normal, mengindikasikan adanya cardiomegaly, 4)terlihat adanya gangguan gerakan dinding pada beberapa segmen jantung, menunjukkan iskemia miokard dan terdapat penurunan kontraktilitas pada beberapa segmen jantung, yang mencerminkan disfungsi jantung yang mungkin terkait dengan cardiomegaly.\"\n}"
}
]
}
]
},
{
"name": "Dobutamine Stress MRI",
"item": [
{
"name": "ServiceRequest - Create",
"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\": \"000017\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120061\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\"\n }\n ],\n \"text\": \"Pemeriksaan Dobutamine Stress MRI\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"MR\"\n }\n ],\n \"text\": \"Modality Code: MR\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"MR00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress MRI untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress MRI\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000017\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120061\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\"\n }\n ],\n \"text\": \"Pemeriksaan Dobutamine Stress MRI\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"MR\"\n }\n ],\n \"text\": \"Modality Code: MR\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"MR00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress MRI untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress MRI\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/fa1248d7-871f-4565-965d-930b8f6d1871/_history/MTcxMDk3NTU0MjgwODUzNDAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 22:59:02 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3NTU0MjgwODUzNDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:59:02 GMT"
},
{
"key": "Content-Length",
"value": "9062"
},
{
"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": "af475384-2a24-4ef6-ba92-6cde03cbd5e6"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ],\n \"text\": \"Pemeriksaan Dobutamine Stress MRI\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"fa1248d7-871f-4565-965d-930b8f6d1871\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000017\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120061\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T22:59:02.808534+00:00\",\n \"versionId\": \"MTcxMDk3NTU0MjgwODUzNDAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress MRI\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"MR\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: MR\"\n },\n {\n \"coding\": [\n {\n \"display\": \"MR00001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress MRI untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120061",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120061"
}
]
}
},
"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/10000002|21120061",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120061"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:01:06 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "0644b8b4-e37b-45aa-931f-c77441aa21ac"
},
{
"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/6e03bf50-0f0b-4394-af43-89e00b9903cd\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/fa1248d7-871f-4565-965d-930b8f6d1871\"\n }\n ],\n \"id\": \"6e03bf50-0f0b-4394-af43-89e00b9903cd\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120061\"\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-03-20T23:00:45.070913+00:00\",\n \"versionId\": \"MTcxMDk3NTY0NTA3MDkxMzAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"MR\",\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\": \"MR\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T02:05:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T02:05:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120061\"\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%2F10000002%7C21120061\"\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%2F10000002%7C21120061\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111117\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"issued\": \"2024-03-15T02:10:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIDobutamineStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_MRIDobutamineStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Terdapat tanda-tanda aterosklerosis pada beberapa arteri koroner, yang mengindikasikan kemungkinan adanya dislipidemia. Terlihat penumpukan plak aterosklerotik pada dinding arteri. Lesi aterosklerotik pada arteri koroner tampak hipointens pada pemindaian T1-weighted, menunjukkan kemungkinan penumpukan lemak atau kolesterol. 2)Jantung tampak membesar pada evaluasi akhir, dengan ukuran secara keseluruhan melebihi batas normal. Terlihat pembesaran atrium dan ventrikel kiri. Terdapat tanda-tanda hipertrofi ventrikel kiri, yang merupakan indikasi potensial dari cardiomegaly. 3) Pada saat uji latih, terlihat adanya gangguan gerakan dinding pada beberapa segmen jantung, menunjukkan iskemia miokard yang berkaitan dengan dislipidemia. Terdapat penurunan kontraktilitas pada beberapa segmen jantung, yang mencerminkan disfungsi jantung yang mungkin terkait dengan cardiomegaly.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111117\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"issued\": \"2024-03-15T02:10:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIDobutamineStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_MRIDobutamineStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Terdapat tanda-tanda aterosklerosis pada beberapa arteri koroner, yang mengindikasikan kemungkinan adanya dislipidemia. Terlihat penumpukan plak aterosklerotik pada dinding arteri. Lesi aterosklerotik pada arteri koroner tampak hipointens pada pemindaian T1-weighted, menunjukkan kemungkinan penumpukan lemak atau kolesterol. 2)Jantung tampak membesar pada evaluasi akhir, dengan ukuran secara keseluruhan melebihi batas normal. Terlihat pembesaran atrium dan ventrikel kiri. Terdapat tanda-tanda hipertrofi ventrikel kiri, yang merupakan indikasi potensial dari cardiomegaly. 3) Pada saat uji latih, terlihat adanya gangguan gerakan dinding pada beberapa segmen jantung, menunjukkan iskemia miokard yang berkaitan dengan dislipidemia. Terdapat penurunan kontraktilitas pada beberapa segmen jantung, yang mencerminkan disfungsi jantung yang mungkin terkait dengan cardiomegaly.\"\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/c14a851e-3bc8-48b9-bb52-76d104386c01/_history/MTcxMDk3NTk1MTI5MDY3NDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3NTk1MTI5MDY3NDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:05:51 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:05:51 GMT"
},
{
"key": "Content-Length",
"value": "9208"
},
{
"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": "1e1432e7-46ba-4bec-824e-5bb51de97e1a"
},
{
"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/fa1248d7-871f-4565-965d-930b8f6d1871\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/6e03bf50-0f0b-4394-af43-89e00b9903cd\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c14a851e-3bc8-48b9-bb52-76d104386c01\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111117\"\n }\n ],\n \"issued\": \"2024-03-15T02:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:05:51.290674+00:00\",\n \"versionId\": \"MTcxMDk3NTk1MTI5MDY3NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Terdapat tanda-tanda aterosklerosis pada beberapa arteri koroner, yang mengindikasikan kemungkinan adanya dislipidemia. Terlihat penumpukan plak aterosklerotik pada dinding arteri. Lesi aterosklerotik pada arteri koroner tampak hipointens pada pemindaian T1-weighted, menunjukkan kemungkinan penumpukan lemak atau kolesterol. 2)Jantung tampak membesar pada evaluasi akhir, dengan ukuran secara keseluruhan melebihi batas normal. Terlihat pembesaran atrium dan ventrikel kiri. Terdapat tanda-tanda hipertrofi ventrikel kiri, yang merupakan indikasi potensial dari cardiomegaly. 3) Pada saat uji latih, terlihat adanya gangguan gerakan dinding pada beberapa segmen jantung, menunjukkan iskemia miokard yang berkaitan dengan dislipidemia. Terdapat penurunan kontraktilitas pada beberapa segmen jantung, yang mencerminkan disfungsi jantung yang mungkin terkait dengan cardiomegaly.\"\n}"
}
]
},
{
"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\": \"52343427\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"issued\": \"2024-03-15T02:10: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_MRIDobutamineStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_MRIDobutamineStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIDobutamineStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Dobutamine Stress MRI menunjukkan tanda-tanda yang mengarah pada dislipidemia dan cardiomegaly. Pasien menunjukkan iskemia miokard serta disfungsi kontraksi jantung yang konsisten dengan komplikasi dari kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah, serta manajemen risiko kardiovaskular yang tepat.\"\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\": \"52343427\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"issued\": \"2024-03-15T02:10: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_MRIDobutamineStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_MRIDobutamineStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIDobutamineStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Dobutamine Stress MRI menunjukkan tanda-tanda yang mengarah pada dislipidemia dan cardiomegaly. Pasien menunjukkan iskemia miokard serta disfungsi kontraksi jantung yang konsisten dengan komplikasi dari kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah, serta manajemen risiko kardiovaskular yang tepat.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk3NjA0ODM5NjAzNjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/906bd8b4-57ff-440e-aed1-6d49b1a4d475/_history/MTcxMDk3NjA0ODM5NjAzNjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:07:28 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:07:28 GMT"
},
{
"key": "Content-Length",
"value": "6878"
},
{
"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": "c22d0acb-29c1-484d-a4f1-56abd679c586"
},
{
"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/fa1248d7-871f-4565-965d-930b8f6d1871\"\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\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"conclusion\": \"Hasil Dobutamine Stress MRI menunjukkan tanda-tanda yang mengarah pada dislipidemia dan cardiomegaly. Pasien menunjukkan iskemia miokard serta disfungsi kontraksi jantung yang konsisten dengan komplikasi dari kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah, serta manajemen risiko kardiovaskular yang tepat.\",\n \"effectiveDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"906bd8b4-57ff-440e-aed1-6d49b1a4d475\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343427\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/6e03bf50-0f0b-4394-af43-89e00b9903cd\"\n }\n ],\n \"issued\": \"2024-03-15T02:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:07:28.396036+00:00\",\n \"versionId\": \"MTcxMDk3NjA0ODM5NjAzNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/c14a851e-3bc8-48b9-bb52-76d104386c01\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Create",
"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\": \"000017\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120061\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\"\n }\n ],\n \"text\": \"Pemeriksaan Dobutamine Stress MRI\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"MR\"\n }\n ],\n \"text\": \"Modality Code: MR\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"MR00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress MRI untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress MRI\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000017\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120061\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\"\n }\n ],\n \"text\": \"Pemeriksaan Dobutamine Stress MRI\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"MR\"\n }\n ],\n \"text\": \"Modality Code: MR\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"MR00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress MRI untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress MRI\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/fa1248d7-871f-4565-965d-930b8f6d1871/_history/MTcxMDk3NTU0MjgwODUzNDAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 22:59:02 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3NTU0MjgwODUzNDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 22:59:02 GMT"
},
{
"key": "Content-Length",
"value": "9062"
},
{
"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": "af475384-2a24-4ef6-ba92-6cde03cbd5e6"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ],\n \"text\": \"Pemeriksaan Dobutamine Stress MRI\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"fa1248d7-871f-4565-965d-930b8f6d1871\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000017\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120061\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T22:59:02.808534+00:00\",\n \"versionId\": \"MTcxMDk3NTU0MjgwODUzNDAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress MRI\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"MR\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: MR\"\n },\n {\n \"coding\": [\n {\n \"display\": \"MR00001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Dobutamine Stress MRI untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111117\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"issued\": \"2024-03-15T02:10:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIDobutamineStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_MRIDobutamineStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Terdapat tanda-tanda aterosklerosis pada beberapa arteri koroner, yang mengindikasikan kemungkinan adanya dislipidemia. Terlihat penumpukan plak aterosklerotik pada dinding arteri. Lesi aterosklerotik pada arteri koroner tampak hipointens pada pemindaian T1-weighted, menunjukkan kemungkinan penumpukan lemak atau kolesterol. 2)Jantung tampak membesar pada evaluasi akhir, dengan ukuran secara keseluruhan melebihi batas normal. Terlihat pembesaran atrium dan ventrikel kiri. Terdapat tanda-tanda hipertrofi ventrikel kiri, yang merupakan indikasi potensial dari cardiomegaly. 3) Pada saat uji latih, terlihat adanya gangguan gerakan dinding pada beberapa segmen jantung, menunjukkan iskemia miokard yang berkaitan dengan dislipidemia. Terdapat penurunan kontraktilitas pada beberapa segmen jantung, yang mencerminkan disfungsi jantung yang mungkin terkait dengan cardiomegaly.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111117\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"issued\": \"2024-03-15T02:10:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIDobutamineStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_MRIDobutamineStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Terdapat tanda-tanda aterosklerosis pada beberapa arteri koroner, yang mengindikasikan kemungkinan adanya dislipidemia. Terlihat penumpukan plak aterosklerotik pada dinding arteri. Lesi aterosklerotik pada arteri koroner tampak hipointens pada pemindaian T1-weighted, menunjukkan kemungkinan penumpukan lemak atau kolesterol. 2)Jantung tampak membesar pada evaluasi akhir, dengan ukuran secara keseluruhan melebihi batas normal. Terlihat pembesaran atrium dan ventrikel kiri. Terdapat tanda-tanda hipertrofi ventrikel kiri, yang merupakan indikasi potensial dari cardiomegaly. 3) Pada saat uji latih, terlihat adanya gangguan gerakan dinding pada beberapa segmen jantung, menunjukkan iskemia miokard yang berkaitan dengan dislipidemia. Terdapat penurunan kontraktilitas pada beberapa segmen jantung, yang mencerminkan disfungsi jantung yang mungkin terkait dengan cardiomegaly.\"\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/c14a851e-3bc8-48b9-bb52-76d104386c01/_history/MTcxMDk3NTk1MTI5MDY3NDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3NTk1MTI5MDY3NDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:05:51 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:05:51 GMT"
},
{
"key": "Content-Length",
"value": "9208"
},
{
"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": "1e1432e7-46ba-4bec-824e-5bb51de97e1a"
},
{
"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/fa1248d7-871f-4565-965d-930b8f6d1871\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/6e03bf50-0f0b-4394-af43-89e00b9903cd\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c14a851e-3bc8-48b9-bb52-76d104386c01\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111117\"\n }\n ],\n \"issued\": \"2024-03-15T02:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:05:51.290674+00:00\",\n \"versionId\": \"MTcxMDk3NTk1MTI5MDY3NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Terdapat tanda-tanda aterosklerosis pada beberapa arteri koroner, yang mengindikasikan kemungkinan adanya dislipidemia. Terlihat penumpukan plak aterosklerotik pada dinding arteri. Lesi aterosklerotik pada arteri koroner tampak hipointens pada pemindaian T1-weighted, menunjukkan kemungkinan penumpukan lemak atau kolesterol. 2)Jantung tampak membesar pada evaluasi akhir, dengan ukuran secara keseluruhan melebihi batas normal. Terlihat pembesaran atrium dan ventrikel kiri. Terdapat tanda-tanda hipertrofi ventrikel kiri, yang merupakan indikasi potensial dari cardiomegaly. 3) Pada saat uji latih, terlihat adanya gangguan gerakan dinding pada beberapa segmen jantung, menunjukkan iskemia miokard yang berkaitan dengan dislipidemia. Terdapat penurunan kontraktilitas pada beberapa segmen jantung, yang mencerminkan disfungsi jantung yang mungkin terkait dengan cardiomegaly.\"\n}"
}
]
},
{
"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\": \"52343427\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"issued\": \"2024-03-15T02:10: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_MRIDobutamineStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_MRIDobutamineStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIDobutamineStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Dobutamine Stress MRI menunjukkan tanda-tanda yang mengarah pada dislipidemia dan cardiomegaly. Pasien menunjukkan iskemia miokard serta disfungsi kontraksi jantung yang konsisten dengan komplikasi dari kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah, serta manajemen risiko kardiovaskular yang tepat.\"\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\": \"52343427\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"issued\": \"2024-03-15T02:10: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_MRIDobutamineStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_MRIDobutamineStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIDobutamineStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Dobutamine Stress MRI menunjukkan tanda-tanda yang mengarah pada dislipidemia dan cardiomegaly. Pasien menunjukkan iskemia miokard serta disfungsi kontraksi jantung yang konsisten dengan komplikasi dari kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah, serta manajemen risiko kardiovaskular yang tepat.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk3NjA0ODM5NjAzNjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/906bd8b4-57ff-440e-aed1-6d49b1a4d475/_history/MTcxMDk3NjA0ODM5NjAzNjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:07:28 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:07:28 GMT"
},
{
"key": "Content-Length",
"value": "6878"
},
{
"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": "c22d0acb-29c1-484d-a4f1-56abd679c586"
},
{
"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/fa1248d7-871f-4565-965d-930b8f6d1871\"\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\": \"RD0993430\",\n \"display\": \"Dobutamine Stress MRI\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"conclusion\": \"Hasil Dobutamine Stress MRI menunjukkan tanda-tanda yang mengarah pada dislipidemia dan cardiomegaly. Pasien menunjukkan iskemia miokard serta disfungsi kontraksi jantung yang konsisten dengan komplikasi dari kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah, serta manajemen risiko kardiovaskular yang tepat.\",\n \"effectiveDateTime\": \"2024-03-15T02:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"906bd8b4-57ff-440e-aed1-6d49b1a4d475\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343427\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/6e03bf50-0f0b-4394-af43-89e00b9903cd\"\n }\n ],\n \"issued\": \"2024-03-15T02:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:07:28.396036+00:00\",\n \"versionId\": \"MTcxMDk3NjA0ODM5NjAzNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/c14a851e-3bc8-48b9-bb52-76d104386c01\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120061",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120061"
}
]
}
},
"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/10000002|21120061",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120061"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:01:06 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "0644b8b4-e37b-45aa-931f-c77441aa21ac"
},
{
"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/6e03bf50-0f0b-4394-af43-89e00b9903cd\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/fa1248d7-871f-4565-965d-930b8f6d1871\"\n }\n ],\n \"id\": \"6e03bf50-0f0b-4394-af43-89e00b9903cd\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120061\"\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-03-20T23:00:45.070913+00:00\",\n \"versionId\": \"MTcxMDk3NTY0NTA3MDkxMzAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"MR\",\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\": \"MR\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T02:05:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T02:05:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120061\"\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%2F10000002%7C21120061\"\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%2F10000002%7C21120061\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
}
]
},
{
"name": "Vasodilator Stress Ekokardiografi",
"item": [
{
"name": "ServiceRequest - Create",
"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\": \"000018\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120062\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"EC\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"EC00003\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000018\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120062\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"EC\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"EC00003\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/df2545ca-6057-44cb-ab20-c1565c243ca5/_history/MTcxMDk3NjM2MDIxODMxMzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:12:40 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3NjM2MDIxODMxMzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:12:40 GMT"
},
{
"key": "Content-Length",
"value": "9246"
},
{
"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": "96f04595-a815-4fdb-8d92-4d5ef27a9b95"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"df2545ca-6057-44cb-ab20-c1565c243ca5\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000018\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120062\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:12:40.218313+00:00\",\n \"versionId\": \"MTcxMDk3NjM2MDIxODMxMzAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"EC\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"display\": \"EC00003\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120062",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120062"
}
]
}
},
"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/10000002|21120062",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120062"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:15:02 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "edd12469-f7f2-484e-86e4-b76c9cfd323b"
},
{
"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/30a0dc38-03c6-4626-8e38-e09da71a12c3\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/df2545ca-6057-44cb-ab20-c1565c243ca5\"\n }\n ],\n \"id\": \"30a0dc38-03c6-4626-8e38-e09da71a12c3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120062\"\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-03-20T23:14:21.120570+00:00\",\n \"versionId\": \"MTcxMDk3NjQ2MTEyMDU3MDAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"EC\",\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\": \"EC\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T02:10:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T02:10:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120062\"\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%2F10000002%7C21120062\"\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%2F10000002%7C21120062\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111118\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"issued\": \"2024-03-15T02:15:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EkhoVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Terdapat pembesaran pada beberapa bagian jantung, terutama atrium dan ventrikel kiri, yang melebihi batas normal. Ukuran jantung secara keseluruhan terlihat meningkat, mengindikasikan kemungkinan adanya cardiomegaly. 2) Terlihat tanda-tanda plak aterosklerotik pada beberapa arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia. Pembesaran area hiperechogenic pada dinding arteri koroner dapat mengindikasikan penumpukan lemak atau kolesterol. 3) Gerakan dinding jantung terlihat terbatas pada beberapa segmen, menunjukkan kemungkinan adanya disfungsi kontraksi terkait dengan cardiomegaly. Tidak terdapat tanda-tanda iskemia miokard atau penurunan fungsi kontraktil yang signifikan selama uji latih vasodilator.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111118\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"issued\": \"2024-03-15T02:15:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EkhoVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Terdapat pembesaran pada beberapa bagian jantung, terutama atrium dan ventrikel kiri, yang melebihi batas normal. Ukuran jantung secara keseluruhan terlihat meningkat, mengindikasikan kemungkinan adanya cardiomegaly. 2) Terlihat tanda-tanda plak aterosklerotik pada beberapa arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia. Pembesaran area hiperechogenic pada dinding arteri koroner dapat mengindikasikan penumpukan lemak atau kolesterol. 3) Gerakan dinding jantung terlihat terbatas pada beberapa segmen, menunjukkan kemungkinan adanya disfungsi kontraksi terkait dengan cardiomegaly. Tidak terdapat tanda-tanda iskemia miokard atau penurunan fungsi kontraktil yang signifikan selama uji latih vasodilator.\"\n}",
"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/\"MTcxMDk3Njg4ODk3NDQzOTAwMA\""
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:21:28 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/Observation/7ac30093-fae1-4fd1-a484-ff0fa5defa0e/_history/MTcxMDk3Njg4ODk3NDQzOTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:21:28 GMT"
},
{
"key": "Content-Length",
"value": "8636"
},
{
"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": "251fc81c-837b-4853-adf4-f8b8c95df6f7"
},
{
"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/df2545ca-6057-44cb-ab20-c1565c243ca5\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/30a0dc38-03c6-4626-8e38-e09da71a12c3\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"7ac30093-fae1-4fd1-a484-ff0fa5defa0e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111118\"\n }\n ],\n \"issued\": \"2024-03-15T02:15:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:21:28.974439+00:00\",\n \"versionId\": \"MTcxMDk3Njg4ODk3NDQzOTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Terdapat pembesaran pada beberapa bagian jantung, terutama atrium dan ventrikel kiri, yang melebihi batas normal. Ukuran jantung secara keseluruhan terlihat meningkat, mengindikasikan kemungkinan adanya cardiomegaly. 2) Terlihat tanda-tanda plak aterosklerotik pada beberapa arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia. Pembesaran area hiperechogenic pada dinding arteri koroner dapat mengindikasikan penumpukan lemak atau kolesterol. 3) Gerakan dinding jantung terlihat terbatas pada beberapa segmen, menunjukkan kemungkinan adanya disfungsi kontraksi terkait dengan cardiomegaly. Tidak terdapat tanda-tanda iskemia miokard atau penurunan fungsi kontraktil yang signifikan selama uji latih vasodilator.\"\n}"
}
]
},
{
"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\": \"52343428\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"issued\": \"2024-03-15T02:15: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_EkhoVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EkhoVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress Ekokardiografi menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan dislipidemia. Pasien menunjukkan pembesaran jantung serta kemungkinan adanya plak aterosklerotik pada arteri koroner yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\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\": \"52343428\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"issued\": \"2024-03-15T02:15: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_EkhoVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EkhoVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress Ekokardiografi menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan dislipidemia. Pasien menunjukkan pembesaran jantung serta kemungkinan adanya plak aterosklerotik pada arteri koroner yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3Njk2NjU4MDQxMzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/c0781c77-0c51-44a1-b3b0-4aa1eb248a9a/_history/MTcxMDk3Njk2NjU4MDQxMzAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:22:46 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:22:46 GMT"
},
{
"key": "Content-Length",
"value": "7026"
},
{
"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": "80af66b1-4254-48ce-8158-8545f07271c0"
},
{
"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/df2545ca-6057-44cb-ab20-c1565c243ca5\"\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\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"conclusion\": \"Hasil Vasodilator Stress Ekokardiografi menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan dislipidemia. Pasien menunjukkan pembesaran jantung serta kemungkinan adanya plak aterosklerotik pada arteri koroner yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\",\n \"effectiveDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c0781c77-0c51-44a1-b3b0-4aa1eb248a9a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343428\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/30a0dc38-03c6-4626-8e38-e09da71a12c3\"\n }\n ],\n \"issued\": \"2024-03-15T02:15:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:22:46.580413+00:00\",\n \"versionId\": \"MTcxMDk3Njk2NjU4MDQxMzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/7ac30093-fae1-4fd1-a484-ff0fa5defa0e\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120062",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120062"
}
]
}
},
"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/10000002|21120062",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120062"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:15:02 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "edd12469-f7f2-484e-86e4-b76c9cfd323b"
},
{
"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/30a0dc38-03c6-4626-8e38-e09da71a12c3\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/df2545ca-6057-44cb-ab20-c1565c243ca5\"\n }\n ],\n \"id\": \"30a0dc38-03c6-4626-8e38-e09da71a12c3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120062\"\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-03-20T23:14:21.120570+00:00\",\n \"versionId\": \"MTcxMDk3NjQ2MTEyMDU3MDAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"EC\",\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\": \"EC\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T02:10:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T02:10:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120062\"\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%2F10000002%7C21120062\"\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%2F10000002%7C21120062\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111118\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"issued\": \"2024-03-15T02:15:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EkhoVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Terdapat pembesaran pada beberapa bagian jantung, terutama atrium dan ventrikel kiri, yang melebihi batas normal. Ukuran jantung secara keseluruhan terlihat meningkat, mengindikasikan kemungkinan adanya cardiomegaly. 2) Terlihat tanda-tanda plak aterosklerotik pada beberapa arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia. Pembesaran area hiperechogenic pada dinding arteri koroner dapat mengindikasikan penumpukan lemak atau kolesterol. 3) Gerakan dinding jantung terlihat terbatas pada beberapa segmen, menunjukkan kemungkinan adanya disfungsi kontraksi terkait dengan cardiomegaly. Tidak terdapat tanda-tanda iskemia miokard atau penurunan fungsi kontraktil yang signifikan selama uji latih vasodilator.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111118\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"issued\": \"2024-03-15T02:15:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_EkhoVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Terdapat pembesaran pada beberapa bagian jantung, terutama atrium dan ventrikel kiri, yang melebihi batas normal. Ukuran jantung secara keseluruhan terlihat meningkat, mengindikasikan kemungkinan adanya cardiomegaly. 2) Terlihat tanda-tanda plak aterosklerotik pada beberapa arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia. Pembesaran area hiperechogenic pada dinding arteri koroner dapat mengindikasikan penumpukan lemak atau kolesterol. 3) Gerakan dinding jantung terlihat terbatas pada beberapa segmen, menunjukkan kemungkinan adanya disfungsi kontraksi terkait dengan cardiomegaly. Tidak terdapat tanda-tanda iskemia miokard atau penurunan fungsi kontraktil yang signifikan selama uji latih vasodilator.\"\n}",
"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/\"MTcxMDk3Njg4ODk3NDQzOTAwMA\""
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:21:28 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/Observation/7ac30093-fae1-4fd1-a484-ff0fa5defa0e/_history/MTcxMDk3Njg4ODk3NDQzOTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:21:28 GMT"
},
{
"key": "Content-Length",
"value": "8636"
},
{
"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": "251fc81c-837b-4853-adf4-f8b8c95df6f7"
},
{
"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/df2545ca-6057-44cb-ab20-c1565c243ca5\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/30a0dc38-03c6-4626-8e38-e09da71a12c3\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"7ac30093-fae1-4fd1-a484-ff0fa5defa0e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111118\"\n }\n ],\n \"issued\": \"2024-03-15T02:15:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:21:28.974439+00:00\",\n \"versionId\": \"MTcxMDk3Njg4ODk3NDQzOTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Terdapat pembesaran pada beberapa bagian jantung, terutama atrium dan ventrikel kiri, yang melebihi batas normal. Ukuran jantung secara keseluruhan terlihat meningkat, mengindikasikan kemungkinan adanya cardiomegaly. 2) Terlihat tanda-tanda plak aterosklerotik pada beberapa arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia. Pembesaran area hiperechogenic pada dinding arteri koroner dapat mengindikasikan penumpukan lemak atau kolesterol. 3) Gerakan dinding jantung terlihat terbatas pada beberapa segmen, menunjukkan kemungkinan adanya disfungsi kontraksi terkait dengan cardiomegaly. Tidak terdapat tanda-tanda iskemia miokard atau penurunan fungsi kontraktil yang signifikan selama uji latih vasodilator.\"\n}"
}
]
},
{
"name": "ServiceRequest - Create",
"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\": \"000018\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120062\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"EC\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"EC00003\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000018\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120062\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"EC\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"EC00003\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/df2545ca-6057-44cb-ab20-c1565c243ca5/_history/MTcxMDk3NjM2MDIxODMxMzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:12:40 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3NjM2MDIxODMxMzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:12:40 GMT"
},
{
"key": "Content-Length",
"value": "9246"
},
{
"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": "96f04595-a815-4fdb-8d92-4d5ef27a9b95"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"df2545ca-6057-44cb-ab20-c1565c243ca5\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000018\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120062\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:12:40.218313+00:00\",\n \"versionId\": \"MTcxMDk3NjM2MDIxODMxMzAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"EC\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: EC\"\n },\n {\n \"coding\": [\n {\n \"display\": \"EC00003\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress Ekokardiografi untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"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\": \"52343428\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"issued\": \"2024-03-15T02:15: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_EkhoVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EkhoVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress Ekokardiografi menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan dislipidemia. Pasien menunjukkan pembesaran jantung serta kemungkinan adanya plak aterosklerotik pada arteri koroner yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\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\": \"52343428\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"issued\": \"2024-03-15T02:15: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_EkhoVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_EkhoVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_EkhoVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress Ekokardiografi menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan dislipidemia. Pasien menunjukkan pembesaran jantung serta kemungkinan adanya plak aterosklerotik pada arteri koroner yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3Njk2NjU4MDQxMzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/c0781c77-0c51-44a1-b3b0-4aa1eb248a9a/_history/MTcxMDk3Njk2NjU4MDQxMzAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:22:46 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:22:46 GMT"
},
{
"key": "Content-Length",
"value": "7026"
},
{
"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": "80af66b1-4254-48ce-8158-8545f07271c0"
},
{
"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/df2545ca-6057-44cb-ab20-c1565c243ca5\"\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\": \"IP099356\",\n \"display\": \"Vasodilator Stress Ekokardiografi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"conclusion\": \"Hasil Vasodilator Stress Ekokardiografi menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan dislipidemia. Pasien menunjukkan pembesaran jantung serta kemungkinan adanya plak aterosklerotik pada arteri koroner yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\",\n \"effectiveDateTime\": \"2024-03-15T02:10:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c0781c77-0c51-44a1-b3b0-4aa1eb248a9a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343428\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/30a0dc38-03c6-4626-8e38-e09da71a12c3\"\n }\n ],\n \"issued\": \"2024-03-15T02:15:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:22:46.580413+00:00\",\n \"versionId\": \"MTcxMDk3Njk2NjU4MDQxMzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/7ac30093-fae1-4fd1-a484-ff0fa5defa0e\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Vasodilator Stress SPECT",
"item": [
{
"name": "ServiceRequest - Create",
"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\": \"000019\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120063\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"NM\"\n }\n ],\n \"text\": \"Modality Code: NM\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"NM00002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000019\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120063\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"NM\"\n }\n ],\n \"text\": \"Modality Code: NM\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"NM00002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3NzQyNTg2NDQ2MDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/ac213a66-b7f5-4221-b5b9-2d35b80797e5/_history/MTcxMDk3NzQyNTg2NDQ2MDAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:30:25 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:30:25 GMT"
},
{
"key": "Content-Length",
"value": "9074"
},
{
"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": "f7f31fb2-3397-4517-a9b0-ec4d0b6a75bb"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"ac213a66-b7f5-4221-b5b9-2d35b80797e5\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000019\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120063\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:30:25.864460+00:00\",\n \"versionId\": \"MTcxMDk3NzQyNTg2NDQ2MDAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"NM\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: NM\"\n },\n {\n \"coding\": [\n {\n \"display\": \"NM00002\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120063",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120063"
}
]
}
},
"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/10000002|21120063",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120063"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:32:47 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "0baa3af9-cfbb-4955-a5ac-5d11abe54c22"
},
{
"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/f6e7f085-365b-4656-aee8-eb707d9dd649\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/ac213a66-b7f5-4221-b5b9-2d35b80797e5\"\n }\n ],\n \"id\": \"f6e7f085-365b-4656-aee8-eb707d9dd649\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120063\"\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-03-20T23:31:41.083518+00:00\",\n \"versionId\": \"MTcxMDk3NzUwMTA4MzUxODAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"NM\",\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\": \"NM\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T02:15:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T02:15:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120063\"\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%2F10000002%7C21120063\"\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%2F10000002%7C21120063\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111118\"\n }\n ],\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\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"issued\": \"2024-03-15T02:20:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_SPECTVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Pada pemindaian SPECT, terlihat adanya peningkatan uptake radiotracer pada beberapa area jantung, terutama di atrium dan ventrikel kiri. Ukuran jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat penumpukan radiotracer yang lebih tinggi pada daerah-daerah tertentu di sepanjang arteri koroner, yang mungkin menunjukkan adanya aterosklerosis. Penemuan ini konsisten dengan kemungkinan adanya dislipidemia, yang dapat menyebabkan pembentukan plak aterosklerotik.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111118\"\n }\n ],\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\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"issued\": \"2024-03-15T02:20:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_SPECTVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Pada pemindaian SPECT, terlihat adanya peningkatan uptake radiotracer pada beberapa area jantung, terutama di atrium dan ventrikel kiri. Ukuran jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat penumpukan radiotracer yang lebih tinggi pada daerah-daerah tertentu di sepanjang arteri koroner, yang mungkin menunjukkan adanya aterosklerosis. Penemuan ini konsisten dengan kemungkinan adanya dislipidemia, yang dapat menyebabkan pembentukan plak aterosklerotik.\"\n}",
"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/\"MTcxMDk3NzgxMjg5Mzg5OTAwMA\""
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:36: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/6194c8e6-2d5e-4738-a8cb-a1e085a9b166/_history/MTcxMDk3NzgxMjg5Mzg5OTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:36:52 GMT"
},
{
"key": "Content-Length",
"value": "7804"
},
{
"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": "412a509a-0112-4efc-944d-dcdb15a773a1"
},
{
"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/ac213a66-b7f5-4221-b5b9-2d35b80797e5\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/f6e7f085-365b-4656-aee8-eb707d9dd649\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"6194c8e6-2d5e-4738-a8cb-a1e085a9b166\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111118\"\n }\n ],\n \"issued\": \"2024-03-15T02:20:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:36:52.893899+00:00\",\n \"versionId\": \"MTcxMDk3NzgxMjg5Mzg5OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Pada pemindaian SPECT, terlihat adanya peningkatan uptake radiotracer pada beberapa area jantung, terutama di atrium dan ventrikel kiri. Ukuran jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat penumpukan radiotracer yang lebih tinggi pada daerah-daerah tertentu di sepanjang arteri koroner, yang mungkin menunjukkan adanya aterosklerosis. Penemuan ini konsisten dengan kemungkinan adanya dislipidemia, yang dapat menyebabkan pembentukan plak aterosklerotik.\"\n}"
}
]
},
{
"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\": \"52343429\"\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\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"issued\": \"2024-03-15T02:20: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_SPECTVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_SPECTVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress SPECT menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan kemungkinan adanya dislipidemia. Pasien menunjukkan peningkatan uptake radiotracer pada jantung, dan penumpukan yang lebih tinggi pada arteri koroner, yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan untuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\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\": \"52343429\"\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\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"issued\": \"2024-03-15T02:20: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_SPECTVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_SPECTVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress SPECT menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan kemungkinan adanya dislipidemia. Pasien menunjukkan peningkatan uptake radiotracer pada jantung, dan penumpukan yang lebih tinggi pada arteri koroner, yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan untuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\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": "Wed, 20 Mar 2024 23:40:44 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/DiagnosticReport/9b0e2c2f-603b-4102-bfab-c4ed11ae1ebf/_history/MTcxMDk3ODA0NDMyNTgxMjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3ODA0NDMyNTgxMjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:40:44 GMT"
},
{
"key": "Content-Length",
"value": "7050"
},
{
"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": "69a65424-1272-4f7b-94aa-33c28755f680"
},
{
"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/ac213a66-b7f5-4221-b5b9-2d35b80797e5\"\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\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Hasil Vasodilator Stress SPECT menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan kemungkinan adanya dislipidemia. Pasien menunjukkan peningkatan uptake radiotracer pada jantung, dan penumpukan yang lebih tinggi pada arteri koroner, yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan untuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\",\n \"effectiveDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"9b0e2c2f-603b-4102-bfab-c4ed11ae1ebf\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343429\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/f6e7f085-365b-4656-aee8-eb707d9dd649\"\n }\n ],\n \"issued\": \"2024-03-15T02:20:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:40:44.325812+00:00\",\n \"versionId\": \"MTcxMDk3ODA0NDMyNTgxMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/6194c8e6-2d5e-4738-a8cb-a1e085a9b166\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120063",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120063"
}
]
}
},
"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/10000002|21120063",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120063"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:32:47 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "0baa3af9-cfbb-4955-a5ac-5d11abe54c22"
},
{
"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/f6e7f085-365b-4656-aee8-eb707d9dd649\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/ac213a66-b7f5-4221-b5b9-2d35b80797e5\"\n }\n ],\n \"id\": \"f6e7f085-365b-4656-aee8-eb707d9dd649\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120063\"\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-03-20T23:31:41.083518+00:00\",\n \"versionId\": \"MTcxMDk3NzUwMTA4MzUxODAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"NM\",\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\": \"NM\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T02:15:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T02:15:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120063\"\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%2F10000002%7C21120063\"\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%2F10000002%7C21120063\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111118\"\n }\n ],\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\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"issued\": \"2024-03-15T02:20:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_SPECTVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Pada pemindaian SPECT, terlihat adanya peningkatan uptake radiotracer pada beberapa area jantung, terutama di atrium dan ventrikel kiri. Ukuran jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat penumpukan radiotracer yang lebih tinggi pada daerah-daerah tertentu di sepanjang arteri koroner, yang mungkin menunjukkan adanya aterosklerosis. Penemuan ini konsisten dengan kemungkinan adanya dislipidemia, yang dapat menyebabkan pembentukan plak aterosklerotik.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111118\"\n }\n ],\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\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"issued\": \"2024-03-15T02:20:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_SPECTVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Pada pemindaian SPECT, terlihat adanya peningkatan uptake radiotracer pada beberapa area jantung, terutama di atrium dan ventrikel kiri. Ukuran jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat penumpukan radiotracer yang lebih tinggi pada daerah-daerah tertentu di sepanjang arteri koroner, yang mungkin menunjukkan adanya aterosklerosis. Penemuan ini konsisten dengan kemungkinan adanya dislipidemia, yang dapat menyebabkan pembentukan plak aterosklerotik.\"\n}",
"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/\"MTcxMDk3NzgxMjg5Mzg5OTAwMA\""
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:36: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/6194c8e6-2d5e-4738-a8cb-a1e085a9b166/_history/MTcxMDk3NzgxMjg5Mzg5OTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:36:52 GMT"
},
{
"key": "Content-Length",
"value": "7804"
},
{
"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": "412a509a-0112-4efc-944d-dcdb15a773a1"
},
{
"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/ac213a66-b7f5-4221-b5b9-2d35b80797e5\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/f6e7f085-365b-4656-aee8-eb707d9dd649\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"6194c8e6-2d5e-4738-a8cb-a1e085a9b166\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111118\"\n }\n ],\n \"issued\": \"2024-03-15T02:20:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:36:52.893899+00:00\",\n \"versionId\": \"MTcxMDk3NzgxMjg5Mzg5OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Pada pemindaian SPECT, terlihat adanya peningkatan uptake radiotracer pada beberapa area jantung, terutama di atrium dan ventrikel kiri. Ukuran jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat penumpukan radiotracer yang lebih tinggi pada daerah-daerah tertentu di sepanjang arteri koroner, yang mungkin menunjukkan adanya aterosklerosis. Penemuan ini konsisten dengan kemungkinan adanya dislipidemia, yang dapat menyebabkan pembentukan plak aterosklerotik.\"\n}"
}
]
},
{
"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\": \"52343429\"\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\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"issued\": \"2024-03-15T02:20: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_SPECTVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_SPECTVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress SPECT menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan kemungkinan adanya dislipidemia. Pasien menunjukkan peningkatan uptake radiotracer pada jantung, dan penumpukan yang lebih tinggi pada arteri koroner, yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan untuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\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\": \"52343429\"\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\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"issued\": \"2024-03-15T02:20: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_SPECTVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_SPECTVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_SPECTVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress SPECT menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan kemungkinan adanya dislipidemia. Pasien menunjukkan peningkatan uptake radiotracer pada jantung, dan penumpukan yang lebih tinggi pada arteri koroner, yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan untuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\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": "Wed, 20 Mar 2024 23:40:44 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/DiagnosticReport/9b0e2c2f-603b-4102-bfab-c4ed11ae1ebf/_history/MTcxMDk3ODA0NDMyNTgxMjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3ODA0NDMyNTgxMjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:40:44 GMT"
},
{
"key": "Content-Length",
"value": "7050"
},
{
"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": "69a65424-1272-4f7b-94aa-33c28755f680"
},
{
"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/ac213a66-b7f5-4221-b5b9-2d35b80797e5\"\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\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Hasil Vasodilator Stress SPECT menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan kemungkinan adanya dislipidemia. Pasien menunjukkan peningkatan uptake radiotracer pada jantung, dan penumpukan yang lebih tinggi pada arteri koroner, yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan untuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\",\n \"effectiveDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"9b0e2c2f-603b-4102-bfab-c4ed11ae1ebf\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343429\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/f6e7f085-365b-4656-aee8-eb707d9dd649\"\n }\n ],\n \"issued\": \"2024-03-15T02:20:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:40:44.325812+00:00\",\n \"versionId\": \"MTcxMDk3ODA0NDMyNTgxMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/6194c8e6-2d5e-4738-a8cb-a1e085a9b166\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Create",
"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\": \"000019\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120063\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"NM\"\n }\n ],\n \"text\": \"Modality Code: NM\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"NM00002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000019\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120063\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"NM\"\n }\n ],\n \"text\": \"Modality Code: NM\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"NM00002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3NzQyNTg2NDQ2MDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/ac213a66-b7f5-4221-b5b9-2d35b80797e5/_history/MTcxMDk3NzQyNTg2NDQ2MDAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:30:25 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:30:25 GMT"
},
{
"key": "Content-Length",
"value": "9074"
},
{
"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": "f7f31fb2-3397-4517-a9b0-ec4d0b6a75bb"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"39731-5\",\n \"display\": \"NM Heart Perfusion W adenosine and W Tc-99m Sestamibi IV\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"ac213a66-b7f5-4221-b5b9-2d35b80797e5\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000019\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120063\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:30:25.864460+00:00\",\n \"versionId\": \"MTcxMDk3NzQyNTg2NDQ2MDAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T02:15:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"NM\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: NM\"\n },\n {\n \"coding\": [\n {\n \"display\": \"NM00002\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress SPECT untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
}
]
},
{
"name": "Vasodilator Stress MRI",
"item": [
{
"name": "ServiceRequest - Create",
"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\": \"000020\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120064\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress MRI\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"MR\"\n }\n ],\n \"text\": \"Modality Code: MR\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"MR00002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress MRI untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress MRI\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000020\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120064\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress MRI\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"MR\"\n }\n ],\n \"text\": \"Modality Code: MR\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"MR00002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress MRI untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress MRI\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/e447efcf-d54c-4e1e-b0f7-4636106a2852/_history/MTcxMDk3ODM1MTEyMDk2NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3ODM1MTEyMDk2NTAwMA\""
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:45:51 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:45:51 GMT"
},
{
"key": "Content-Length",
"value": "9074"
},
{
"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": "ad325827-a4e1-40e2-8e89-1b1789f8d02a"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress MRI\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"e447efcf-d54c-4e1e-b0f7-4636106a2852\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000020\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120064\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:45:51.120965+00:00\",\n \"versionId\": \"MTcxMDk3ODM1MTEyMDk2NTAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress MRI\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"MR\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: MR\"\n },\n {\n \"coding\": [\n {\n \"display\": \"MR00002\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress MRI untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120064",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120064"
}
]
}
},
"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/10000002|21120064",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120064"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:49:32 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "b5eb7c51-e3e7-4c4c-b454-acbcf2c8b1a8"
},
{
"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/c9c99b12-f46b-418e-8f67-5042393cc5a3\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/e447efcf-d54c-4e1e-b0f7-4636106a2852\"\n }\n ],\n \"id\": \"c9c99b12-f46b-418e-8f67-5042393cc5a3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120064\"\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-03-20T23:48:28.054136+00:00\",\n \"versionId\": \"MTcxMDk3ODUwODA1NDEzNjAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"MR\",\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\": \"MR\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T02:20:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T02:20:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120064\"\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%2F10000002%7C21120064\"\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%2F10000002%7C21120064\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111119\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"issued\": \"2024-03-15T02:25:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_MRIVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) ada pemindaian MRI, terlihat adanya pembesaran pada beberapa bagian jantung, terutama atrium dan ventrikel kiri. Ukuran jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat tanda-tanda plak aterosklerotik pada beberapa arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia. Lesi aterosklerotik pada arteri koroner tampak hipointens pada pemindaian T1-weighted, menunjukkan kemungkinan penumpukan lemak atau kolesterol.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111119\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"issued\": \"2024-03-15T02:25:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_MRIVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) ada pemindaian MRI, terlihat adanya pembesaran pada beberapa bagian jantung, terutama atrium dan ventrikel kiri. Ukuran jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat tanda-tanda plak aterosklerotik pada beberapa arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia. Lesi aterosklerotik pada arteri koroner tampak hipointens pada pemindaian T1-weighted, menunjukkan kemungkinan penumpukan lemak atau kolesterol.\"\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/deb2557f-3b8f-4c95-8f0a-1709aa909b2b/_history/MTcxMDk3ODgwMDY1NzIxNzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3ODgwMDY1NzIxNzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:53:20 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:53:20 GMT"
},
{
"key": "Content-Length",
"value": "7700"
},
{
"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": "d2bbed95-3fd6-40c4-895c-d95eddca38fa"
},
{
"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/e447efcf-d54c-4e1e-b0f7-4636106a2852\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/c9c99b12-f46b-418e-8f67-5042393cc5a3\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"deb2557f-3b8f-4c95-8f0a-1709aa909b2b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111119\"\n }\n ],\n \"issued\": \"2024-03-15T02:25:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:53:20.657217+00:00\",\n \"versionId\": \"MTcxMDk3ODgwMDY1NzIxNzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) ada pemindaian MRI, terlihat adanya pembesaran pada beberapa bagian jantung, terutama atrium dan ventrikel kiri. Ukuran jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat tanda-tanda plak aterosklerotik pada beberapa arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia. Lesi aterosklerotik pada arteri koroner tampak hipointens pada pemindaian T1-weighted, menunjukkan kemungkinan penumpukan lemak atau kolesterol.\"\n}"
}
]
},
{
"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\": \"52343430\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"issued\": \"2024-03-15T02:25: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_MRIVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_MRIVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress MRI menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan dislipidemia. Pasien menunjukkan pembesaran jantung serta kemungkinan adanya aterosklerosis koroner yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\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\": \"52343430\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"issued\": \"2024-03-15T02:25: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_MRIVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_MRIVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress MRI menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan dislipidemia. Pasien menunjukkan pembesaran jantung serta kemungkinan adanya aterosklerosis koroner yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\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/2e8f908e-0e47-434d-9aeb-7d42a385cb4d/_history/MTcxMDk3ODg0MDQ3NjYzMjAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:54:00 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3ODg0MDQ3NjYzMjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:54:00 GMT"
},
{
"key": "Content-Length",
"value": "6874"
},
{
"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": "78e6350b-d237-4789-9cdc-c19546b71845"
},
{
"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/e447efcf-d54c-4e1e-b0f7-4636106a2852\"\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\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"conclusion\": \"Hasil Vasodilator Stress MRI menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan dislipidemia. Pasien menunjukkan pembesaran jantung serta kemungkinan adanya aterosklerosis koroner yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\",\n \"effectiveDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"2e8f908e-0e47-434d-9aeb-7d42a385cb4d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343430\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/c9c99b12-f46b-418e-8f67-5042393cc5a3\"\n }\n ],\n \"issued\": \"2024-03-15T02:25:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:54:00.476632+00:00\",\n \"versionId\": \"MTcxMDk3ODg0MDQ3NjYzMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/deb2557f-3b8f-4c95-8f0a-1709aa909b2b\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111119\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"issued\": \"2024-03-15T02:25:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_MRIVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) ada pemindaian MRI, terlihat adanya pembesaran pada beberapa bagian jantung, terutama atrium dan ventrikel kiri. Ukuran jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat tanda-tanda plak aterosklerotik pada beberapa arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia. Lesi aterosklerotik pada arteri koroner tampak hipointens pada pemindaian T1-weighted, menunjukkan kemungkinan penumpukan lemak atau kolesterol.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111119\"\n }\n ],\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"issued\": \"2024-03-15T02:25:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_MRIVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) ada pemindaian MRI, terlihat adanya pembesaran pada beberapa bagian jantung, terutama atrium dan ventrikel kiri. Ukuran jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat tanda-tanda plak aterosklerotik pada beberapa arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia. Lesi aterosklerotik pada arteri koroner tampak hipointens pada pemindaian T1-weighted, menunjukkan kemungkinan penumpukan lemak atau kolesterol.\"\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/deb2557f-3b8f-4c95-8f0a-1709aa909b2b/_history/MTcxMDk3ODgwMDY1NzIxNzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3ODgwMDY1NzIxNzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:53:20 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:53:20 GMT"
},
{
"key": "Content-Length",
"value": "7700"
},
{
"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": "d2bbed95-3fd6-40c4-895c-d95eddca38fa"
},
{
"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/e447efcf-d54c-4e1e-b0f7-4636106a2852\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/c9c99b12-f46b-418e-8f67-5042393cc5a3\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"deb2557f-3b8f-4c95-8f0a-1709aa909b2b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111119\"\n }\n ],\n \"issued\": \"2024-03-15T02:25:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:53:20.657217+00:00\",\n \"versionId\": \"MTcxMDk3ODgwMDY1NzIxNzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) ada pemindaian MRI, terlihat adanya pembesaran pada beberapa bagian jantung, terutama atrium dan ventrikel kiri. Ukuran jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat tanda-tanda plak aterosklerotik pada beberapa arteri koroner, yang menunjukkan kemungkinan adanya dislipidemia. Lesi aterosklerotik pada arteri koroner tampak hipointens pada pemindaian T1-weighted, menunjukkan kemungkinan penumpukan lemak atau kolesterol.\"\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120064",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120064"
}
]
}
},
"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/10000002|21120064",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120064"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:49:32 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "b5eb7c51-e3e7-4c4c-b454-acbcf2c8b1a8"
},
{
"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/c9c99b12-f46b-418e-8f67-5042393cc5a3\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/e447efcf-d54c-4e1e-b0f7-4636106a2852\"\n }\n ],\n \"id\": \"c9c99b12-f46b-418e-8f67-5042393cc5a3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120064\"\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-03-20T23:48:28.054136+00:00\",\n \"versionId\": \"MTcxMDk3ODUwODA1NDEzNjAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"MR\",\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\": \"MR\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T02:20:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T02:20:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120064\"\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%2F10000002%7C21120064\"\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%2F10000002%7C21120064\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"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\": \"52343430\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"issued\": \"2024-03-15T02:25: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_MRIVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_MRIVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress MRI menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan dislipidemia. Pasien menunjukkan pembesaran jantung serta kemungkinan adanya aterosklerosis koroner yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\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\": \"52343430\"\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://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"issued\": \"2024-03-15T02:25: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_MRIVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_MRIVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_MRIVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress MRI menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan dislipidemia. Pasien menunjukkan pembesaran jantung serta kemungkinan adanya aterosklerosis koroner yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\"\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/2e8f908e-0e47-434d-9aeb-7d42a385cb4d/_history/MTcxMDk3ODg0MDQ3NjYzMjAwMA"
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:54:00 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3ODg0MDQ3NjYzMjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:54:00 GMT"
},
{
"key": "Content-Length",
"value": "6874"
},
{
"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": "78e6350b-d237-4789-9cdc-c19546b71845"
},
{
"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/e447efcf-d54c-4e1e-b0f7-4636106a2852\"\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\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ]\n },\n \"conclusion\": \"Hasil Vasodilator Stress MRI menunjukkan tanda-tanda yang mengarah pada cardiomegaly dan dislipidemia. Pasien menunjukkan pembesaran jantung serta kemungkinan adanya aterosklerosis koroner yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap kadar lipid darah dan manajemen risiko kardiovaskular yang tepat.\",\n \"effectiveDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"2e8f908e-0e47-434d-9aeb-7d42a385cb4d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343430\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/c9c99b12-f46b-418e-8f67-5042393cc5a3\"\n }\n ],\n \"issued\": \"2024-03-15T02:25:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:54:00.476632+00:00\",\n \"versionId\": \"MTcxMDk3ODg0MDQ3NjYzMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/deb2557f-3b8f-4c95-8f0a-1709aa909b2b\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Create",
"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\": \"000020\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120064\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress MRI\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"MR\"\n }\n ],\n \"text\": \"Modality Code: MR\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"MR00002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress MRI untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress MRI\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000020\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120064\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\",\n \"code\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress MRI\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"MR\"\n }\n ],\n \"text\": \"Modality Code: MR\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"MR00002\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress MRI untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress MRI\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/e447efcf-d54c-4e1e-b0f7-4636106a2852/_history/MTcxMDk3ODM1MTEyMDk2NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3ODM1MTEyMDk2NTAwMA\""
},
{
"key": "last-modified",
"value": "Wed, 20 Mar 2024 23:45:51 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:45:51 GMT"
},
{
"key": "Content-Length",
"value": "9074"
},
{
"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": "ad325827-a4e1-40e2-8e89-1b1789f8d02a"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"RD0993431\",\n \"display\": \"Vasodilator Stress MRI\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/examination\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress MRI\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"e447efcf-d54c-4e1e-b0f7-4636106a2852\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000020\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120064\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:45:51.120965+00:00\",\n \"versionId\": \"MTcxMDk3ODM1MTEyMDk2NTAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress MRI\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T02:20:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"MR\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: MR\"\n },\n {\n \"coding\": [\n {\n \"display\": \"MR00002\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress MRI untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
}
]
},
{
"name": "Vasodilator Stress PET",
"item": [
{
"name": "ServiceRequest - Create",
"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\": \"000021\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120065\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress PET\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"PT\"\n }\n ],\n \"text\": \"Modality Code: PT\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"PT00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress PET untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress PET\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000021\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120065\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress PET\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"PT\"\n }\n ],\n \"text\": \"Modality Code: PT\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"PT00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress PET untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress PET\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "Wed, 20 Mar 2024 23:59:33 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3OTE3MzY2ODczNDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/48cf9693-7762-4927-9f3e-6a476b805d8d/_history/MTcxMDk3OTE3MzY2ODczNDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:59:33 GMT"
},
{
"key": "Content-Length",
"value": "8922"
},
{
"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": "c6602f72-8038-4eab-b5c9-cf25a93baac2"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress PET\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"48cf9693-7762-4927-9f3e-6a476b805d8d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000021\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120065\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:59:33.668734+00:00\",\n \"versionId\": \"MTcxMDk3OTE3MzY2ODczNDAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress PET\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"PT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: PT\"\n },\n {\n \"coding\": [\n {\n \"display\": \"PT00001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress PET untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120065",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120065"
}
]
}
},
"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/10000002|21120065",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120065"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 00:01:21 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "6f28f08f-7994-4d64-b342-dfca8b6454ed"
},
{
"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/1c7cd943-7c3e-4615-88e6-a8f33fa1e570\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/48cf9693-7762-4927-9f3e-6a476b805d8d\"\n }\n ],\n \"id\": \"1c7cd943-7c3e-4615-88e6-a8f33fa1e570\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120065\"\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-03-21T00:00:42.511958+00:00\",\n \"versionId\": \"MTcxMDk3OTI0MjUxMTk1ODAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"PT\",\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\": \"PT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T02:25:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T02:25:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120065\"\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%2F10000002%7C21120065\"\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%2F10000002%7C21120065\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111119\"\n }\n ],\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\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"issued\": \"2024-03-15T02:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_PETVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_PETVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Pada pemindaian PET, terlihat adanya peningkatan aktivitas metabolisme pada beberapa bagian jantung, terutama di atrium dan ventrikel kiri.Volume jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat gangguan kontraksi pada beberapa segmen jantung, yang tercermin dari penurunan uptake radiofarmasi pada pemindaian PET. Disfungsi kontraksi ini dapat menjadi tanda dari kelainan jantung yang mungkin terjadi, seperti cardiomyopathy atau penyakit arteri koroner.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111119\"\n }\n ],\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\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"issued\": \"2024-03-15T02:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_PETVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_PETVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Pada pemindaian PET, terlihat adanya peningkatan aktivitas metabolisme pada beberapa bagian jantung, terutama di atrium dan ventrikel kiri.Volume jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat gangguan kontraksi pada beberapa segmen jantung, yang tercermin dari penurunan uptake radiofarmasi pada pemindaian PET. Disfungsi kontraksi ini dapat menjadi tanda dari kelainan jantung yang mungkin terjadi, seperti cardiomyopathy atau penyakit arteri koroner.\"\n}",
"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/0b031860-d3d8-4a4d-b2c5-d69bd88fb555/_history/MTcxMDk3OTUyNTA3MDI0NDAwMA"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 00:05:25 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3OTUyNTA3MDI0NDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 00:05:25 GMT"
},
{
"key": "Content-Length",
"value": "7668"
},
{
"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": "d2a9acb2-277e-4928-a183-3efce87c13c8"
},
{
"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/48cf9693-7762-4927-9f3e-6a476b805d8d\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/1c7cd943-7c3e-4615-88e6-a8f33fa1e570\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"0b031860-d3d8-4a4d-b2c5-d69bd88fb555\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111119\"\n }\n ],\n \"issued\": \"2024-03-15T02:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T00:05:25.070244+00:00\",\n \"versionId\": \"MTcxMDk3OTUyNTA3MDI0NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Pada pemindaian PET, terlihat adanya peningkatan aktivitas metabolisme pada beberapa bagian jantung, terutama di atrium dan ventrikel kiri.Volume jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat gangguan kontraksi pada beberapa segmen jantung, yang tercermin dari penurunan uptake radiofarmasi pada pemindaian PET. Disfungsi kontraksi ini dapat menjadi tanda dari kelainan jantung yang mungkin terjadi, seperti cardiomyopathy atau penyakit arteri koroner.\"\n}"
}
]
},
{
"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\": \"52343431\"\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\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"issued\": \"2024-03-15T02:45: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_PETVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_PETVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_PETVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress PET menunjukkan adanya tanda-tanda yang mengarah pada cardiomegaly dan disfungsi kontraksi. Pasien menunjukkan peningkatan aktivitas metabolisme jantung serta pembesaran jantung secara keseluruhan yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap fungsi jantung secara menyeluruh dan manajemen risiko kardiovaskular yang tepat.\"\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\": \"52343431\"\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\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"issued\": \"2024-03-15T02:45: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_PETVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_PETVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_PETVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress PET menunjukkan adanya tanda-tanda yang mengarah pada cardiomegaly dan disfungsi kontraksi. Pasien menunjukkan peningkatan aktivitas metabolisme jantung serta pembesaran jantung secara keseluruhan yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap fungsi jantung secara menyeluruh dan manajemen risiko kardiovaskular yang tepat.\"\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, 21 Mar 2024 00:06:35 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/c2bbf7ae-bb0e-4b84-8be1-46e1637dcb57/_history/MTcxMDk3OTU5NTIyOTkxMzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3OTU5NTIyOTkxMzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 00:06:35 GMT"
},
{
"key": "Content-Length",
"value": "6914"
},
{
"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": "6acdcdd4-ca2b-4670-93a3-19d25ace5253"
},
{
"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/48cf9693-7762-4927-9f3e-6a476b805d8d\"\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\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Hasil Vasodilator Stress PET menunjukkan adanya tanda-tanda yang mengarah pada cardiomegaly dan disfungsi kontraksi. Pasien menunjukkan peningkatan aktivitas metabolisme jantung serta pembesaran jantung secara keseluruhan yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap fungsi jantung secara menyeluruh dan manajemen risiko kardiovaskular yang tepat.\",\n \"effectiveDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c2bbf7ae-bb0e-4b84-8be1-46e1637dcb57\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343431\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/1c7cd943-7c3e-4615-88e6-a8f33fa1e570\"\n }\n ],\n \"issued\": \"2024-03-15T02:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T00:06:35.229913+00:00\",\n \"versionId\": \"MTcxMDk3OTU5NTIyOTkxMzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/0b031860-d3d8-4a4d-b2c5-d69bd88fb555\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Create",
"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\": \"O1111119\"\n }\n ],\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\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"issued\": \"2024-03-15T02:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_PETVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_PETVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Pada pemindaian PET, terlihat adanya peningkatan aktivitas metabolisme pada beberapa bagian jantung, terutama di atrium dan ventrikel kiri.Volume jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat gangguan kontraksi pada beberapa segmen jantung, yang tercermin dari penurunan uptake radiofarmasi pada pemindaian PET. Disfungsi kontraksi ini dapat menjadi tanda dari kelainan jantung yang mungkin terjadi, seperti cardiomyopathy atau penyakit arteri koroner.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - 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\": \"O1111119\"\n }\n ],\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\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"issued\": \"2024-03-15T02:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_PETVasodilatorStress}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_PETVasodilatorStress}}\"\n }\n ],\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Pada pemindaian PET, terlihat adanya peningkatan aktivitas metabolisme pada beberapa bagian jantung, terutama di atrium dan ventrikel kiri.Volume jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat gangguan kontraksi pada beberapa segmen jantung, yang tercermin dari penurunan uptake radiofarmasi pada pemindaian PET. Disfungsi kontraksi ini dapat menjadi tanda dari kelainan jantung yang mungkin terjadi, seperti cardiomyopathy atau penyakit arteri koroner.\"\n}",
"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/0b031860-d3d8-4a4d-b2c5-d69bd88fb555/_history/MTcxMDk3OTUyNTA3MDI0NDAwMA"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 00:05:25 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3OTUyNTA3MDI0NDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 00:05:25 GMT"
},
{
"key": "Content-Length",
"value": "7668"
},
{
"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": "d2a9acb2-277e-4928-a183-3efce87c13c8"
},
{
"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/48cf9693-7762-4927-9f3e-6a476b805d8d\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\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\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/1c7cd943-7c3e-4615-88e6-a8f33fa1e570\"\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"0b031860-d3d8-4a4d-b2c5-d69bd88fb555\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O1111119\"\n }\n ],\n \"issued\": \"2024-03-15T02:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T00:05:25.070244+00:00\",\n \"versionId\": \"MTcxMDk3OTUyNTA3MDI0NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Temuan Pemeriksaan meliputi 1) Pada pemindaian PET, terlihat adanya peningkatan aktivitas metabolisme pada beberapa bagian jantung, terutama di atrium dan ventrikel kiri.Volume jantung secara keseluruhan terlihat melebihi batas normal, yang mengindikasikan kemungkinan adanya cardiomegaly.2) Terdapat gangguan kontraksi pada beberapa segmen jantung, yang tercermin dari penurunan uptake radiofarmasi pada pemindaian PET. Disfungsi kontraksi ini dapat menjadi tanda dari kelainan jantung yang mungkin terjadi, seperti cardiomyopathy atau penyakit arteri koroner.\"\n}"
}
]
},
{
"name": "ServiceRequest - Create",
"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\": \"000021\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120065\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress PET\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"PT\"\n }\n ],\n \"text\": \"Modality Code: PT\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"PT00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress PET untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress PET\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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\": \"000021\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120065\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress PET\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"PT\"\n }\n ],\n \"text\": \"Modality Code: PT\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"PT00001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress PET untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress PET\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\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": "Wed, 20 Mar 2024 23:59:33 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3OTE3MzY2ODczNDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/48cf9693-7762-4927-9f3e-6a476b805d8d/_history/MTcxMDk3OTE3MzY2ODczNDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Wed, 20 Mar 2024 23:59:33 GMT"
},
{
"key": "Content-Length",
"value": "8922"
},
{
"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": "c6602f72-8038-4eab-b5c9-cf25a93baac2"
},
{
"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\": \"2024-03-15T01:27:00+00:00\",\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\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\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Vasodilator Stress PET\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"48cf9693-7762-4927-9f3e-6a476b805d8d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000021\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120065\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-20T23:59:33.668734+00:00\",\n \"versionId\": \"MTcxMDk3OTE3MzY2ODczNDAwMA\"\n },\n \"note\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress PET\"\n }\n ],\n \"occurrenceDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"code\": \"PT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n }\n ],\n \"text\": \"Modality Code: PT\"\n },\n {\n \"coding\": [\n {\n \"display\": \"PT00001\",\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\"\n }\n ]\n }\n ],\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Vasodilator Stress PET untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/fdfdaf23-c0cf-40f7-badb-bfdad347cb6e\"\n },\n {\n \"reference\": \"AllergyIntolerance/9cc9090f-89ae-428a-9707-eccd44e5952b\"\n },\n {\n \"reference\": \"Procedure/de5aa1ed-b5b0-48a4-bf28-873c99353aa1\"\n }\n ]\n}"
}
]
},
{
"name": "ImagingStudy - Get ID based on Accession Number",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/ImagingStudy?identifier=http://sys-ids.kemkes.go.id/acsn/10000002|21120065",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120065"
}
]
}
},
"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/10000002|21120065",
"host": [
"{{base_url}}"
],
"path": [
"ImagingStudy"
],
"query": [
{
"key": "identifier",
"value": "http://sys-ids.kemkes.go.id/acsn/10000002|21120065"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 00:01:21 GMT"
},
{
"key": "Content-Length",
"value": "8960"
},
{
"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": "6f28f08f-7994-4d64-b342-dfca8b6454ed"
},
{
"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/1c7cd943-7c3e-4615-88e6-a8f33fa1e570\",\n \"resource\": {\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/48cf9693-7762-4927-9f3e-6a476b805d8d\"\n }\n ],\n \"id\": \"1c7cd943-7c3e-4615-88e6-a8f33fa1e570\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/10000002\",\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\": \"21120065\"\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-03-21T00:00:42.511958+00:00\",\n \"versionId\": \"MTcxMDk3OTI0MjUxMTk1ODAwMA\"\n },\n \"modality\": [\n {\n \"code\": \"PT\",\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\": \"PT\",\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\"\n },\n \"number\": 1,\n \"numberOfInstances\": 1,\n \"started\": \"2024-03-15T02:25:00+00:00\",\n \"uid\": \"2.16.380.31256.1.2449191199178232.20210610114926922.1\"\n }\n ],\n \"started\": \"2024-03-15T02:25:00+00:00\",\n \"status\": \"available\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\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%2F10000002%7C21120065\"\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%2F10000002%7C21120065\"\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%2F10000002%7C21120065\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"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\": \"52343431\"\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\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"issued\": \"2024-03-15T02:45: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_PETVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_PETVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_PETVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress PET menunjukkan adanya tanda-tanda yang mengarah pada cardiomegaly dan disfungsi kontraksi. Pasien menunjukkan peningkatan aktivitas metabolisme jantung serta pembesaran jantung secara keseluruhan yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap fungsi jantung secara menyeluruh dan manajemen risiko kardiovaskular yang tepat.\"\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\": \"52343431\"\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\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"issued\": \"2024-03-15T02:45: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_PETVasodilatorStress}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_PETVasodilatorStress}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_PETVasodilatorStress}}\"\n }\n ],\n \"conclusion\": \"Hasil Vasodilator Stress PET menunjukkan adanya tanda-tanda yang mengarah pada cardiomegaly dan disfungsi kontraksi. Pasien menunjukkan peningkatan aktivitas metabolisme jantung serta pembesaran jantung secara keseluruhan yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap fungsi jantung secara menyeluruh dan manajemen risiko kardiovaskular yang tepat.\"\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, 21 Mar 2024 00:06:35 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/DiagnosticReport/c2bbf7ae-bb0e-4b84-8be1-46e1637dcb57/_history/MTcxMDk3OTU5NTIyOTkxMzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk3OTU5NTIyOTkxMzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 00:06:35 GMT"
},
{
"key": "Content-Length",
"value": "6914"
},
{
"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": "6acdcdd4-ca2b-4670-93a3-19d25ace5253"
},
{
"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/48cf9693-7762-4927-9f3e-6a476b805d8d\"\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\": \"82801-2\",\n \"display\": \"PET+CT Heart WO contrast\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"conclusion\": \"Hasil Vasodilator Stress PET menunjukkan adanya tanda-tanda yang mengarah pada cardiomegaly dan disfungsi kontraksi. Pasien menunjukkan peningkatan aktivitas metabolisme jantung serta pembesaran jantung secara keseluruhan yang konsisten dengan kondisi tersebut. Rekomendasi lanjutan termasuk evaluasi lebih lanjut terhadap fungsi jantung secara menyeluruh dan manajemen risiko kardiovaskular yang tepat.\",\n \"effectiveDateTime\": \"2024-03-15T02:25:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c2bbf7ae-bb0e-4b84-8be1-46e1637dcb57\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/rad\",\n \"use\": \"official\",\n \"value\": \"52343431\"\n }\n ],\n \"imagingStudy\": [\n {\n \"reference\": \"ImagingStudy/1c7cd943-7c3e-4615-88e6-a8f33fa1e570\"\n }\n ],\n \"issued\": \"2024-03-15T02:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T00:06:35.229913+00:00\",\n \"versionId\": \"MTcxMDk3OTU5NTIyOTkxMzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/0b031860-d3d8-4a4d-b2c5-d69bd88fb555\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
}
]
}
]
},
{
"name": "07. Tindakan/Prosedur Medis Diagnostik",
"item": [
{
"name": "Elektrokardiogram (EKG)",
"item": [
{
"name": "Procedure - EKG",
"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\": \"89.52\",\n \"display\": \"Electrocardiogram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T02:50:00+00:00\",\n \"end\": \"2024-03-15T03:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - EKG",
"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\": \"89.52\",\n \"display\": \"Electrocardiogram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T02:50:00+00:00\",\n \"end\": \"2024-03-15T03:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\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": "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/5817d109-cc26-4d22-9827-19f8ca3a4750/_history/MTcxMDg3ODM3NjkzNjgxMjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3ODM3NjkzNjgxMjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:59:36 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:59:36 GMT"
},
{
"key": "Content-Length",
"value": "3852"
},
{
"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": "8bf8bf32-d214-45c4-ab6c-440b59cf9ccf"
},
{
"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\": \"89.52\",\n \"display\": \"Electrocardiogram\",\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"5817d109-cc26-4d22-9827-19f8ca3a4750\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:59:36.936812+00:00\",\n \"versionId\": \"MTcxMDg3ODM3NjkzNjgxMjAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-15T03:00:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/N10000006\"\n }\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - EKG",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34534-8\",\n \"display\": \"12 lead EKG panel\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:50:00+00:00\",\n \"issued\": \"2024-03-15T03:05:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - EKG",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34534-8\",\n \"display\": \"12 lead EKG panel\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:50:00+00:00\",\n \"issued\": \"2024-03-15T03:05:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\n}",
"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/\"MTcxMDg3ODE5NjcyMDYyNjAwMA\""
},
{
"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/39593bef-91f5-42f3-b496-7816a80f2754/_history/MTcxMDg3ODE5NjcyMDYyNjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:56:36 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:56:36 GMT"
},
{
"key": "Content-Length",
"value": "7080"
},
{
"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": "58277167-70be-4f3d-99a7-a40115befefe"
},
{
"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\": \"34534-8\",\n \"display\": \"12 lead EKG panel\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"39593bef-91f5-42f3-b496-7816a80f2754\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:05:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:56:36.720626+00:00\",\n \"versionId\": \"MTcxMDg3ODE5NjcyMDYyNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\n}"
}
]
},
{
"name": "Observation - EKG",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34534-8\",\n \"display\": \"12 lead EKG panel\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:50:00+00:00\",\n \"issued\": \"2024-03-15T03:05:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - EKG",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34534-8\",\n \"display\": \"12 lead EKG panel\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T02:50:00+00:00\",\n \"issued\": \"2024-03-15T03:05:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\n}",
"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/\"MTcxMDg3ODE5NjcyMDYyNjAwMA\""
},
{
"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/39593bef-91f5-42f3-b496-7816a80f2754/_history/MTcxMDg3ODE5NjcyMDYyNjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:56:36 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:56:36 GMT"
},
{
"key": "Content-Length",
"value": "7080"
},
{
"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": "58277167-70be-4f3d-99a7-a40115befefe"
},
{
"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\": \"34534-8\",\n \"display\": \"12 lead EKG panel\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"426783006\",\n \"display\": \"Electrocardiogram: sinus rhythm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"164889003\",\n \"display\": \"Electrocardiographic atrial fibrillation\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"76388001\",\n \"display\": \"ST segment elevation\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"26141007\",\n \"display\": \"ST segment depression\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"59931005\",\n \"display\": \"Inverted T wave\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T02:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"39593bef-91f5-42f3-b496-7816a80f2754\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:05:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:56:36.720626+00:00\",\n \"versionId\": \"MTcxMDg3ODE5NjcyMDYyNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Hasil pemeriksaan EKG menunjukkan adanya gangguan pada jantung\"\n}"
}
]
},
{
"name": "Procedure - EKG",
"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\": \"89.52\",\n \"display\": \"Electrocardiogram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T02:50:00+00:00\",\n \"end\": \"2024-03-15T03:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - EKG",
"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\": \"89.52\",\n \"display\": \"Electrocardiogram\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T02:50:00+00:00\",\n \"end\": \"2024-03-15T03:00:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\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": "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/5817d109-cc26-4d22-9827-19f8ca3a4750/_history/MTcxMDg3ODM3NjkzNjgxMjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3ODM3NjkzNjgxMjAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 19:59:36 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 19:59:36 GMT"
},
{
"key": "Content-Length",
"value": "3852"
},
{
"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": "8bf8bf32-d214-45c4-ab6c-440b59cf9ccf"
},
{
"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\": \"89.52\",\n \"display\": \"Electrocardiogram\",\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"5817d109-cc26-4d22-9827-19f8ca3a4750\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T19:59:36.936812+00:00\",\n \"versionId\": \"MTcxMDg3ODM3NjkzNjgxMjAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-15T03:00:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/N10000006\"\n }\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Ekokardiografi",
"item": [
{
"name": "Procedure - Ekokardiografi",
"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\": \"37.28\",\n \"display\": \"Intracardial echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T03:05:00+00:00\",\n \"end\": \"2024-03-15T03:15:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - Ekokardiografi",
"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\": \"37.28\",\n \"display\": \"Intracardial echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T03:05:00+00:00\",\n \"end\": \"2024-03-15T03:15:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Procedure/5382aa0e-3c7c-4b0a-8a63-4970f696f133/_history/MTcxMDg3ODQ2NTc3OTMxNjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 20:01:05 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3ODQ2NTc3OTMxNjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 20:01:05 GMT"
},
{
"key": "Content-Length",
"value": "3900"
},
{
"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": "1fd6a040-3bed-407e-a3e5-5b9e78dcec44"
},
{
"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\": \"37.28\",\n \"display\": \"Intracardial echocardiography\",\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"5382aa0e-3c7c-4b0a-8a63-4970f696f133\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T20:01:05.779316+00:00\",\n \"versionId\": \"MTcxMDg3ODQ2NTc3OTMxNjAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-15T03:15:00+00:00\",\n \"start\": \"2024-03-15T03:05:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/N10000006\"\n }\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Ekokardiografi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40701008\",\n \"display\": \"Echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"70822001\",\n \"display\": \"Cardiac ejection fraction, function\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000132\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Konsentrik\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000134\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Eksentrik\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18024-0\",\n \"display\": \"Left atrial Diameter anterior-posterior systole by US.M-mode\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 45,\n \"unit\": \"mm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3545003\",\n \"display\": \"Diastolic dysfunction\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan Ekokardiografi menunjukkan adanya gangguan pada jantung\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Ekokardiografi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40701008\",\n \"display\": \"Echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"70822001\",\n \"display\": \"Cardiac ejection fraction, function\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000132\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Konsentrik\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000134\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Eksentrik\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18024-0\",\n \"display\": \"Left atrial Diameter anterior-posterior systole by US.M-mode\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 45,\n \"unit\": \"mm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3545003\",\n \"display\": \"Diastolic dysfunction\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan Ekokardiografi menunjukkan adanya gangguan pada jantung\"\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": "Tue, 19 Mar 2024 20:15:25 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/47d6ad70-c70d-401f-a155-a07d9ccab689/_history/MTcxMDg3OTMyNTM5NjQ2MTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3OTMyNTM5NjQ2MTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 20:15:25 GMT"
},
{
"key": "Content-Length",
"value": "8384"
},
{
"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": "940e5702-1ace-4e93-971c-819af70b2503"
},
{
"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\": \"40701008\",\n \"display\": \"Echocardiography\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"70822001\",\n \"display\": \"Cardiac ejection fraction, function\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueQuantity\": {\n \"code\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"%\",\n \"value\": 40\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000132\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Konsentrik\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000134\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Eksentrik\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"18024-0\",\n \"display\": \"Left atrial Diameter anterior-posterior systole by US.M-mode\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"valueQuantity\": {\n \"code\": \"mm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mm\",\n \"value\": 45\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"3545003\",\n \"display\": \"Diastolic dysfunction\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"47d6ad70-c70d-401f-a155-a07d9ccab689\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T20:15:25.396461+00:00\",\n \"versionId\": \"MTcxMDg3OTMyNTM5NjQ2MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Hasil pemeriksaan Ekokardiografi menunjukkan adanya gangguan pada jantung\"\n}"
}
]
},
{
"name": "Procedure - Ekokardiografi",
"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\": \"37.28\",\n \"display\": \"Intracardial echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T03:05:00+00:00\",\n \"end\": \"2024-03-15T03:15:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - Ekokardiografi",
"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\": \"37.28\",\n \"display\": \"Intracardial echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T03:05:00+00:00\",\n \"end\": \"2024-03-15T03:15:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Procedure/5382aa0e-3c7c-4b0a-8a63-4970f696f133/_history/MTcxMDg3ODQ2NTc3OTMxNjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 20:01:05 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3ODQ2NTc3OTMxNjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 20:01:05 GMT"
},
{
"key": "Content-Length",
"value": "3900"
},
{
"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": "1fd6a040-3bed-407e-a3e5-5b9e78dcec44"
},
{
"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\": \"37.28\",\n \"display\": \"Intracardial echocardiography\",\n \"system\": \"http://hl7.org/fhir/sid/icd-9-cm\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"5382aa0e-3c7c-4b0a-8a63-4970f696f133\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T20:01:05.779316+00:00\",\n \"versionId\": \"MTcxMDg3ODQ2NTc3OTMxNjAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-15T03:15:00+00:00\",\n \"start\": \"2024-03-15T03:05:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/N10000006\"\n }\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Ekokardiografi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40701008\",\n \"display\": \"Echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"70822001\",\n \"display\": \"Cardiac ejection fraction, function\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000132\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Konsentrik\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000134\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Eksentrik\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18024-0\",\n \"display\": \"Left atrial Diameter anterior-posterior systole by US.M-mode\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 45,\n \"unit\": \"mm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3545003\",\n \"display\": \"Diastolic dysfunction\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan Ekokardiografi menunjukkan adanya gangguan pada jantung\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Ekokardiografi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40701008\",\n \"display\": \"Echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"70822001\",\n \"display\": \"Cardiac ejection fraction, function\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000132\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Konsentrik\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000134\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Eksentrik\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18024-0\",\n \"display\": \"Left atrial Diameter anterior-posterior systole by US.M-mode\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 45,\n \"unit\": \"mm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3545003\",\n \"display\": \"Diastolic dysfunction\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan Ekokardiografi menunjukkan adanya gangguan pada jantung\"\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": "Tue, 19 Mar 2024 20:15:25 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/47d6ad70-c70d-401f-a155-a07d9ccab689/_history/MTcxMDg3OTMyNTM5NjQ2MTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3OTMyNTM5NjQ2MTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 20:15:25 GMT"
},
{
"key": "Content-Length",
"value": "8384"
},
{
"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": "940e5702-1ace-4e93-971c-819af70b2503"
},
{
"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\": \"40701008\",\n \"display\": \"Echocardiography\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"70822001\",\n \"display\": \"Cardiac ejection fraction, function\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueQuantity\": {\n \"code\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"%\",\n \"value\": 40\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000132\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Konsentrik\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000134\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Eksentrik\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"18024-0\",\n \"display\": \"Left atrial Diameter anterior-posterior systole by US.M-mode\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"valueQuantity\": {\n \"code\": \"mm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mm\",\n \"value\": 45\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"3545003\",\n \"display\": \"Diastolic dysfunction\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"47d6ad70-c70d-401f-a155-a07d9ccab689\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T20:15:25.396461+00:00\",\n \"versionId\": \"MTcxMDg3OTMyNTM5NjQ2MTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueString\": \"Hasil pemeriksaan Ekokardiografi menunjukkan adanya gangguan pada jantung\"\n}"
}
]
}
]
}
]
},
{
"name": "08. Diagnosis",
"item": [
{
"name": "Condition - Chronic ischaemic heart disease, unspecified",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Chronic ischaemic heart disease, unspecified",
"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\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13: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/\"MTcxNTY2ODczODQwMzU0NDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/719bcedc-35e6-4e4b-b7fb-aa851de6924a/_history/MTcxNTY2ODczODQwMzU0NDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 06:38:58 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 06:38:58 GMT"
},
{
"key": "content-length",
"value": "803"
},
{
"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": "5e5f6ba0-010b-4145-87f4-2432c04659ca"
},
{
"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\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"719bcedc-35e6-4e4b-b7fb-aa851de6924a\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T06:38:58.403544+00:00\",\n \"versionId\": \"MTcxNTY2ODczODQwMzU0NDAwMA\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Cardiomegaly",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Cardiomegaly",
"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\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13: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": "last-modified",
"value": "Tue, 14 May 2024 06:39:26 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/39f7eecd-e904-431f-8219-36968d865cd9/_history/MTcxNTY2ODc2NjEzMDkyMjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY2ODc2NjEzMDkyMjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 06:39:26 GMT"
},
{
"key": "content-length",
"value": "771"
},
{
"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": "4eb08f19-502c-4797-94a4-18366e1a7f7b"
},
{
"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\": \"I51.7\",\n \"display\": \"Cardiomegaly\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"39f7eecd-e904-431f-8219-36968d865cd9\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T06:39:26.130922+00:00\",\n \"versionId\": \"MTcxNTY2ODc2NjEzMDkyMjAwMA\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Dislipidemia",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"E78.6\",\n \"display\": \"Lipoprotein deficiency\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Dislipidemia",
"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\": \"E78.6\",\n \"display\": \"Lipoprotein deficiency\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13: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": "etag",
"value": "W/\"MTcxNTY2ODgxOTYwNjkyOTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 06:40:19 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/99f208be-f5fb-475f-be30-9300c3f6b6dc/_history/MTcxNTY2ODgxOTYwNjkyOTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 06:40:19 GMT"
},
{
"key": "content-length",
"value": "781"
},
{
"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": "503f8a5b-b306-4014-bf49-0977a54db800"
},
{
"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\": \"E78.6\",\n \"display\": \"Lipoprotein deficiency\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"99f208be-f5fb-475f-be30-9300c3f6b6dc\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T06:40:19.606929+00:00\",\n \"versionId\": \"MTcxNTY2ODgxOTYwNjkyOTAwMA\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "EpisodeOfCare - PATCH Status Active",
"request": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/status\",\r\n \"value\": \"active\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/0/period/end\",\r\n \"value\": \"2024-03-15T03:13:00+00:00\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/1\",\r\n \"value\": {\r\n \"status\": \"active\",\r\n \"period\": {\r\n \"start\": \"2024-03-15T03:13:00+00:00\"\r\n }\r\n }\r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"response": [
{
"name": "EpisodeOfCare - PATCH Status Active",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/status\",\r\n \"value\": \"active\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/0/period/end\",\r\n \"value\": \"2024-03-15T03:13:00+00:00\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/1\",\r\n \"value\": {\r\n \"status\": \"active\",\r\n \"period\": {\r\n \"start\": \"2024-03-15T03:13:00+00:00\"\r\n }\r\n }\r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY2MTE5ODI5OTk3MDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8/_history/MTcxNTY2MTE5ODI5OTk3MDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 04:33:18 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 04:33:18 GMT"
},
{
"key": "content-length",
"value": "515"
},
{
"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": "85b3a341-edfc-4914-b84a-d114d2f49fd5"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T04:33:18.299970+00:00\",\n \"versionId\": \"MTcxNTY2MTE5ODI5OTk3MDAwMA\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n }\n ]\n}"
}
]
},
{
"name": "EpisodeOfCare - GET No Registri Jantung by UUID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8"
}
]
}
},
"response": [
{
"name": "EpisodeOfCare - GET No Registri Jantung by UUID",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNTY2MTE5ODI5OTk3MDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 04:33:18 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 04:35:04 GMT"
},
{
"key": "content-length",
"value": "1156"
},
{
"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": "1b7b8d9a-8e12-4285-a3f0-6e9ebec91ede"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/registry-id/\",\n \"value\": \"CADC20243000000002\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T04:33:18.299970+00:00\",\n \"versionId\": \"MTcxNTY2MTE5ODI5OTk3MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "Condition - Dislipidemia",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"E78.6\",\n \"display\": \"Lipoprotein deficiency\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Dislipidemia",
"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\": \"E78.6\",\n \"display\": \"Lipoprotein deficiency\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13: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": "etag",
"value": "W/\"MTcxNTY2ODgxOTYwNjkyOTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 06:40:19 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/99f208be-f5fb-475f-be30-9300c3f6b6dc/_history/MTcxNTY2ODgxOTYwNjkyOTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 06:40:19 GMT"
},
{
"key": "content-length",
"value": "781"
},
{
"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": "503f8a5b-b306-4014-bf49-0977a54db800"
},
{
"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\": \"E78.6\",\n \"display\": \"Lipoprotein deficiency\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"99f208be-f5fb-475f-be30-9300c3f6b6dc\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T06:40:19.606929+00:00\",\n \"versionId\": \"MTcxNTY2ODgxOTYwNjkyOTAwMA\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Cardiomegaly",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Cardiomegaly",
"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\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13: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": "last-modified",
"value": "Tue, 14 May 2024 06:39:26 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/39f7eecd-e904-431f-8219-36968d865cd9/_history/MTcxNTY2ODc2NjEzMDkyMjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY2ODc2NjEzMDkyMjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 06:39:26 GMT"
},
{
"key": "content-length",
"value": "771"
},
{
"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": "4eb08f19-502c-4797-94a4-18366e1a7f7b"
},
{
"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\": \"I51.7\",\n \"display\": \"Cardiomegaly\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"39f7eecd-e904-431f-8219-36968d865cd9\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T06:39:26.130922+00:00\",\n \"versionId\": \"MTcxNTY2ODc2NjEzMDkyMjAwMA\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Chronic ischaemic heart disease, unspecified",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Chronic ischaemic heart disease, unspecified",
"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\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13: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/\"MTcxNTY2ODczODQwMzU0NDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/719bcedc-35e6-4e4b-b7fb-aa851de6924a/_history/MTcxNTY2ODczODQwMzU0NDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 06:38:58 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 06:38:58 GMT"
},
{
"key": "content-length",
"value": "803"
},
{
"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": "5e5f6ba0-010b-4145-87f4-2432c04659ca"
},
{
"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\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"719bcedc-35e6-4e4b-b7fb-aa851de6924a\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T06:38:58.403544+00:00\",\n \"versionId\": \"MTcxNTY2ODczODQwMzU0NDAwMA\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "EpisodeOfCare - GET No Registri Jantung by UUID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", data.id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8"
}
]
}
},
"response": [
{
"name": "EpisodeOfCare - GET No Registri Jantung by UUID",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxNTY2MTE5ODI5OTk3MDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 04:33:18 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 04:35:04 GMT"
},
{
"key": "content-length",
"value": "1156"
},
{
"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": "1b7b8d9a-8e12-4285-a3f0-6e9ebec91ede"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/registry-id/\",\n \"value\": \"CADC20243000000002\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T04:33:18.299970+00:00\",\n \"versionId\": \"MTcxNTY2MTE5ODI5OTk3MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "EpisodeOfCare - PATCH Status Active",
"request": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/status\",\r\n \"value\": \"active\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/0/period/end\",\r\n \"value\": \"2024-03-15T03:13:00+00:00\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/1\",\r\n \"value\": {\r\n \"status\": \"active\",\r\n \"period\": {\r\n \"start\": \"2024-03-15T03:13:00+00:00\"\r\n }\r\n }\r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"response": [
{
"name": "EpisodeOfCare - PATCH Status Active",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "application/json-patch+json"
}
],
"body": {
"mode": "raw",
"raw": "[\r\n {\r\n \"op\": \"replace\",\r\n \"path\": \"/status\",\r\n \"value\": \"active\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/0/period/end\",\r\n \"value\": \"2024-03-15T03:13:00+00:00\"\r\n },\r\n {\r\n \"op\": \"add\",\r\n \"path\": \"/statusHistory/1\",\r\n \"value\": {\r\n \"status\": \"active\",\r\n \"period\": {\r\n \"start\": \"2024-03-15T03:13:00+00:00\"\r\n }\r\n }\r\n }\r\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/EpisodeOfCare/:id",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare",
":id"
],
"variable": [
{
"key": "id",
"value": "{{EpisodeOfCare_id}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY2MTE5ODI5OTk3MDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8/_history/MTcxNTY2MTE5ODI5OTk3MDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 04:33:18 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 04:33:18 GMT"
},
{
"key": "content-length",
"value": "515"
},
{
"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": "85b3a341-edfc-4914-b84a-d114d2f49fd5"
},
{
"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 \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T04:33:18.299970+00:00\",\n \"versionId\": \"MTcxNTY2MTE5ODI5OTk3MDAwMA\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n }\n ]\n}"
}
]
}
]
},
{
"name": "09. Tatalaksana",
"item": [
{
"name": "Edukasi",
"item": [
{
"name": "Procedure - Edukasi",
"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\": \"409073007\",\n \"display\": \"Education\"\n }\n ],\n \"text\": \"Education\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"410123007\",\n \"display\": \"Medication regimen compliance education\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T03:15:00+00:00\",\n \"end\": \"2024-03-15T03:22:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - Edukasi",
"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\": \"409073007\",\n \"display\": \"Education\"\n }\n ],\n \"text\": \"Education\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"410123007\",\n \"display\": \"Medication regimen compliance education\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T03:15:00+00:00\",\n \"end\": \"2024-03-15T03:22:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\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": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 20:49:07 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg4MTM0NzEzMDY0NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Procedure/5c6e1382-c9fe-462a-a22f-bcb393ea4b52/_history/MTcxMDg4MTM0NzEzMDY0NzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 20:49:07 GMT"
},
{
"key": "Content-Length",
"value": "3932"
},
{
"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": "6fbca69e-8024-4abe-b9cc-808d3d9827f8"
},
{
"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\": \"409073007\",\n \"display\": \"Education\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Education\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"410123007\",\n \"display\": \"Medication regimen compliance education\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"5c6e1382-c9fe-462a-a22f-bcb393ea4b52\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T20:49:07.130647+00:00\",\n \"versionId\": \"MTcxMDg4MTM0NzEzMDY0NzAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-15T03:22:00+00:00\",\n \"start\": \"2024-03-15T03:15:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n }\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Procedure - Edukasi",
"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\": \"409073007\",\n \"display\": \"Education\"\n }\n ],\n \"text\": \"Education\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"410123007\",\n \"display\": \"Medication regimen compliance education\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T03:15:00+00:00\",\n \"end\": \"2024-03-15T03:22:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Procedure",
"host": [
"{{base_url}}"
],
"path": [
"Procedure"
]
}
},
"response": [
{
"name": "Procedure - Edukasi",
"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\": \"409073007\",\n \"display\": \"Education\"\n }\n ],\n \"text\": \"Education\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"410123007\",\n \"display\": \"Medication regimen compliance education\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T03:15:00+00:00\",\n \"end\": \"2024-03-15T03:22:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\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": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 20:49:07 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg4MTM0NzEzMDY0NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Procedure/5c6e1382-c9fe-462a-a22f-bcb393ea4b52/_history/MTcxMDg4MTM0NzEzMDY0NzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 20:49:07 GMT"
},
{
"key": "Content-Length",
"value": "3932"
},
{
"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": "6fbca69e-8024-4abe-b9cc-808d3d9827f8"
},
{
"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\": \"409073007\",\n \"display\": \"Education\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Education\"\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"410123007\",\n \"display\": \"Medication regimen compliance education\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"5c6e1382-c9fe-462a-a22f-bcb393ea4b52\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T20:49:07.130647+00:00\",\n \"versionId\": \"MTcxMDg4MTM0NzEzMDY0NzAwMA\"\n },\n \"performedPeriod\": {\n \"end\": \"2024-03-15T03:22:00+00:00\",\n \"start\": \"2024-03-15T03:15:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n }\n }\n ],\n \"resourceType\": \"Procedure\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Obat",
"item": [
{
"name": "Peresepan Obat",
"item": [
{
"name": "Medication - Buat Obat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Medication_ForRequest\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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\": \"123456788\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"response": [
{
"name": "Medication - Buat Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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\": \"123456788\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 21:39:29 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg4NDM2OTIxMDM4NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Medication/a2fc3aa0-827e-46cc-9488-430d9a871961/_history/MTcxMDg4NDM2OTIxMDM4NzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 21:39:29 GMT"
},
{
"key": "Content-Length",
"value": "6260"
},
{
"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": "a6133302-9126-40b6-ae91-fb261ae0f2c6"
},
{
"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\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"a2fc3aa0-827e-46cc-9488-430d9a871961\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000002\",\n \"use\": \"official\",\n \"value\": \"123456788\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 1\n },\n \"numerator\": {\n \"code\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"value\": 5\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T21:39:29.210387+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\n ],\n \"versionId\": \"MTcxMDg4NDM2OTIxMDM4NzAwMA\"\n },\n \"resourceType\": \"Medication\",\n \"status\": \"active\"\n}"
}
]
},
{
"name": "MedicationRequest - Resep Obat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"MedicationRequest_uuid\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationRequest\",\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 \"intent\": \"order\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n }\n ],\n \"priority\": \"routine\",\n \"medicationReference\": {\n \"reference\": \"Medication/a2fc3aa0-827e-46cc-9488-430d9a871961\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authoredOn\": \"2024-03-15T03:23:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\",\n \"code\": \"continuous\",\n \"display\": \"Continuing long term therapy\"\n }\n ]\n },\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ],\n \"dispenseRequest\": {\n \"dispenseInterval\": {\n \"value\": 1,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"validityPeriod\": {\n \"start\": \"2024-03-15T03:23:00+00:00\",\n \"end\": \"2024-04-15T03:20:00+00:00\"\n },\n \"numberOfRepeatsAllowed\": 0,\n \"quantity\": {\n \"value\": 30,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"expectedSupplyDuration\": {\n \"value\": 30,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"performer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationRequest",
"host": [
"{{base_url}}"
],
"path": [
"MedicationRequest"
]
}
},
"response": [
{
"name": "MedicationRequest - Resep Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationRequest\",\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 \"intent\": \"order\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n }\n ],\n \"priority\": \"routine\",\n \"medicationReference\": {\n \"reference\": \"Medication/a2fc3aa0-827e-46cc-9488-430d9a871961\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authoredOn\": \"2024-03-15T03:23:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\",\n \"code\": \"continuous\",\n \"display\": \"Continuing long term therapy\"\n }\n ]\n },\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ],\n \"dispenseRequest\": {\n \"dispenseInterval\": {\n \"value\": 1,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"validityPeriod\": {\n \"start\": \"2024-03-15T03:23:00+00:00\",\n \"end\": \"2024-04-15T03:20:00+00:00\"\n },\n \"numberOfRepeatsAllowed\": 0,\n \"quantity\": {\n \"value\": 30,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"expectedSupplyDuration\": {\n \"value\": 30,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"performer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\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": "last-modified",
"value": "Tue, 19 Mar 2024 21:43:30 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/MedicationRequest/c7a0c2f7-776e-4ad9-8164-7782e193ccaa/_history/MTcxMDg4NDYxMDQyMjAwMzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg4NDYxMDQyMjAwMzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 21:43:30 GMT"
},
{
"key": "Content-Length",
"value": "10978"
},
{
"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": "5c0d98a7-6d5c-4056-9aa3-bb028f632295"
},
{
"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\": \"2024-03-15T03:23: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 \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"code\": \"continuous\",\n \"display\": \"Continuing long term 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 \"expectedSupplyDuration\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 30\n },\n \"numberOfRepeatsAllowed\": 0,\n \"performer\": {\n \"reference\": \"Organization/10000002\"\n },\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 30\n },\n \"validityPeriod\": {\n \"end\": \"2024-04-15T03:20:00+00:00\",\n \"start\": \"2024-03-15T03:23:00+00:00\"\n }\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\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 \"text\": \"1 tablet per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c7a0c2f7-776e-4ad9-8164-7782e193ccaa\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000002\",\n \"use\": \"official\",\n \"value\": \"123456788\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000002\",\n \"use\": \"official\",\n \"value\": \"123456788-1\"\n }\n ],\n \"intent\": \"order\",\n \"medicationReference\": {\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\n \"reference\": \"Medication/a2fc3aa0-827e-46cc-9488-430d9a871961\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T21:43:30.422003+00:00\",\n \"versionId\": \"MTcxMDg4NDYxMDQyMjAwMzAwMA\"\n },\n \"priority\": \"routine\",\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"MedicationRequest\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "MedicationRequest - Resep Obat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"MedicationRequest_uuid\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationRequest\",\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 \"intent\": \"order\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n }\n ],\n \"priority\": \"routine\",\n \"medicationReference\": {\n \"reference\": \"Medication/a2fc3aa0-827e-46cc-9488-430d9a871961\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authoredOn\": \"2024-03-15T03:23:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\",\n \"code\": \"continuous\",\n \"display\": \"Continuing long term therapy\"\n }\n ]\n },\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ],\n \"dispenseRequest\": {\n \"dispenseInterval\": {\n \"value\": 1,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"validityPeriod\": {\n \"start\": \"2024-03-15T03:23:00+00:00\",\n \"end\": \"2024-04-15T03:20:00+00:00\"\n },\n \"numberOfRepeatsAllowed\": 0,\n \"quantity\": {\n \"value\": 30,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"expectedSupplyDuration\": {\n \"value\": 30,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"performer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationRequest",
"host": [
"{{base_url}}"
],
"path": [
"MedicationRequest"
]
}
},
"response": [
{
"name": "MedicationRequest - Resep Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationRequest\",\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 \"intent\": \"order\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n }\n ],\n \"priority\": \"routine\",\n \"medicationReference\": {\n \"reference\": \"Medication/a2fc3aa0-827e-46cc-9488-430d9a871961\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authoredOn\": \"2024-03-15T03:23:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\",\n \"code\": \"continuous\",\n \"display\": \"Continuing long term therapy\"\n }\n ]\n },\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ],\n \"dispenseRequest\": {\n \"dispenseInterval\": {\n \"value\": 1,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"validityPeriod\": {\n \"start\": \"2024-03-15T03:23:00+00:00\",\n \"end\": \"2024-04-15T03:20:00+00:00\"\n },\n \"numberOfRepeatsAllowed\": 0,\n \"quantity\": {\n \"value\": 30,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"expectedSupplyDuration\": {\n \"value\": 30,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"performer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\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": "last-modified",
"value": "Tue, 19 Mar 2024 21:43:30 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/MedicationRequest/c7a0c2f7-776e-4ad9-8164-7782e193ccaa/_history/MTcxMDg4NDYxMDQyMjAwMzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDg4NDYxMDQyMjAwMzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 21:43:30 GMT"
},
{
"key": "Content-Length",
"value": "10978"
},
{
"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": "5c0d98a7-6d5c-4056-9aa3-bb028f632295"
},
{
"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\": \"2024-03-15T03:23: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 \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"code\": \"continuous\",\n \"display\": \"Continuing long term 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 \"expectedSupplyDuration\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 30\n },\n \"numberOfRepeatsAllowed\": 0,\n \"performer\": {\n \"reference\": \"Organization/10000002\"\n },\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 30\n },\n \"validityPeriod\": {\n \"end\": \"2024-04-15T03:20:00+00:00\",\n \"start\": \"2024-03-15T03:23:00+00:00\"\n }\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\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 \"text\": \"1 tablet per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c7a0c2f7-776e-4ad9-8164-7782e193ccaa\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000002\",\n \"use\": \"official\",\n \"value\": \"123456788\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000002\",\n \"use\": \"official\",\n \"value\": \"123456788-1\"\n }\n ],\n \"intent\": \"order\",\n \"medicationReference\": {\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\n \"reference\": \"Medication/a2fc3aa0-827e-46cc-9488-430d9a871961\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T21:43:30.422003+00:00\",\n \"versionId\": \"MTcxMDg4NDYxMDQyMjAwMzAwMA\"\n },\n \"priority\": \"routine\",\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"MedicationRequest\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Medication - Buat Obat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Medication_ForRequest\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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\": \"123456788\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"response": [
{
"name": "Medication - Buat Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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\": \"123456788\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 21:39:29 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg4NDM2OTIxMDM4NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Medication/a2fc3aa0-827e-46cc-9488-430d9a871961/_history/MTcxMDg4NDM2OTIxMDM4NzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 21:39:29 GMT"
},
{
"key": "Content-Length",
"value": "6260"
},
{
"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": "a6133302-9126-40b6-ae91-fb261ae0f2c6"
},
{
"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\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"a2fc3aa0-827e-46cc-9488-430d9a871961\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000002\",\n \"use\": \"official\",\n \"value\": \"123456788\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 1\n },\n \"numerator\": {\n \"code\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"value\": 5\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T21:39:29.210387+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\n ],\n \"versionId\": \"MTcxMDg4NDM2OTIxMDM4NzAwMA\"\n },\n \"resourceType\": \"Medication\",\n \"status\": \"active\"\n}"
}
]
}
]
},
{
"name": "Pengkajian Resep",
"item": [
{
"name": "QuestionnaireResponse - Pengkajian Resep",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-08-31T03:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Apoteker A\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah tanggal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"text\": \"Persyaratan Farmasetik\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah stabilitas obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"3\",\n \"text\": \"Persyaratan Klinis\",\n \"item\": [\n {\n \"linkId\": \"3.1\",\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"3.2\",\n \"text\": \"Apakah terdapat duplikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.3\",\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.4\",\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.5\",\n \"text\": \"Apakah terdapat dampak interaksi obat?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n }\n ]\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": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-08-31T03:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Apoteker A\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah tanggal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"text\": \"Persyaratan Farmasetik\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah stabilitas obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"3\",\n \"text\": \"Persyaratan Klinis\",\n \"item\": [\n {\n \"linkId\": \"3.1\",\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"3.2\",\n \"text\": \"Apakah terdapat duplikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.3\",\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.4\",\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.5\",\n \"text\": \"Apakah terdapat dampak interaksi obat?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:12:26 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/QuestionnaireResponse/94f3fe45-efb5-45d7-a0a3-0a3a9bb082a2/_history/MTcxNTY1NjM0NjcwNzcxOTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NjM0NjcwNzcxOTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:12:26 GMT"
},
{
"key": "content-length",
"value": "3191"
},
{
"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": "7ee79568-2c2f-4f66-a33a-decc204cb921"
},
{
"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/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"94f3fe45-efb5-45d7-a0a3-0a3a9bb082a2\",\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 \"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 \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:12:26.707719+00:00\",\n \"versionId\": \"MTcxNTY1NjM0NjcwNzcxOTAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "QuestionnaireResponse - Pengkajian Resep",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-08-31T03:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Apoteker A\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah tanggal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"text\": \"Persyaratan Farmasetik\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah stabilitas obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"3\",\n \"text\": \"Persyaratan Klinis\",\n \"item\": [\n {\n \"linkId\": \"3.1\",\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"3.2\",\n \"text\": \"Apakah terdapat duplikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.3\",\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.4\",\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.5\",\n \"text\": \"Apakah terdapat dampak interaksi obat?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n }\n ]\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": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-08-31T03:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Apoteker A\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah tanggal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"text\": \"Persyaratan Farmasetik\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah stabilitas obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"3\",\n \"text\": \"Persyaratan Klinis\",\n \"item\": [\n {\n \"linkId\": \"3.1\",\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"3.2\",\n \"text\": \"Apakah terdapat duplikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.3\",\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.4\",\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.5\",\n \"text\": \"Apakah terdapat dampak interaksi obat?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 14 May 2024 03:12:26 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/QuestionnaireResponse/94f3fe45-efb5-45d7-a0a3-0a3a9bb082a2/_history/MTcxNTY1NjM0NjcwNzcxOTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NjM0NjcwNzcxOTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 03:12:26 GMT"
},
{
"key": "content-length",
"value": "3191"
},
{
"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": "7ee79568-2c2f-4f66-a33a-decc204cb921"
},
{
"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/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"94f3fe45-efb5-45d7-a0a3-0a3a9bb082a2\",\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 \"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 \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:12:26.707719+00:00\",\n \"versionId\": \"MTcxNTY1NjM0NjcwNzcxOTAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Pengeluaran Obat",
"item": [
{
"name": "Medication - Buat Obat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Medication_ForDispense\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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\": \"123456797\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"response": [
{
"name": "Medication - Buat Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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\": \"123456797\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 21:46:10 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg4NDc3MDI4NTM5NDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Medication/9a00fdfd-3f27-4b24-ac9b-67becc888cb2/_history/MTcxMDg4NDc3MDI4NTM5NDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 21:46:10 GMT"
},
{
"key": "Content-Length",
"value": "6260"
},
{
"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": "f4aa4e9f-67b5-4ae8-bef0-b3c015b67588"
},
{
"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\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"9a00fdfd-3f27-4b24-ac9b-67becc888cb2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000002\",\n \"use\": \"official\",\n \"value\": \"123456797\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 1\n },\n \"numerator\": {\n \"code\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"value\": 5\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T21:46:10.285394+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\n ],\n \"versionId\": \"MTcxMDg4NDc3MDI4NTM5NDAwMA\"\n },\n \"resourceType\": \"Medication\",\n \"status\": \"active\"\n}"
}
]
},
{
"name": "MedicationDispense - Resep Obat",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationDispense\",\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\": \"Medication/9a00fdfd-3f27-4b24-ac9b-67becc888cb2\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"John Miller\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\",\n \"display\": \"Apotek RS SATUSEHAT\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/c7a0c2f7-776e-4ad9-8164-7782e193ccaa\"\n }\n ],\n \"quantity\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\",\n \"value\": 30\n },\n \"daysSupply\": {\n \"value\": 30,\n \"unit\": \"Day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"whenPrepared\": \"2024-03-15T03:24:00+00:00\",\n \"whenHandedOver\": \"2024-03-15T03:30:00+00:00\",\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
]
}
},
"response": [
{
"name": "MedicationDispense - Resep Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationDispense\",\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\": \"Medication/9a00fdfd-3f27-4b24-ac9b-67becc888cb2\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"John Miller\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\",\n \"display\": \"Apotek RS SATUSEHAT\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/c7a0c2f7-776e-4ad9-8164-7782e193ccaa\"\n }\n ],\n \"quantity\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\",\n \"value\": 30\n },\n \"daysSupply\": {\n \"value\": 30,\n \"unit\": \"Day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"whenPrepared\": \"2024-03-15T03:24:00+00:00\",\n \"whenHandedOver\": \"2024-03-15T03:30:00+00:00\",\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 21:47:22 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg4NDg0MjIzMTYzNjAwMA\""
},
{
"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/MedicationDispense/305fc77c-dc70-4aaa-816b-35f5043baec6/_history/MTcxMDg4NDg0MjIzMTYzNjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 21:47:22 GMT"
},
{
"key": "Content-Length",
"value": "9744"
},
{
"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": "3c3c328e-5ce6-466d-bb0c-c1d06474d9ce"
},
{
"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/c7a0c2f7-776e-4ad9-8164-7782e193ccaa\"\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 \"context\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"Day\",\n \"value\": 30\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\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 \"text\": \"1 tablet per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"id\": \"305fc77c-dc70-4aaa-816b-35f5043baec6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000002\",\n \"use\": \"official\",\n \"value\": \"123456788\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000002\",\n \"use\": \"official\",\n \"value\": \"123456788-1\"\n }\n ],\n \"location\": {\n \"display\": \"Apotek RS SATUSEHAT\",\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\"\n },\n \"medicationReference\": {\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\n \"reference\": \"Medication/9a00fdfd-3f27-4b24-ac9b-67becc888cb2\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T21:47:22.231636+00:00\",\n \"versionId\": \"MTcxMDg4NDg0MjIzMTYzNjAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"John Miller\",\n \"reference\": \"Practitioner/N10000003\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"value\": 30\n },\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2024-03-15T03:30:00+00:00\",\n \"whenPrepared\": \"2024-03-15T03:24:00+00:00\"\n}"
}
]
},
{
"name": "MedicationDispense - Resep Obat",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationDispense\",\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\": \"Medication/9a00fdfd-3f27-4b24-ac9b-67becc888cb2\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"John Miller\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\",\n \"display\": \"Apotek RS SATUSEHAT\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/c7a0c2f7-776e-4ad9-8164-7782e193ccaa\"\n }\n ],\n \"quantity\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\",\n \"value\": 30\n },\n \"daysSupply\": {\n \"value\": 30,\n \"unit\": \"Day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"whenPrepared\": \"2024-03-15T03:24:00+00:00\",\n \"whenHandedOver\": \"2024-03-15T03:30:00+00:00\",\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
]
}
},
"response": [
{
"name": "MedicationDispense - Resep Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationDispense\",\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\": \"Medication/9a00fdfd-3f27-4b24-ac9b-67becc888cb2\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"John Miller\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\",\n \"display\": \"Apotek RS SATUSEHAT\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/c7a0c2f7-776e-4ad9-8164-7782e193ccaa\"\n }\n ],\n \"quantity\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\",\n \"value\": 30\n },\n \"daysSupply\": {\n \"value\": 30,\n \"unit\": \"Day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"whenPrepared\": \"2024-03-15T03:24:00+00:00\",\n \"whenHandedOver\": \"2024-03-15T03:30:00+00:00\",\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 21:47:22 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg4NDg0MjIzMTYzNjAwMA\""
},
{
"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/MedicationDispense/305fc77c-dc70-4aaa-816b-35f5043baec6/_history/MTcxMDg4NDg0MjIzMTYzNjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 21:47:22 GMT"
},
{
"key": "Content-Length",
"value": "9744"
},
{
"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": "3c3c328e-5ce6-466d-bb0c-c1d06474d9ce"
},
{
"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/c7a0c2f7-776e-4ad9-8164-7782e193ccaa\"\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 \"context\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"Day\",\n \"value\": 30\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\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 \"text\": \"1 tablet per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"id\": \"305fc77c-dc70-4aaa-816b-35f5043baec6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000002\",\n \"use\": \"official\",\n \"value\": \"123456788\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000002\",\n \"use\": \"official\",\n \"value\": \"123456788-1\"\n }\n ],\n \"location\": {\n \"display\": \"Apotek RS SATUSEHAT\",\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\"\n },\n \"medicationReference\": {\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\n \"reference\": \"Medication/9a00fdfd-3f27-4b24-ac9b-67becc888cb2\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T21:47:22.231636+00:00\",\n \"versionId\": \"MTcxMDg4NDg0MjIzMTYzNjAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"John Miller\",\n \"reference\": \"Practitioner/N10000003\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"value\": 30\n },\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2024-03-15T03:30:00+00:00\",\n \"whenPrepared\": \"2024-03-15T03:24:00+00:00\"\n}"
}
]
},
{
"name": "Medication - Buat Obat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Medication_ForDispense\", data.id)"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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\": \"123456797\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"response": [
{
"name": "Medication - Buat Obat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\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\": \"123456797\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Medication",
"host": [
"{{base_url}}"
],
"path": [
"Medication"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 21:46:10 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg4NDc3MDI4NTM5NDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Medication/9a00fdfd-3f27-4b24-ac9b-67becc888cb2/_history/MTcxMDg4NDc3MDI4NTM5NDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 21:46:10 GMT"
},
{
"key": "Content-Length",
"value": "6260"
},
{
"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": "f4aa4e9f-67b5-4ae8-bef0-b3c015b67588"
},
{
"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\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"9a00fdfd-3f27-4b24-ac9b-67becc888cb2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000002\",\n \"use\": \"official\",\n \"value\": \"123456797\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 1\n },\n \"numerator\": {\n \"code\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"value\": 5\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T21:46:10.285394+00:00\",\n \"profile\": [\n \"https://fhir.kemkes.go.id/r4/StructureDefinition/Medication\"\n ],\n \"versionId\": \"MTcxMDg4NDc3MDI4NTM5NDAwMA\"\n },\n \"resourceType\": \"Medication\",\n \"status\": \"active\"\n}"
}
]
}
]
}
]
}
]
},
{
"name": "10. Prognosis",
"item": [
{
"name": "ClinicalImpression - Prognosis Bad",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"ClinicalImpression\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000124\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"Ibu Jane Smith Terdiagnosis PJI Stabil\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:30:00+00:00\",\n \"date\": \"2024-03-15T03:30:00+00:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/{{Diagnosis_Utama}}\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/39593bef-91f5-42f3-b496-7816a80f2754\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Ekokardiografi\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/47d6ad70-c70d-401f-a155-a07d9ccab689\"\n }\n ]\n }\n ],\n \"summary\": \"Prognosis PJI Stabil, Cardiomegaly, dan Dislipidemia\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/2643feb7-c89c-463c-8727-b6ba22d23aaa\"\n }\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"170969009\",\n \"display\": \"Prognosis bad\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ClinicalImpression",
"host": [
"{{base_url}}"
],
"path": [
"ClinicalImpression"
]
}
},
"response": [
{
"name": "ClinicalImpression - Prognosis Bad",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"ClinicalImpression\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000124\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"Ibu Jane Smith Terdiagnosis PJI Stabil\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:30:00+00:00\",\n \"date\": \"2024-03-15T03:30:00+00:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/{{Diagnosis_Utama}}\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/39593bef-91f5-42f3-b496-7816a80f2754\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Ekokardiografi\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/47d6ad70-c70d-401f-a155-a07d9ccab689\"\n }\n ]\n }\n ],\n \"summary\": \"Prognosis PJI Stabil, Cardiomegaly, dan Dislipidemia\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/2643feb7-c89c-463c-8727-b6ba22d23aaa\"\n }\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"170969009\",\n \"display\": \"Prognosis bad\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ClinicalImpression",
"host": [
"{{base_url}}"
],
"path": [
"ClinicalImpression"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxOTIxNDI3MjY0Mzc0NTAwMA\""
},
{
"key": "last-modified",
"value": "Mon, 24 Jun 2024 07:31:12 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ClinicalImpression/d1cb7ca3-b345-4a68-8e81-363d0ff0cd76/_history/MTcxOTIxNDI3MjY0Mzc0NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Mon, 24 Jun 2024 07:31:12 GMT"
},
{
"key": "content-length",
"value": "1438"
},
{
"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": "943ada2a-4244-4466-982f-1842ab065d86"
},
{
"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 \"assessor\": {\n \"reference\": \"Practitioner/N10000006\"\n },\n \"date\": \"2024-03-15T03:30:00+00:00\",\n \"description\": \"Ibu Jane Smith Terdiagnosis PJI Stabil\",\n \"effectiveDateTime\": \"2024-03-15T03:30:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/2643feb7-c89c-463c-8727-b6ba22d23aaa\"\n }\n }\n ],\n \"id\": \"d1cb7ca3-b345-4a68-8e81-363d0ff0cd76\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/10000002\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000124\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/39593bef-91f5-42f3-b496-7816a80f2754\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Ekokardiografi\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/47d6ad70-c70d-401f-a155-a07d9ccab689\"\n }\n ]\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-06-24T07:31:12.643745+00:00\",\n \"versionId\": \"MTcxOTIxNDI3MjY0Mzc0NTAwMA\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/719bcedc-35e6-4e4b-b7fb-aa851de6924a\"\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"code\": \"170969009\",\n \"display\": \"Prognosis bad\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"resourceType\": \"ClinicalImpression\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"summary\": \"Prognosis PJI Stabil, Cardiomegaly, dan Dislipidemia\"\n}"
}
]
},
{
"name": "ClinicalImpression - Prognosis Bad",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"ClinicalImpression\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000124\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"Ibu Jane Smith Terdiagnosis PJI Stabil\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:30:00+00:00\",\n \"date\": \"2024-03-15T03:30:00+00:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/{{Diagnosis_Utama}}\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/39593bef-91f5-42f3-b496-7816a80f2754\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Ekokardiografi\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/47d6ad70-c70d-401f-a155-a07d9ccab689\"\n }\n ]\n }\n ],\n \"summary\": \"Prognosis PJI Stabil, Cardiomegaly, dan Dislipidemia\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/2643feb7-c89c-463c-8727-b6ba22d23aaa\"\n }\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"170969009\",\n \"display\": \"Prognosis bad\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ClinicalImpression",
"host": [
"{{base_url}}"
],
"path": [
"ClinicalImpression"
]
}
},
"response": [
{
"name": "ClinicalImpression - Prognosis Bad",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"ClinicalImpression\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000124\"\n }\n ],\n \"status\": \"completed\",\n \"description\": \"Ibu Jane Smith Terdiagnosis PJI Stabil\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:30:00+00:00\",\n \"date\": \"2024-03-15T03:30:00+00:00\",\n \"assessor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/{{Diagnosis_Utama}}\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/39593bef-91f5-42f3-b496-7816a80f2754\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Ekokardiografi\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/47d6ad70-c70d-401f-a155-a07d9ccab689\"\n }\n ]\n }\n ],\n \"summary\": \"Prognosis PJI Stabil, Cardiomegaly, dan Dislipidemia\",\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/2643feb7-c89c-463c-8727-b6ba22d23aaa\"\n }\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"170969009\",\n \"display\": \"Prognosis bad\"\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ClinicalImpression",
"host": [
"{{base_url}}"
],
"path": [
"ClinicalImpression"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxOTIxNDI3MjY0Mzc0NTAwMA\""
},
{
"key": "last-modified",
"value": "Mon, 24 Jun 2024 07:31:12 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ClinicalImpression/d1cb7ca3-b345-4a68-8e81-363d0ff0cd76/_history/MTcxOTIxNDI3MjY0Mzc0NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Mon, 24 Jun 2024 07:31:12 GMT"
},
{
"key": "content-length",
"value": "1438"
},
{
"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": "943ada2a-4244-4466-982f-1842ab065d86"
},
{
"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 \"assessor\": {\n \"reference\": \"Practitioner/N10000006\"\n },\n \"date\": \"2024-03-15T03:30:00+00:00\",\n \"description\": \"Ibu Jane Smith Terdiagnosis PJI Stabil\",\n \"effectiveDateTime\": \"2024-03-15T03:30:00+00:00\",\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"finding\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ]\n },\n \"itemReference\": {\n \"reference\": \"Condition/2643feb7-c89c-463c-8727-b6ba22d23aaa\"\n }\n }\n ],\n \"id\": \"d1cb7ca3-b345-4a68-8e81-363d0ff0cd76\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/clinicalimpression/10000002\",\n \"use\": \"official\",\n \"value\": \"Prognosis_000124\"\n }\n ],\n \"investigation\": [\n {\n \"code\": {\n \"text\": \"Elektrokardiogram\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/39593bef-91f5-42f3-b496-7816a80f2754\"\n }\n ]\n },\n {\n \"code\": {\n \"text\": \"Ekokardiografi\"\n },\n \"item\": [\n {\n \"reference\": \"Observation/47d6ad70-c70d-401f-a155-a07d9ccab689\"\n }\n ]\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-06-24T07:31:12.643745+00:00\",\n \"versionId\": \"MTcxOTIxNDI3MjY0Mzc0NTAwMA\"\n },\n \"problem\": [\n {\n \"reference\": \"Condition/719bcedc-35e6-4e4b-b7fb-aa851de6924a\"\n }\n ],\n \"prognosisCodeableConcept\": [\n {\n \"coding\": [\n {\n \"code\": \"170969009\",\n \"display\": \"Prognosis bad\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"resourceType\": \"ClinicalImpression\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"summary\": \"Prognosis PJI Stabil, Cardiomegaly, dan Dislipidemia\"\n}"
}
]
}
]
},
{
"name": "11. Rencana Tindak Lanjut",
"item": [
{
"name": "ServiceRequest - Kontrol 1 minggu",
"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\": \"000013\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"stat\",\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 dalam 1 minggu kedepan\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-22T03:30:00+00:00\",\n \"authoredOn\": \"2024-03-15T03:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ],\n \"text\": \"Hipertofi Ventrikular Kiri / Cardiomegaly\"\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 \"patientInstruction\": \"Kontrol dalam 1 minggu kedepan. Dalam keadaan darurat dapat menghubungi hotline Fasyankes di nomor 1500567\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Kontrol 1 minggu",
"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\": \"000013\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"stat\",\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 dalam 1 minggu kedepan\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-22T03:30:00+00:00\",\n \"authoredOn\": \"2024-03-15T03:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ],\n \"text\": \"Hipertofi Ventrikular Kiri / Cardiomegaly\"\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 \"patientInstruction\": \"Kontrol dalam 1 minggu kedepan. Dalam keadaan darurat dapat menghubungi hotline Fasyankes di nomor 1500567\"\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": "Tue, 25 Jun 2024 01:01:19 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/e12155c6-8f13-4c3e-a416-ef99ef6278f3/_history/MTcxOTI3NzI3OTQwNzMxNTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxOTI3NzI3OTQwNzMxNTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 25 Jun 2024 01:01:19 GMT"
},
{
"key": "content-length",
"value": "1456"
},
{
"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": "a1f9605f-a52c-4541-9100-f86f676f4180"
},
{
"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\": \"2024-03-15T03:30: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 dalam 1 minggu kedepan\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"e12155c6-8f13-4c3e-a416-ef99ef6278f3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000013\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/referral-number\",\n \"value\": \"2000000172\"\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 \"meta\": {\n \"lastUpdated\": \"2024-06-25T01:01:19.407315+00:00\",\n \"versionId\": \"MTcxOTI3NzI3OTQwNzMxNTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-22T03:30:00+00:00\",\n \"patientInstruction\": \"Kontrol dalam 1 minggu kedepan. Dalam keadaan darurat dapat menghubungi hotline Fasyankes di nomor 1500567\",\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"stat\",\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ],\n \"text\": \"Hipertofi Ventrikular Kiri / Cardiomegaly\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Kontrol 1 minggu",
"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\": \"000013\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"stat\",\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 dalam 1 minggu kedepan\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-22T03:30:00+00:00\",\n \"authoredOn\": \"2024-03-15T03:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ],\n \"text\": \"Hipertofi Ventrikular Kiri / Cardiomegaly\"\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 \"patientInstruction\": \"Kontrol dalam 1 minggu kedepan. Dalam keadaan darurat dapat menghubungi hotline Fasyankes di nomor 1500567\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Kontrol 1 minggu",
"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\": \"000013\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"stat\",\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 dalam 1 minggu kedepan\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-22T03:30:00+00:00\",\n \"authoredOn\": \"2024-03-15T03:30:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ],\n \"text\": \"Hipertofi Ventrikular Kiri / Cardiomegaly\"\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 \"patientInstruction\": \"Kontrol dalam 1 minggu kedepan. Dalam keadaan darurat dapat menghubungi hotline Fasyankes di nomor 1500567\"\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": "Tue, 25 Jun 2024 01:01:19 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/e12155c6-8f13-4c3e-a416-ef99ef6278f3/_history/MTcxOTI3NzI3OTQwNzMxNTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxOTI3NzI3OTQwNzMxNTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 25 Jun 2024 01:01:19 GMT"
},
{
"key": "content-length",
"value": "1456"
},
{
"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": "a1f9605f-a52c-4541-9100-f86f676f4180"
},
{
"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\": \"2024-03-15T03:30: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 dalam 1 minggu kedepan\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"e12155c6-8f13-4c3e-a416-ef99ef6278f3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000002\",\n \"value\": \"000013\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/referral-number\",\n \"value\": \"2000000172\"\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 \"meta\": {\n \"lastUpdated\": \"2024-06-25T01:01:19.407315+00:00\",\n \"versionId\": \"MTcxOTI3NzI3OTQwNzMxNTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-22T03:30:00+00:00\",\n \"patientInstruction\": \"Kontrol dalam 1 minggu kedepan. Dalam keadaan darurat dapat menghubungi hotline Fasyankes di nomor 1500567\",\n \"performer\": [\n {\n \"display\": \"Dorothy Clone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"stat\",\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\",\n \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n }\n ],\n \"text\": \"Hipertofi Ventrikular Kiri / Cardiomegaly\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "12. Kondisi Saat Meninggalkan Rumah Sakit",
"item": [
{
"name": "Condition - Tidak Stabil",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"162668006\",\n \"display\": \"Patient's condition unstable\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:30:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Tidak Stabil",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"162668006\",\n \"display\": \"Patient's condition unstable\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:30: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/ac679ee5-af1b-4ba2-9cd8-aae775c6075a/_history/MTcxNTY2OTQ2MTQ5OTU0NzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 06:51:01 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY2OTQ2MTQ5OTU0NzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 06:51:01 GMT"
},
{
"key": "content-length",
"value": "779"
},
{
"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": "6908986d-3186-43a4-afcb-82a568fee98f"
},
{
"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\": \"162668006\",\n \"display\": \"Patient's condition unstable\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"ac679ee5-af1b-4ba2-9cd8-aae775c6075a\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T06:51:01.499547+00:00\",\n \"versionId\": \"MTcxNTY2OTQ2MTQ5OTU0NzAwMA\"\n },\n \"recordedDate\": \"2024-03-15T03:30:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Tidak Stabil",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"162668006\",\n \"display\": \"Patient's condition unstable\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:30:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Tidak Stabil",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"162668006\",\n \"display\": \"Patient's condition unstable\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:30: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/ac679ee5-af1b-4ba2-9cd8-aae775c6075a/_history/MTcxNTY2OTQ2MTQ5OTU0NzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 06:51:01 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY2OTQ2MTQ5OTU0NzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 06:51:01 GMT"
},
{
"key": "content-length",
"value": "779"
},
{
"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": "6908986d-3186-43a4-afcb-82a568fee98f"
},
{
"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\": \"162668006\",\n \"display\": \"Patient's condition unstable\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"ac679ee5-af1b-4ba2-9cd8-aae775c6075a\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T06:51:01.499547+00:00\",\n \"versionId\": \"MTcxNTY2OTQ2MTQ5OTU0NzAwMA\"\n },\n \"recordedDate\": \"2024-03-15T03:30:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "13. Cara Keluar Rumah Sakit dan Update Pasien Pulang",
"item": [
{
"name": "Encounter - Update (Pulang)",
"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\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30: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_Utama}}\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n },\n {\n \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\",\n \"display\": \"Cardiomegaly\"\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 \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder2}}\",\n \"display\": \"Lipoprotein deficiency\"\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\": 3\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T01:10:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-15T01:10:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-15T03:30:00+00:00\",\n \"end\": \"2024-03-15T03:30: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 - Update (Pulang)",
"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\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30: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_Utama}}\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n },\n {\n \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\",\n \"display\": \"Cardiomegaly\"\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 \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder2}}\",\n \"display\": \"Lipoprotein deficiency\"\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\": 3\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T01:10:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-15T01:10:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-15T03:30:00+00:00\",\n \"end\": \"2024-03-15T03:30: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": "last-modified",
"value": "Tue, 14 May 2024 07:01:19 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY3MDA3OTQ1NjYzODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed/_history/MTcxNTY3MDA3OTQ1NjYzODAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 07:01:19 GMT"
},
{
"key": "content-length",
"value": "2769"
},
{
"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": "1ab70c42-3258-4fdb-bfe3-68c809fdb207"
},
{
"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/fe630df7-8905-47ec-b1cd-ece78262a69e\"\n }\n ],\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\": \"Chronic ischaemic heart disease, unspecified\",\n \"reference\": \"Condition/719bcedc-35e6-4e4b-b7fb-aa851de6924a\"\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\": \"Cardiomegaly\",\n \"reference\": \"Condition/39f7eecd-e904-431f-8219-36968d865cd9\"\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 \"condition\": {\n \"display\": \"Lipoprotein deficiency\",\n \"reference\": \"Condition/99f208be-f5fb-475f-be30-9300c3f6b6dc\"\n },\n \"rank\": 3,\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 \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\"\n }\n ],\n \"id\": \"6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000002\",\n \"value\": \"2024041592288\"\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\": \"Poli Jantung\",\n \"reference\": \"Location/b0eaf422-54cb-45c3-b57b-4a18ab95ee97\"\n },\n \"period\": {\n \"end\": \"2024-03-15T03:30:00+00:00\",\n \"start\": \"2024-03-15T01:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T07:01:19.456638+00:00\",\n \"versionId\": \"MTcxNTY3MDA3OTQ1NjYzODAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\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\": \"2024-03-15T03:30:00+00:00\",\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000002\"\n },\n \"status\": \"finished\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T01:10:00+00:00\",\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"end\": \"2024-03-15T03:30:00+00:00\",\n \"start\": \"2024-03-15T01:10:00+00:00\"\n },\n \"status\": \"in-progress\"\n },\n {\n \"period\": {\n \"end\": \"2024-03-15T03:30:00+00:00\",\n \"start\": \"2024-03-15T03:30:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Encounter - Update (Pulang)",
"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\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30: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_Utama}}\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n },\n {\n \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\",\n \"display\": \"Cardiomegaly\"\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 \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder2}}\",\n \"display\": \"Lipoprotein deficiency\"\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\": 3\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T01:10:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-15T01:10:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-15T03:30:00+00:00\",\n \"end\": \"2024-03-15T03:30: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 - Update (Pulang)",
"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\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30: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_Utama}}\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n },\n {\n \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\",\n \"display\": \"Cardiomegaly\"\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 \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder2}}\",\n \"display\": \"Lipoprotein deficiency\"\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\": 3\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T01:10:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-15T01:10:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-15T03:30:00+00:00\",\n \"end\": \"2024-03-15T03:30: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": "last-modified",
"value": "Tue, 14 May 2024 07:01:19 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY3MDA3OTQ1NjYzODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed/_history/MTcxNTY3MDA3OTQ1NjYzODAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 07:01:19 GMT"
},
{
"key": "content-length",
"value": "2769"
},
{
"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": "1ab70c42-3258-4fdb-bfe3-68c809fdb207"
},
{
"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/fe630df7-8905-47ec-b1cd-ece78262a69e\"\n }\n ],\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\": \"Chronic ischaemic heart disease, unspecified\",\n \"reference\": \"Condition/719bcedc-35e6-4e4b-b7fb-aa851de6924a\"\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\": \"Cardiomegaly\",\n \"reference\": \"Condition/39f7eecd-e904-431f-8219-36968d865cd9\"\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 \"condition\": {\n \"display\": \"Lipoprotein deficiency\",\n \"reference\": \"Condition/99f208be-f5fb-475f-be30-9300c3f6b6dc\"\n },\n \"rank\": 3,\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 \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\"\n }\n ],\n \"id\": \"6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000002\",\n \"value\": \"2024041592288\"\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\": \"Poli Jantung\",\n \"reference\": \"Location/b0eaf422-54cb-45c3-b57b-4a18ab95ee97\"\n },\n \"period\": {\n \"end\": \"2024-03-15T03:30:00+00:00\",\n \"start\": \"2024-03-15T01:00:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T07:01:19.456638+00:00\",\n \"versionId\": \"MTcxNTY3MDA3OTQ1NjYzODAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\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\": \"2024-03-15T03:30:00+00:00\",\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000002\"\n },\n \"status\": \"finished\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T01:10:00+00:00\",\n \"start\": \"2024-03-15T01:00:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"end\": \"2024-03-15T03:30:00+00:00\",\n \"start\": \"2024-03-15T01:10:00+00:00\"\n },\n \"status\": \"in-progress\"\n },\n {\n \"period\": {\n \"end\": \"2024-03-15T03:30:00+00:00\",\n \"start\": \"2024-03-15T03:30:00+00:00\"\n },\n \"status\": \"finished\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Bundle Kunjungan 2. FKTL - RJ - PJI Stabil, Cardiomegali, dan Dislipidemia",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:7bc68ccf-22b9-464a-ba8d-f99a14a33171\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30: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_Utama}}\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n },\n {\n \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\",\n \"display\": \"Cardiomegaly\"\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 \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder2}}\",\n \"display\": \"Lipoprotein deficiency\"\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\": 3\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T01:10:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-15T01:10:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-15T03:30:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9d40fb30-b2e8-454d-9f79-f4ad2622ce36\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:68f30302-e307-40ce-8c92-d621a96844d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:26:00+00:00\",\n \"issued\": \"2024-03-15T01:26:00+00:00\",\n \"valueQuantity\": {\n \"value\": 75,\n \"unit\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"kg\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:27:00+00:00\",\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8138a9e7-258c-4974-be19-725f3d37af64\",\n \"resource\": {\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 },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"792805006\",\n \"display\": \"Fasting\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T01:27:00+00:00\",\n \"end\": \"2024-03-15T01:27:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Prosedur Puasa tidak dilakukan Pasien\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Procedure\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:805e3abc-e362-42d4-8d2f-a6769a074e76\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"82810-3\",\n \"display\": \"Pregnancy status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:28:00+00:00\",\n \"issued\": \"2024-03-15T01:28:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"60001007\",\n \"display\": \"Not pregnant\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c9024074-f558-436b-90d8-7f41bc73624e\",\n \"resource\": {\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"10085104\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"medication\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000918\",\n \"display\": \"IODIXANOL\"\n }\n ],\n \"text\": \"Alergi Bahan Kontras Iodixanol\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-15T01:29:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"AllergyIntolerance\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:cf88ba4d-e0a3-4701-afff-9fd8c0e3b245\",\n \"resource\": {\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"00001B\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120054\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ],\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"DX\"\n }\n ],\n \"text\": \"Modality Code: DX\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"DX0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ServiceRequest\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d24c6168-7f4e-48b7-8719-a0697886f119\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O1111111\"\n }\n ],\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_RontgenThorax}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000164\",\n \"display\": \"Cardiothoracic Ratio (CTR)\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 60,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"85804007\",\n \"display\": \"Congestion\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"128309002\",\n \"display\": \"Radiologic infiltrate\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"41699000\",\n \"display\": \"Effusion\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Ditemukan kelainan dalam Rontgen Thorax\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9457e641-12fd-45e5-85fd-aa701afbdc1b\",\n \"resource\": {\n \"resourceType\": \"DiagnosticReport\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/{{Org_id}}/rad\",\n \"use\": \"official\",\n \"value\": \"52343421\"\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35: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_RontgenThorax}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_RontgenThorax}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya pembesaran jantung (cardiomegaly) disertai kongesti, infiltrat, dan efusi\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"DiagnosticReport\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:7eceb8a7-985f-4a6a-b219-597a3d3a86ab\",\n \"resource\": {\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\": \"37.28\",\n \"display\": \"Intracardial echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T03:05:00+00:00\",\n \"end\": \"2024-03-15T03:15:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Procedure\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee5443b1-4cf1-40dc-9f60-0624349597e7\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40701008\",\n \"display\": \"Echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"70822001\",\n \"display\": \"Cardiac ejection fraction, function\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000132\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Konsentrik\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000134\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Eksentrik\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18024-0\",\n \"display\": \"Left atrial Diameter anterior-posterior systole by US.M-mode\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 45,\n \"unit\": \"mm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3545003\",\n \"display\": \"Diastolic dysfunction\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan Ekokardiografi menunjukkan adanya gangguan pada jantung\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:335b899d-511a-4223-9df2-6ea67a18f6da\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:4aa1d7f1-17e2-4275-bf84-32364e5de204\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:4aa1d7f1-17e2-4275-bf84-32364e5de204\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"E78.6\",\n \"display\": \"Lipoprotein deficiency\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c03defbc-418b-45c7-9e54-15d29722553a\",\n \"resource\": {\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\": \"123456788\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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 \"request\": {\n \"method\": \"POST\",\n \"url\": \"Medication\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"MedicationRequest\",\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 \"intent\": \"order\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n }\n ],\n \"priority\": \"routine\",\n \"medicationReference\": {\n \"reference\": \"Medication/a2fc3aa0-827e-46cc-9488-430d9a871961\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authoredOn\": \"2024-03-15T03:23:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\",\n \"code\": \"continuous\",\n \"display\": \"Continuing long term therapy\"\n }\n ]\n },\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ],\n \"dispenseRequest\": {\n \"dispenseInterval\": {\n \"value\": 1,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"validityPeriod\": {\n \"start\": \"2024-03-15T03:23:00+00:00\",\n \"end\": \"2024-04-15T03:20:00+00:00\"\n },\n \"numberOfRepeatsAllowed\": 0,\n \"quantity\": {\n \"value\": 30,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"expectedSupplyDuration\": {\n \"value\": 30,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"performer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"MedicationRequest\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-08-31T03:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Apoteker A\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah tanggal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"text\": \"Persyaratan Farmasetik\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah stabilitas obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"3\",\n \"text\": \"Persyaratan Klinis\",\n \"item\": [\n {\n \"linkId\": \"3.1\",\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"3.2\",\n \"text\": \"Apakah terdapat duplikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.3\",\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.4\",\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.5\",\n \"text\": \"Apakah terdapat dampak interaksi obat?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\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\": \"123456797\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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 \"request\": {\n \"method\": \"POST\",\n \"url\": \"Medication\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"MedicationDispense\",\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\": \"Medication/9a00fdfd-3f27-4b24-ac9b-67becc888cb2\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"John Miller\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\",\n \"display\": \"Apotek RS SATUSEHAT\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/c7a0c2f7-776e-4ad9-8164-7782e193ccaa\"\n }\n ],\n \"quantity\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\",\n \"value\": 30\n },\n \"daysSupply\": {\n \"value\": 30,\n \"unit\": \"Day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"whenPrepared\": \"2024-03-15T03:24:00+00:00\",\n \"whenHandedOver\": \"2024-03-15T03:30:00+00:00\",\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"MedicationDispense\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"162668006\",\n \"display\": \"Patient's condition unstable\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:30:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"response": [
{
"name": "Bundle Kunjungan 2. FKTL - RJ - PJI Stabil, Cardiomegali, dan Dislipidemia",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:7bc68ccf-22b9-464a-ba8d-f99a14a33171\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30: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_Utama}}\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n },\n {\n \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\",\n \"display\": \"Cardiomegaly\"\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 \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder2}}\",\n \"display\": \"Lipoprotein deficiency\"\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\": 3\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T01:10:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-15T01:10:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-15T03:30:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9d40fb30-b2e8-454d-9f79-f4ad2622ce36\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:68f30302-e307-40ce-8c92-d621a96844d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:26:00+00:00\",\n \"issued\": \"2024-03-15T01:26:00+00:00\",\n \"valueQuantity\": {\n \"value\": 75,\n \"unit\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"kg\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:27:00+00:00\",\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8138a9e7-258c-4974-be19-725f3d37af64\",\n \"resource\": {\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 },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"792805006\",\n \"display\": \"Fasting\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T01:27:00+00:00\",\n \"end\": \"2024-03-15T01:27:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Prosedur Puasa tidak dilakukan Pasien\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Procedure\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:805e3abc-e362-42d4-8d2f-a6769a074e76\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"82810-3\",\n \"display\": \"Pregnancy status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:28:00+00:00\",\n \"issued\": \"2024-03-15T01:28:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"60001007\",\n \"display\": \"Not pregnant\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c9024074-f558-436b-90d8-7f41bc73624e\",\n \"resource\": {\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"10085104\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"medication\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000918\",\n \"display\": \"IODIXANOL\"\n }\n ],\n \"text\": \"Alergi Bahan Kontras Iodixanol\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-15T01:29:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"AllergyIntolerance\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:cf88ba4d-e0a3-4701-afff-9fd8c0e3b245\",\n \"resource\": {\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"00001B\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120054\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ],\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"DX\"\n }\n ],\n \"text\": \"Modality Code: DX\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"DX0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ServiceRequest\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d24c6168-7f4e-48b7-8719-a0697886f119\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O1111111\"\n }\n ],\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_RontgenThorax}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000164\",\n \"display\": \"Cardiothoracic Ratio (CTR)\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 60,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"85804007\",\n \"display\": \"Congestion\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"128309002\",\n \"display\": \"Radiologic infiltrate\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"41699000\",\n \"display\": \"Effusion\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Ditemukan kelainan dalam Rontgen Thorax\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9457e641-12fd-45e5-85fd-aa701afbdc1b\",\n \"resource\": {\n \"resourceType\": \"DiagnosticReport\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/{{Org_id}}/rad\",\n \"use\": \"official\",\n \"value\": \"52343421\"\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35: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_RontgenThorax}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_RontgenThorax}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya pembesaran jantung (cardiomegaly) disertai kongesti, infiltrat, dan efusi\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"DiagnosticReport\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:7eceb8a7-985f-4a6a-b219-597a3d3a86ab\",\n \"resource\": {\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\": \"37.28\",\n \"display\": \"Intracardial echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T03:05:00+00:00\",\n \"end\": \"2024-03-15T03:15:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Procedure\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee5443b1-4cf1-40dc-9f60-0624349597e7\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40701008\",\n \"display\": \"Echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"70822001\",\n \"display\": \"Cardiac ejection fraction, function\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000132\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Konsentrik\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000134\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Eksentrik\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18024-0\",\n \"display\": \"Left atrial Diameter anterior-posterior systole by US.M-mode\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 45,\n \"unit\": \"mm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3545003\",\n \"display\": \"Diastolic dysfunction\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan Ekokardiografi menunjukkan adanya gangguan pada jantung\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:335b899d-511a-4223-9df2-6ea67a18f6da\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:4aa1d7f1-17e2-4275-bf84-32364e5de204\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:4aa1d7f1-17e2-4275-bf84-32364e5de204\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"E78.6\",\n \"display\": \"Lipoprotein deficiency\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c03defbc-418b-45c7-9e54-15d29722553a\",\n \"resource\": {\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\": \"123456788\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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 \"request\": {\n \"method\": \"POST\",\n \"url\": \"Medication\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"MedicationRequest\",\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 \"intent\": \"order\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n }\n ],\n \"priority\": \"routine\",\n \"medicationReference\": {\n \"reference\": \"Medication/a2fc3aa0-827e-46cc-9488-430d9a871961\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authoredOn\": \"2024-03-15T03:23:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\",\n \"code\": \"continuous\",\n \"display\": \"Continuing long term therapy\"\n }\n ]\n },\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ],\n \"dispenseRequest\": {\n \"dispenseInterval\": {\n \"value\": 1,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"validityPeriod\": {\n \"start\": \"2024-03-15T03:23:00+00:00\",\n \"end\": \"2024-04-15T03:20:00+00:00\"\n },\n \"numberOfRepeatsAllowed\": 0,\n \"quantity\": {\n \"value\": 30,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"expectedSupplyDuration\": {\n \"value\": 30,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"performer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"MedicationRequest\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-08-31T03:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Apoteker A\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah tanggal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"text\": \"Persyaratan Farmasetik\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah stabilitas obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"3\",\n \"text\": \"Persyaratan Klinis\",\n \"item\": [\n {\n \"linkId\": \"3.1\",\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"3.2\",\n \"text\": \"Apakah terdapat duplikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.3\",\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.4\",\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.5\",\n \"text\": \"Apakah terdapat dampak interaksi obat?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\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\": \"123456797\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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 \"request\": {\n \"method\": \"POST\",\n \"url\": \"Medication\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"MedicationDispense\",\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\": \"Medication/9a00fdfd-3f27-4b24-ac9b-67becc888cb2\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"John Miller\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\",\n \"display\": \"Apotek RS SATUSEHAT\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/c7a0c2f7-776e-4ad9-8164-7782e193ccaa\"\n }\n ],\n \"quantity\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\",\n \"value\": 30\n },\n \"daysSupply\": {\n \"value\": 30,\n \"unit\": \"Day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"whenPrepared\": \"2024-03-15T03:24:00+00:00\",\n \"whenHandedOver\": \"2024-03-15T03:30:00+00:00\",\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"MedicationDispense\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"162668006\",\n \"display\": \"Patient's condition unstable\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:30:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n }\n ]\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, 26 Apr 2024 10:26:48 GMT"
},
{
"key": "Content-Length",
"value": "1882"
},
{
"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": "0bb0c087-cfe8-4ebd-9065-0daf5882a6d7"
},
{
"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/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/d114f3cb-0427-4d98-af14-096a02265fa9/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Encounter\",\n \"resourceID\": \"d114f3cb-0427-4d98-af14-096a02265fa9\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/51954a15-181e-44ae-91a1-19932689bc6c/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"51954a15-181e-44ae-91a1-19932689bc6c\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/9c35783a-59c8-43fc-b78d-fb1e05eb43fc/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"9c35783a-59c8-43fc-b78d-fb1e05eb43fc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/03f3b764-d551-41b7-9786-36e3bc9755ff/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"03f3b764-d551-41b7-9786-36e3bc9755ff\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b9f2a22b-317f-4e84-8ee0-b8df34be6da9/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"AllergyIntolerance\",\n \"resourceID\": \"b9f2a22b-317f-4e84-8ee0-b8df34be6da9\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationStatement/e7bfc126-321e-423c-8aa4-047b85aa30a6/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"MedicationStatement\",\n \"resourceID\": \"e7bfc126-321e-423c-8aa4-047b85aa30a6\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/08021b27-add6-442a-93fe-eaa07c50d321/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"08021b27-add6-442a-93fe-eaa07c50d321\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/80c2ce68-672d-47c0-b00a-7a2b4cc62f4a/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"80c2ce68-672d-47c0-b00a-7a2b4cc62f4a\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/7f3904f9-a5a2-4384-b8e2-70f6897e2b42/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"7f3904f9-a5a2-4384-b8e2-70f6897e2b42\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/CarePlan/43086446-83b1-473d-ab25-e45f756723ef/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"CarePlan\",\n \"resourceID\": \"43086446-83b1-473d-ab25-e45f756723ef\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/CarePlan/d630d85a-405d-482f-be70-855eacf9f0d5/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"CarePlan\",\n \"resourceID\": \"d630d85a-405d-482f-be70-855eacf9f0d5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ServiceRequest/d31041f0-7a39-408e-a48e-1ee76ddb0eb6/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"ServiceRequest\",\n \"resourceID\": \"d31041f0-7a39-408e-a48e-1ee76ddb0eb6\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Specimen/372c959d-c46a-4853-a6dc-f6e67adefbd5/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Specimen\",\n \"resourceID\": \"372c959d-c46a-4853-a6dc-f6e67adefbd5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/d7d2daa3-a06b-45dd-8c54-d80b8c8a897d/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"d7d2daa3-a06b-45dd-8c54-d80b8c8a897d\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/DiagnosticReport/576eb963-a031-403a-8989-9d4295e63e06/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"DiagnosticReport\",\n \"resourceID\": \"576eb963-a031-403a-8989-9d4295e63e06\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/eb53d43c-9381-447c-a0f4-4b6c19462a84/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"eb53d43c-9381-447c-a0f4-4b6c19462a84\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/ef9bb7bc-0eed-4956-9e4e-8f69bae83061/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"ef9bb7bc-0eed-4956-9e4e-8f69bae83061\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/f14b2023-0750-42ac-891c-55dbae7a5078/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"f14b2023-0750-42ac-891c-55dbae7a5078\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/d8f074e2-e663-45df-b307-88cfd285df71/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"d8f074e2-e663-45df-b307-88cfd285df71\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/648eabc8-db3f-42fc-9852-25a1374c824f/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"648eabc8-db3f-42fc-9852-25a1374c824f\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/8c1de043-4465-45d7-999f-da3d00077456/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"8c1de043-4465-45d7-999f-da3d00077456\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Composition/2994d32a-9e05-4b6f-bdf9-142385991bcc/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Composition\",\n \"resourceID\": \"2994d32a-9e05-4b6f-bdf9-142385991bcc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/1e3ff310-d701-4f57-a54e-9a2a8518722c/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"1e3ff310-d701-4f57-a54e-9a2a8518722c\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Medication/c4861ed7-a645-4494-a614-8a44ba3a0434/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Medication\",\n \"resourceID\": \"c4861ed7-a645-4494-a614-8a44ba3a0434\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationRequest/72fc8a5f-98b6-4e1a-83bb-d7f3f049960f/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"MedicationRequest\",\n \"resourceID\": \"72fc8a5f-98b6-4e1a-83bb-d7f3f049960f\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/QuestionnaireResponse/6b92a5b0-b106-4908-9c68-1fca4fbfcba9/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"resourceID\": \"6b92a5b0-b106-4908-9c68-1fca4fbfcba9\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Medication/45ad03cc-919b-45a1-a242-165c59ae5247/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Medication\",\n \"resourceID\": \"45ad03cc-919b-45a1-a242-165c59ae5247\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/e8043d2c-c9cb-4dc9-af56-65a0553c1d64/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"MedicationDispense\",\n \"resourceID\": \"e8043d2c-c9cb-4dc9-af56-65a0553c1d64\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ClinicalImpression/b1a9a1ee-4e71-446b-964a-65d7b5ccb3fc/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"ClinicalImpression\",\n \"resourceID\": \"b1a9a1ee-4e71-446b-964a-65d7b5ccb3fc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ServiceRequest/fbca8938-8193-4a71-a98b-5039214a17d2/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"ServiceRequest\",\n \"resourceID\": \"fbca8938-8193-4a71-a98b-5039214a17d2\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/1cf2117f-956d-4ed5-84f3-04c5ff135c3f/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"1cf2117f-956d-4ed5-84f3-04c5ff135c3f\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction-response\",\n \"total\": 31\n}"
}
]
},
{
"name": "Bundle Kunjungan 2. FKTL - RJ - PJI Stabil, Cardiomegali, dan Dislipidemia",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:7bc68ccf-22b9-464a-ba8d-f99a14a33171\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30: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_Utama}}\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n },\n {\n \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\",\n \"display\": \"Cardiomegaly\"\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 \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder2}}\",\n \"display\": \"Lipoprotein deficiency\"\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\": 3\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T01:10:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-15T01:10:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-15T03:30:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9d40fb30-b2e8-454d-9f79-f4ad2622ce36\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:68f30302-e307-40ce-8c92-d621a96844d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:26:00+00:00\",\n \"issued\": \"2024-03-15T01:26:00+00:00\",\n \"valueQuantity\": {\n \"value\": 75,\n \"unit\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"kg\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:27:00+00:00\",\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8138a9e7-258c-4974-be19-725f3d37af64\",\n \"resource\": {\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 },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"792805006\",\n \"display\": \"Fasting\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T01:27:00+00:00\",\n \"end\": \"2024-03-15T01:27:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Prosedur Puasa tidak dilakukan Pasien\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Procedure\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:805e3abc-e362-42d4-8d2f-a6769a074e76\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"82810-3\",\n \"display\": \"Pregnancy status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:28:00+00:00\",\n \"issued\": \"2024-03-15T01:28:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"60001007\",\n \"display\": \"Not pregnant\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c9024074-f558-436b-90d8-7f41bc73624e\",\n \"resource\": {\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"10085104\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"medication\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000918\",\n \"display\": \"IODIXANOL\"\n }\n ],\n \"text\": \"Alergi Bahan Kontras Iodixanol\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-15T01:29:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"AllergyIntolerance\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:cf88ba4d-e0a3-4701-afff-9fd8c0e3b245\",\n \"resource\": {\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"00001B\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120054\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ],\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"DX\"\n }\n ],\n \"text\": \"Modality Code: DX\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"DX0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ServiceRequest\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d24c6168-7f4e-48b7-8719-a0697886f119\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O1111111\"\n }\n ],\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_RontgenThorax}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000164\",\n \"display\": \"Cardiothoracic Ratio (CTR)\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 60,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"85804007\",\n \"display\": \"Congestion\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"128309002\",\n \"display\": \"Radiologic infiltrate\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"41699000\",\n \"display\": \"Effusion\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Ditemukan kelainan dalam Rontgen Thorax\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9457e641-12fd-45e5-85fd-aa701afbdc1b\",\n \"resource\": {\n \"resourceType\": \"DiagnosticReport\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/{{Org_id}}/rad\",\n \"use\": \"official\",\n \"value\": \"52343421\"\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35: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_RontgenThorax}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_RontgenThorax}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya pembesaran jantung (cardiomegaly) disertai kongesti, infiltrat, dan efusi\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"DiagnosticReport\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:7eceb8a7-985f-4a6a-b219-597a3d3a86ab\",\n \"resource\": {\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\": \"37.28\",\n \"display\": \"Intracardial echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T03:05:00+00:00\",\n \"end\": \"2024-03-15T03:15:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Procedure\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee5443b1-4cf1-40dc-9f60-0624349597e7\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40701008\",\n \"display\": \"Echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"70822001\",\n \"display\": \"Cardiac ejection fraction, function\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000132\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Konsentrik\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000134\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Eksentrik\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18024-0\",\n \"display\": \"Left atrial Diameter anterior-posterior systole by US.M-mode\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 45,\n \"unit\": \"mm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3545003\",\n \"display\": \"Diastolic dysfunction\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan Ekokardiografi menunjukkan adanya gangguan pada jantung\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:335b899d-511a-4223-9df2-6ea67a18f6da\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:4aa1d7f1-17e2-4275-bf84-32364e5de204\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:4aa1d7f1-17e2-4275-bf84-32364e5de204\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"E78.6\",\n \"display\": \"Lipoprotein deficiency\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c03defbc-418b-45c7-9e54-15d29722553a\",\n \"resource\": {\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\": \"123456788\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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 \"request\": {\n \"method\": \"POST\",\n \"url\": \"Medication\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"MedicationRequest\",\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 \"intent\": \"order\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n }\n ],\n \"priority\": \"routine\",\n \"medicationReference\": {\n \"reference\": \"Medication/a2fc3aa0-827e-46cc-9488-430d9a871961\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authoredOn\": \"2024-03-15T03:23:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\",\n \"code\": \"continuous\",\n \"display\": \"Continuing long term therapy\"\n }\n ]\n },\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ],\n \"dispenseRequest\": {\n \"dispenseInterval\": {\n \"value\": 1,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"validityPeriod\": {\n \"start\": \"2024-03-15T03:23:00+00:00\",\n \"end\": \"2024-04-15T03:20:00+00:00\"\n },\n \"numberOfRepeatsAllowed\": 0,\n \"quantity\": {\n \"value\": 30,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"expectedSupplyDuration\": {\n \"value\": 30,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"performer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"MedicationRequest\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-08-31T03:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Apoteker A\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah tanggal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"text\": \"Persyaratan Farmasetik\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah stabilitas obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"3\",\n \"text\": \"Persyaratan Klinis\",\n \"item\": [\n {\n \"linkId\": \"3.1\",\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"3.2\",\n \"text\": \"Apakah terdapat duplikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.3\",\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.4\",\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.5\",\n \"text\": \"Apakah terdapat dampak interaksi obat?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\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\": \"123456797\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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 \"request\": {\n \"method\": \"POST\",\n \"url\": \"Medication\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"MedicationDispense\",\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\": \"Medication/9a00fdfd-3f27-4b24-ac9b-67becc888cb2\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"John Miller\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\",\n \"display\": \"Apotek RS SATUSEHAT\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/c7a0c2f7-776e-4ad9-8164-7782e193ccaa\"\n }\n ],\n \"quantity\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\",\n \"value\": 30\n },\n \"daysSupply\": {\n \"value\": 30,\n \"unit\": \"Day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"whenPrepared\": \"2024-03-15T03:24:00+00:00\",\n \"whenHandedOver\": \"2024-03-15T03:30:00+00:00\",\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"MedicationDispense\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"162668006\",\n \"display\": \"Patient's condition unstable\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:30:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
]
}
},
"response": [
{
"name": "Bundle Kunjungan 2. FKTL - RJ - PJI Stabil, Cardiomegali, dan Dislipidemia",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction\",\n \"entry\": [\n {\n \"fullUrl\": \"urn:uuid:7bc68ccf-22b9-464a-ba8d-f99a14a33171\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024041592288\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Kontrol}}\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"AMB\",\n \"display\": \"Ambulatory\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_PoliJantung}}\",\n \"display\": \"Poli Jantung\"\n },\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T03:30: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_Utama}}\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n },\n \"use\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/diagnosis-role\",\n \"code\": \"DD\",\n \"display\": \"Discharge diagnosis\"\n }\n ]\n },\n \"rank\": 1\n },\n {\n \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder}}\",\n \"display\": \"Cardiomegaly\"\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 \"condition\": {\n \"reference\": \"Condition/{{Diagnosis_Sekunder2}}\",\n \"display\": \"Lipoprotein deficiency\"\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\": 3\n }\n ],\n \"statusHistory\": [\n {\n \"status\": \"arrived\",\n \"period\": {\n \"start\": \"2024-03-15T01:00:00+00:00\",\n \"end\": \"2024-03-15T01:10:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-15T01:10:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n }\n },\n {\n \"status\": \"finished\",\n \"period\": {\n \"start\": \"2024-03-15T03:30:00+00:00\",\n \"end\": \"2024-03-15T03:30:00+00:00\"\n }\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Encounter\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9d40fb30-b2e8-454d-9f79-f4ad2622ce36\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:68f30302-e307-40ce-8c92-d621a96844d8\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:26:00+00:00\",\n \"issued\": \"2024-03-15T01:26:00+00:00\",\n \"valueQuantity\": {\n \"value\": 75,\n \"unit\": \"kg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"kg\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:acc42884-0761-44f2-ba37-e53409c03c90\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8302-2\",\n \"display\": \"Body height\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Pemeriksaan Antropometri Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:27:00+00:00\",\n \"issued\": \"2024-03-15T01:27:00+00:00\",\n \"valueQuantity\": {\n \"value\": 160,\n \"unit\": \"cm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cm\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:8138a9e7-258c-4974-be19-725f3d37af64\",\n \"resource\": {\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 },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"792805006\",\n \"display\": \"Fasting\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T01:27:00+00:00\",\n \"end\": \"2024-03-15T01:27:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. dr. Voight, MARS\"\n }\n }\n ],\n \"note\": [\n {\n \"text\": \"Prosedur Puasa tidak dilakukan Pasien\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Procedure\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:805e3abc-e362-42d4-8d2f-a6769a074e76\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"82810-3\",\n \"display\": \"Pregnancy status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:28:00+00:00\",\n \"issued\": \"2024-03-15T01:28:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"60001007\",\n \"display\": \"Not pregnant\"\n }\n ]\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c9024074-f558-436b-90d8-7f41bc73624e\",\n \"resource\": {\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/{{Org_id}}\",\n \"use\": \"official\",\n \"value\": \"10085104\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"medication\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000918\",\n \"display\": \"IODIXANOL\"\n }\n ],\n \"text\": \"Alergi Bahan Kontras Iodixanol\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-15T01:29:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"AllergyIntolerance\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:cf88ba4d-e0a3-4701-afff-9fd8c0e3b245\",\n \"resource\": {\n \"resourceType\": \"ServiceRequest\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/{{Org_id}}\",\n \"value\": \"00001B\"\n },\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"ACSN\"\n }\n ]\n },\n \"system\": \"http://sys-ids.kemkes.go.id/acsn/{{Org_id}}\",\n \"value\": \"21120054\"\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\": \"363679005\",\n \"display\": \"Imaging\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ],\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n },\n \"orderDetail\": [\n {\n \"coding\": [\n {\n \"system\": \"http://dicom.nema.org/resources/ontology/DCM\",\n \"code\": \"DX\"\n }\n ],\n \"text\": \"Modality Code: DX\"\n },\n {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/ae-title\",\n \"display\": \"DX0001\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"occurrenceDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"authoredOn\": \"2024-03-15T01:27:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy Clone\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax untuk Pelayanan Rawat Jalan Pasien a.n. Jane Smith karena adanya kecurigaan penyakit pada jantung\"\n }\n ],\n \"note\": [\n {\n \"text\": \"Pemeriksaan Rontgen Thorax\"\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"Observation/{{Observation_StatusKehamilan}}\"\n },\n {\n \"reference\": \"AllergyIntolerance/{{AllergyIntolerrance_BahanKontras}}\"\n },\n {\n \"reference\": \"Procedure/{{Procedure_Puasa}}\"\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"ServiceRequest\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:d24c6168-7f4e-48b7-8719-a0697886f119\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/{{Org_id}}\",\n \"value\": \"O1111111\"\n }\n ],\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"51185008\",\n \"display\": \"Thoracic structure\"\n }\n ]\n },\n \"derivedFrom\": [\n {\n \"reference\": \"ImagingStudy/{{ImagingStudy_RontgenThorax}}\"\n }\n ],\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000164\",\n \"display\": \"Cardiothoracic Ratio (CTR)\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 60,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"85804007\",\n \"display\": \"Congestion\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"128309002\",\n \"display\": \"Radiologic infiltrate\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"41699000\",\n \"display\": \"Effusion\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Ditemukan kelainan dalam Rontgen Thorax\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:9457e641-12fd-45e5-85fd-aa701afbdc1b\",\n \"resource\": {\n \"resourceType\": \"DiagnosticReport\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/{{Org_id}}/rad\",\n \"use\": \"official\",\n \"value\": \"52343421\"\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\": \"36572-6\",\n \"display\": \"XR Chest AP\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T01:30:00+00:00\",\n \"issued\": \"2024-03-15T01:35: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_RontgenThorax}}\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/{{Observation_RontgenThorax}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_RontgenThorax}}\"\n }\n ],\n \"conclusion\": \"Ditemukan adanya pembesaran jantung (cardiomegaly) disertai kongesti, infiltrat, dan efusi\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"DiagnosticReport\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:7eceb8a7-985f-4a6a-b219-597a3d3a86ab\",\n \"resource\": {\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\": \"37.28\",\n \"display\": \"Intracardial echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performedPeriod\": {\n \"start\": \"2024-03-15T03:05:00+00:00\",\n \"end\": \"2024-03-15T03:15:00+00:00\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Procedure\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:ee5443b1-4cf1-40dc-9f60-0624349597e7\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"40701008\",\n \"display\": \"Echocardiography\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"70822001\",\n \"display\": \"Cardiac ejection fraction, function\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000132\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Konsentrik\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000134\",\n \"display\": \"Left Ventricular Hypertrophy (LVH) Eksentrik\"\n }\n ]\n },\n \"valueBoolean\": false\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18024-0\",\n \"display\": \"Left atrial Diameter anterior-posterior systole by US.M-mode\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 45,\n \"unit\": \"mm\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"3545003\",\n \"display\": \"Diastolic dysfunction\"\n }\n ]\n },\n \"valueBoolean\": true\n }\n ],\n \"valueString\": \"Hasil pemeriksaan Ekokardiografi menunjukkan adanya gangguan pada jantung\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Observation\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:335b899d-511a-4223-9df2-6ea67a18f6da\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I25.9\",\n \"display\": \"Chronic ischaemic heart disease, unspecified\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:4aa1d7f1-17e2-4275-bf84-32364e5de204\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"I51.7\",\n \"display\": \"Cardiomegaly\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:4aa1d7f1-17e2-4275-bf84-32364e5de204\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"encounter-diagnosis\",\n \"display\": \"Encounter Diagnosis\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10\",\n \"code\": \"E78.6\",\n \"display\": \"Lipoprotein deficiency\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:13:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:c03defbc-418b-45c7-9e54-15d29722553a\",\n \"resource\": {\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\": \"123456788\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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 \"request\": {\n \"method\": \"POST\",\n \"url\": \"Medication\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"MedicationRequest\",\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 \"intent\": \"order\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n }\n ],\n \"priority\": \"routine\",\n \"medicationReference\": {\n \"reference\": \"Medication/a2fc3aa0-827e-46cc-9488-430d9a871961\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authoredOn\": \"2024-03-15T03:23:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"courseOfTherapyType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy\",\n \"code\": \"continuous\",\n \"display\": \"Continuing long term therapy\"\n }\n ]\n },\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ],\n \"dispenseRequest\": {\n \"dispenseInterval\": {\n \"value\": 1,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"validityPeriod\": {\n \"start\": \"2024-03-15T03:23:00+00:00\",\n \"end\": \"2024-04-15T03:20:00+00:00\"\n },\n \"numberOfRepeatsAllowed\": 0,\n \"quantity\": {\n \"value\": 30,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"expectedSupplyDuration\": {\n \"value\": 30,\n \"unit\": \"days\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"performer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"MedicationRequest\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0007\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-08-31T03:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Apoteker A\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Persyaratan Administrasi\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah nama, umur, jenis kelamin, berat badan dan tinggi badan pasien sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah nama, nomor ijin, alamat dan paraf dokter sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah tanggal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah ruangan/unit asal resep sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2\",\n \"text\": \"Persyaratan Farmasetik\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah nama obat, bentuk dan kekuatan sediaan sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah dosis dan jumlah obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah stabilitas obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah aturan dan cara penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n }\n ]\n },\n {\n \"linkId\": \"3\",\n \"text\": \"Persyaratan Klinis\",\n \"item\": [\n {\n \"linkId\": \"3.1\",\n \"text\": \"Apakah ketepatan indikasi, dosis, dan waktu penggunaan obat sudah sesuai?\",\n \"answer\": [\n {\n \"valueCoding\": {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000052\",\n \"display\": \"Sesuai\"\n }\n }\n ]\n },\n {\n \"linkId\": \"3.2\",\n \"text\": \"Apakah terdapat duplikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.3\",\n \"text\": \"Apakah terdapat alergi dan reaksi obat yang tidak dikehendaki (ROTD)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.4\",\n \"text\": \"Apakah terdapat kontraindikasi pengobatan?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"3.5\",\n \"text\": \"Apakah terdapat dampak interaksi obat?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"QuestionnaireResponse\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\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\": \"123456797\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93002126\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n }\n ]\n },\n \"status\": \"active\",\n \"manufacturer\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\",\n \"code\": \"BS066\",\n \"display\": \"Tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91000397\",\n \"display\": \"AMLODIPINE\"\n }\n ]\n },\n \"isActive\": true,\n \"strength\": {\n \"numerator\": {\n \"value\": 5,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\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 \"request\": {\n \"method\": \"POST\",\n \"url\": \"Medication\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"MedicationDispense\",\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\": \"Medication/9a00fdfd-3f27-4b24-ac9b-67becc888cb2\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"John Miller\"\n }\n }\n ],\n \"location\": {\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\",\n \"display\": \"Apotek RS SATUSEHAT\"\n },\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/c7a0c2f7-776e-4ad9-8164-7782e193ccaa\"\n }\n ],\n \"quantity\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\",\n \"value\": 30\n },\n \"daysSupply\": {\n \"value\": 30,\n \"unit\": \"Day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n },\n \"whenPrepared\": \"2024-03-15T03:24:00+00:00\",\n \"whenHandedOver\": \"2024-03-15T03:30:00+00:00\",\n \"dosageInstruction\": [\n {\n \"sequence\": 1,\n \"text\": \"1 tablet per hari\",\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"patientInstruction\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://www.whocc.no/atc\",\n \"code\": \"O\",\n \"display\": \"Oral\"\n }\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\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n ]\n }\n ]\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"MedicationDispense\"\n }\n },\n {\n \"fullUrl\": \"urn:uuid:b4b9f196-c394-44ec-ad73-8acf2c5301df\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"162668006\",\n \"display\": \"Patient's condition unstable\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-15T03:30:00+00:00\"\n },\n \"request\": {\n \"method\": \"POST\",\n \"url\": \"Condition\"\n }\n }\n ]\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, 26 Apr 2024 10:26:48 GMT"
},
{
"key": "Content-Length",
"value": "1882"
},
{
"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": "0bb0c087-cfe8-4ebd-9065-0daf5882a6d7"
},
{
"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/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Encounter/d114f3cb-0427-4d98-af14-096a02265fa9/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Encounter\",\n \"resourceID\": \"d114f3cb-0427-4d98-af14-096a02265fa9\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/51954a15-181e-44ae-91a1-19932689bc6c/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"51954a15-181e-44ae-91a1-19932689bc6c\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/9c35783a-59c8-43fc-b78d-fb1e05eb43fc/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"9c35783a-59c8-43fc-b78d-fb1e05eb43fc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/03f3b764-d551-41b7-9786-36e3bc9755ff/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"03f3b764-d551-41b7-9786-36e3bc9755ff\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b9f2a22b-317f-4e84-8ee0-b8df34be6da9/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"AllergyIntolerance\",\n \"resourceID\": \"b9f2a22b-317f-4e84-8ee0-b8df34be6da9\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationStatement/e7bfc126-321e-423c-8aa4-047b85aa30a6/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"MedicationStatement\",\n \"resourceID\": \"e7bfc126-321e-423c-8aa4-047b85aa30a6\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/08021b27-add6-442a-93fe-eaa07c50d321/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"08021b27-add6-442a-93fe-eaa07c50d321\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/80c2ce68-672d-47c0-b00a-7a2b4cc62f4a/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"80c2ce68-672d-47c0-b00a-7a2b4cc62f4a\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/7f3904f9-a5a2-4384-b8e2-70f6897e2b42/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"7f3904f9-a5a2-4384-b8e2-70f6897e2b42\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/CarePlan/43086446-83b1-473d-ab25-e45f756723ef/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"CarePlan\",\n \"resourceID\": \"43086446-83b1-473d-ab25-e45f756723ef\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/CarePlan/d630d85a-405d-482f-be70-855eacf9f0d5/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"CarePlan\",\n \"resourceID\": \"d630d85a-405d-482f-be70-855eacf9f0d5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ServiceRequest/d31041f0-7a39-408e-a48e-1ee76ddb0eb6/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"ServiceRequest\",\n \"resourceID\": \"d31041f0-7a39-408e-a48e-1ee76ddb0eb6\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Specimen/372c959d-c46a-4853-a6dc-f6e67adefbd5/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Specimen\",\n \"resourceID\": \"372c959d-c46a-4853-a6dc-f6e67adefbd5\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/d7d2daa3-a06b-45dd-8c54-d80b8c8a897d/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"d7d2daa3-a06b-45dd-8c54-d80b8c8a897d\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/DiagnosticReport/576eb963-a031-403a-8989-9d4295e63e06/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"DiagnosticReport\",\n \"resourceID\": \"576eb963-a031-403a-8989-9d4295e63e06\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/eb53d43c-9381-447c-a0f4-4b6c19462a84/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"eb53d43c-9381-447c-a0f4-4b6c19462a84\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Observation/ef9bb7bc-0eed-4956-9e4e-8f69bae83061/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Observation\",\n \"resourceID\": \"ef9bb7bc-0eed-4956-9e4e-8f69bae83061\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/f14b2023-0750-42ac-891c-55dbae7a5078/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"f14b2023-0750-42ac-891c-55dbae7a5078\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/d8f074e2-e663-45df-b307-88cfd285df71/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"d8f074e2-e663-45df-b307-88cfd285df71\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/648eabc8-db3f-42fc-9852-25a1374c824f/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"648eabc8-db3f-42fc-9852-25a1374c824f\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/8c1de043-4465-45d7-999f-da3d00077456/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"8c1de043-4465-45d7-999f-da3d00077456\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Composition/2994d32a-9e05-4b6f-bdf9-142385991bcc/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Composition\",\n \"resourceID\": \"2994d32a-9e05-4b6f-bdf9-142385991bcc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Procedure/1e3ff310-d701-4f57-a54e-9a2a8518722c/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Procedure\",\n \"resourceID\": \"1e3ff310-d701-4f57-a54e-9a2a8518722c\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Medication/c4861ed7-a645-4494-a614-8a44ba3a0434/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Medication\",\n \"resourceID\": \"c4861ed7-a645-4494-a614-8a44ba3a0434\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationRequest/72fc8a5f-98b6-4e1a-83bb-d7f3f049960f/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"MedicationRequest\",\n \"resourceID\": \"72fc8a5f-98b6-4e1a-83bb-d7f3f049960f\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/QuestionnaireResponse/6b92a5b0-b106-4908-9c68-1fca4fbfcba9/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"resourceID\": \"6b92a5b0-b106-4908-9c68-1fca4fbfcba9\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Medication/45ad03cc-919b-45a1-a242-165c59ae5247/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Medication\",\n \"resourceID\": \"45ad03cc-919b-45a1-a242-165c59ae5247\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/e8043d2c-c9cb-4dc9-af56-65a0553c1d64/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"MedicationDispense\",\n \"resourceID\": \"e8043d2c-c9cb-4dc9-af56-65a0553c1d64\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ClinicalImpression/b1a9a1ee-4e71-446b-964a-65d7b5ccb3fc/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"ClinicalImpression\",\n \"resourceID\": \"b1a9a1ee-4e71-446b-964a-65d7b5ccb3fc\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/ServiceRequest/fbca8938-8193-4a71-a98b-5039214a17d2/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"ServiceRequest\",\n \"resourceID\": \"fbca8938-8193-4a71-a98b-5039214a17d2\"\n }\n },\n {\n \"response\": {\n \"etag\": \"W/\\\"MTcxNDQ2MjkyNjUyNTQxNTAwMA\\\"\",\n \"lastModified\": \"2024-04-30T07:42:06.525415+00:00\",\n \"location\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Condition/1cf2117f-956d-4ed5-84f3-04c5ff135c3f/_history/MTcxNDQ2MjkyNjUyNTQxNTAwMA\",\n \"status\": \"201 Created\",\n \"resourceType\": \"Condition\",\n \"resourceID\": \"1cf2117f-956d-4ed5-84f3-04c5ff135c3f\"\n }\n }\n ],\n \"resourceType\": \"Bundle\",\n \"type\": \"transaction-response\",\n \"total\": 31\n}"
}
]
}
]
},
{
"name": "3. FKTL - IGD - PJI STE ACS dan PJR",
"item": [
{
"name": "00. Membuat Struktur Organisasi dan Lokasi",
"item": [
{
"name": "Organization - Divisi Pelayanan Medik, Keperawatan, dan Penunjang",
"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\": \"Yanmed\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Rumah Sakit SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Divisi Pelayanan Medik, Keperawatan, dan Penunjang",
"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\": \"Yanmed\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Rumah Sakit 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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NDA3OTMzNDk0NTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 18:47:59 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/2d45c343-9ebc-49d7-a608-4a6ca8318e09/_history/MTcxMDg3NDA3OTMzNDk0NTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:47:59 GMT"
},
{
"key": "Content-Length",
"value": "6022"
},
{
"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": "f109d059-64f7-4e8b-9928-c223eac9129f"
},
{
"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\": \"2d45c343-9ebc-49d7-a608-4a6ca8318e09\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"Yanmed\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:47:59.334945+00:00\",\n \"versionId\": \"MTcxMDg3NDA3OTMzNDk0NTAwMA\"\n },\n \"name\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"partOf\": {\n \"display\": \"Rumah Sakit SATUSEHAT\",\n \"reference\": \"Organization/10000002\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\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}"
}
]
},
{
"name": "Organization - Create Pelayanan Gawat Darurat",
"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\": \"Pelayanan-IGD\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Pelayanan Gawat Darurat, Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Pelayanan Gawat Darurat",
"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\": \"Pelayanan-IGD\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Pelayanan Gawat Darurat, Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\"\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/\"MTcxMDg4ODY0MjU0MDA0NTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 22:50:42 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/75748b7f-6983-4278-ad87-d2ca0bfdae58/_history/MTcxMDg4ODY0MjU0MDA0NTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 22:50:42 GMT"
},
{
"key": "Content-Length",
"value": "6378"
},
{
"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": "2afa36e8-46d0-410b-8a95-ee8c9bd60429"
},
{
"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\": \"75748b7f-6983-4278-ad87-d2ca0bfdae58\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"Pelayanan-IGD\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T22:50:42.540045+00:00\",\n \"versionId\": \"MTcxMDg4ODY0MjU0MDA0NTAwMA\"\n },\n \"name\": \"Pelayanan Gawat Darurat, Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"partOf\": {\n \"display\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"reference\": \"Organization/2d45c343-9ebc-49d7-a608-4a6ca8318e09\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\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}"
}
]
},
{
"name": "Location - Create Instalasi Gawat Darurat",
"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\": \"IGD\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Gawat Darurat, Pelayanan Gawat Darurat\",\n \"description\": \"Instalasi Gawat Darurat, Pelayanan Gawat Darurat, Gedung Utama, Lantai 1\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"RT0006\",\n \"display\": \"Instalasi Gawat Darurat\"\n }\n ]\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"bu\",\n \"display\": \"Building\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Create Instalasi Gawat Darurat",
"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\": \"IGD\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Gawat Darurat, Pelayanan Gawat Darurat\",\n \"description\": \"Instalasi Gawat Darurat, Pelayanan Gawat Darurat, Gedung Utama, Lantai 1\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"RT0006\",\n \"display\": \"Instalasi Gawat Darurat\"\n }\n ]\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"bu\",\n \"display\": \"Building\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"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/Location/41f36770-6bc8-40b6-ba6b-9d60b8b1dc71/_history/MTcxMDg4ODgzNjgyODI0MjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 22:53:56 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg4ODgzNjgyODI0MjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 22:53:56 GMT"
},
{
"key": "Content-Length",
"value": "6472"
},
{
"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": "f2d27d4a-d073-4092-a039-456e96aff304"
},
{
"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\": \"Instalasi Gawat Darurat, Pelayanan Gawat Darurat, Gedung Utama, Lantai 1\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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 \"id\": \"41f36770-6bc8-40b6-ba6b-9d60b8b1dc71\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000002\",\n \"value\": \"IGD\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/75748b7f-6983-4278-ad87-d2ca0bfdae58\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T22:53:56.828242+00:00\",\n \"versionId\": \"MTcxMDg4ODgzNjgyODI0MjAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Ruang Gawat Darurat, Pelayanan Gawat Darurat\",\n \"physicalType\": {\n \"coding\": [\n {\n \"code\": \"bu\",\n \"display\": \"Building\",\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\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"RT0006\",\n \"display\": \"Instalasi Gawat Darurat\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "Location - Create Ruangan Triase",
"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\": \"R-Triase\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruangan Triase, Instalasi Gawat Darurat\",\n \"description\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"RT0032\",\n \"display\": \"Ruangan Triase\"\n }\n ]\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_id}}\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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 \"partOf\": {\n \"reference\": \"Location/41f36770-6bc8-40b6-ba6b-9d60b8b1dc71\",\n \"display\": \"Instalasi Gawat Darurat\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Create Ruangan Triase",
"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\": \"R-Triase\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruangan Triase, Instalasi Gawat Darurat\",\n \"description\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"RT0032\",\n \"display\": \"Ruangan Triase\"\n }\n ]\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_id}}\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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 \"partOf\": {\n \"reference\": \"Location/41f36770-6bc8-40b6-ba6b-9d60b8b1dc71\",\n \"display\": \"Instalasi Gawat Darurat\"\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": "last-modified",
"value": "Tue, 19 Mar 2024 23:11:02 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/6792426b-78b6-452b-a281-b8bcaab05e94/_history/MTcxMDg4OTg2MjMxMTExNDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg4OTg2MjMxMTExNDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 23:11:02 GMT"
},
{
"key": "Content-Length",
"value": "6862"
},
{
"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": "1e77e69f-74d2-4617-99bf-433db4551695"
},
{
"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\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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 \"id\": \"6792426b-78b6-452b-a281-b8bcaab05e94\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000002\",\n \"value\": \"R-Triase\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/75748b7f-6983-4278-ad87-d2ca0bfdae58\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T23:11:02.311114+00:00\",\n \"versionId\": \"MTcxMDg4OTg2MjMxMTExNDAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Ruangan Triase, Instalasi Gawat Darurat\",\n \"partOf\": {\n \"display\": \"Instalasi Gawat Darurat\",\n \"reference\": \"Location/41f36770-6bc8-40b6-ba6b-9d60b8b1dc71\"\n },\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\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"RT0032\",\n \"display\": \"Ruangan Triase\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "Location - Create Ruangan Resusitasi",
"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\": \"R-Resusitasi\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruangan Resusitasi, Instalasi Gawat Darurat\",\n \"description\": \"Ruangan Resusitasi, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"RT0027\",\n \"display\": \"Ruangan Resusitasi\"\n }\n ]\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_id}}\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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 \"partOf\": {\n \"reference\": \"Location/41f36770-6bc8-40b6-ba6b-9d60b8b1dc71\",\n \"display\": \"Instalasi Gawat Darurat\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Create Ruangan Resusitasi",
"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\": \"R-Resusitasi\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruangan Resusitasi, Instalasi Gawat Darurat\",\n \"description\": \"Ruangan Resusitasi, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"RT0027\",\n \"display\": \"Ruangan Resusitasi\"\n }\n ]\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_id}}\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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 \"partOf\": {\n \"reference\": \"Location/41f36770-6bc8-40b6-ba6b-9d60b8b1dc71\",\n \"display\": \"Instalasi Gawat Darurat\"\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": "last-modified",
"value": "Tue, 25 Jun 2024 00:35:20 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxOTI3NTcyMDY2NjY2NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Location/91533307-25e2-4ca2-af06-52bc43eb7ce5/_history/MTcxOTI3NTcyMDY2NjY2NzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 25 Jun 2024 00:35:20 GMT"
},
{
"key": "content-length",
"value": "1444"
},
{
"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": "56354d47-a21f-4a46-8c15-5d40a8548a94"
},
{
"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\": \"Ruangan Resusitasi, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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 \"id\": \"91533307-25e2-4ca2-af06-52bc43eb7ce5\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000002\",\n \"value\": \"R-Resusitasi\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/75748b7f-6983-4278-ad87-d2ca0bfdae58\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-06-25T00:35:20.666667+00:00\",\n \"versionId\": \"MTcxOTI3NTcyMDY2NjY2NzAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Ruangan Resusitasi, Instalasi Gawat Darurat\",\n \"partOf\": {\n \"display\": \"Instalasi Gawat Darurat\",\n \"reference\": \"Location/41f36770-6bc8-40b6-ba6b-9d60b8b1dc71\"\n },\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\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"RT0027\",\n \"display\": \"Ruangan Resusitasi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "Location - Create Ruangan Resusitasi",
"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\": \"R-Resusitasi\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruangan Resusitasi, Instalasi Gawat Darurat\",\n \"description\": \"Ruangan Resusitasi, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"RT0027\",\n \"display\": \"Ruangan Resusitasi\"\n }\n ]\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_id}}\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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 \"partOf\": {\n \"reference\": \"Location/41f36770-6bc8-40b6-ba6b-9d60b8b1dc71\",\n \"display\": \"Instalasi Gawat Darurat\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Create Ruangan Resusitasi",
"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\": \"R-Resusitasi\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruangan Resusitasi, Instalasi Gawat Darurat\",\n \"description\": \"Ruangan Resusitasi, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"RT0027\",\n \"display\": \"Ruangan Resusitasi\"\n }\n ]\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_id}}\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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 \"partOf\": {\n \"reference\": \"Location/41f36770-6bc8-40b6-ba6b-9d60b8b1dc71\",\n \"display\": \"Instalasi Gawat Darurat\"\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": "last-modified",
"value": "Tue, 25 Jun 2024 00:35:20 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxOTI3NTcyMDY2NjY2NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Location/91533307-25e2-4ca2-af06-52bc43eb7ce5/_history/MTcxOTI3NTcyMDY2NjY2NzAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 25 Jun 2024 00:35:20 GMT"
},
{
"key": "content-length",
"value": "1444"
},
{
"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": "56354d47-a21f-4a46-8c15-5d40a8548a94"
},
{
"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\": \"Ruangan Resusitasi, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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 \"id\": \"91533307-25e2-4ca2-af06-52bc43eb7ce5\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000002\",\n \"value\": \"R-Resusitasi\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/75748b7f-6983-4278-ad87-d2ca0bfdae58\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-06-25T00:35:20.666667+00:00\",\n \"versionId\": \"MTcxOTI3NTcyMDY2NjY2NzAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Ruangan Resusitasi, Instalasi Gawat Darurat\",\n \"partOf\": {\n \"display\": \"Instalasi Gawat Darurat\",\n \"reference\": \"Location/41f36770-6bc8-40b6-ba6b-9d60b8b1dc71\"\n },\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\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"RT0027\",\n \"display\": \"Ruangan Resusitasi\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "Organization - Divisi Pelayanan Medik, Keperawatan, dan Penunjang",
"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\": \"Yanmed\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Rumah Sakit SATUSEHAT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Divisi Pelayanan Medik, Keperawatan, dan Penunjang",
"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\": \"Yanmed\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Rumah Sakit 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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg3NDA3OTMzNDk0NTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 18:47:59 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/2d45c343-9ebc-49d7-a608-4a6ca8318e09/_history/MTcxMDg3NDA3OTMzNDk0NTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 18:47:59 GMT"
},
{
"key": "Content-Length",
"value": "6022"
},
{
"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": "f109d059-64f7-4e8b-9928-c223eac9129f"
},
{
"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\": \"2d45c343-9ebc-49d7-a608-4a6ca8318e09\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"Yanmed\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:47:59.334945+00:00\",\n \"versionId\": \"MTcxMDg3NDA3OTMzNDk0NTAwMA\"\n },\n \"name\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"partOf\": {\n \"display\": \"Rumah Sakit SATUSEHAT\",\n \"reference\": \"Organization/10000002\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\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}"
}
]
},
{
"name": "Location - Create Instalasi Gawat Darurat",
"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\": \"IGD\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Gawat Darurat, Pelayanan Gawat Darurat\",\n \"description\": \"Instalasi Gawat Darurat, Pelayanan Gawat Darurat, Gedung Utama, Lantai 1\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"RT0006\",\n \"display\": \"Instalasi Gawat Darurat\"\n }\n ]\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"bu\",\n \"display\": \"Building\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Create Instalasi Gawat Darurat",
"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\": \"IGD\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruang Gawat Darurat, Pelayanan Gawat Darurat\",\n \"description\": \"Instalasi Gawat Darurat, Pelayanan Gawat Darurat, Gedung Utama, Lantai 1\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"RT0006\",\n \"display\": \"Instalasi Gawat Darurat\"\n }\n ]\n }\n ],\n \"physicalType\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/location-physical-type\",\n \"code\": \"bu\",\n \"display\": \"Building\"\n }\n ]\n },\n \"position\": {\n \"longitude\": -6.23115426275766,\n \"latitude\": 106.83239885393944,\n \"altitude\": 0\n },\n \"managingOrganization\": {\n \"reference\": \"Organization/{{Org_id}}\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"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/Location/41f36770-6bc8-40b6-ba6b-9d60b8b1dc71/_history/MTcxMDg4ODgzNjgyODI0MjAwMA"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 22:53:56 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDg4ODgzNjgyODI0MjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 22:53:56 GMT"
},
{
"key": "Content-Length",
"value": "6472"
},
{
"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": "f2d27d4a-d073-4092-a039-456e96aff304"
},
{
"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\": \"Instalasi Gawat Darurat, Pelayanan Gawat Darurat, Gedung Utama, Lantai 1\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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 \"id\": \"41f36770-6bc8-40b6-ba6b-9d60b8b1dc71\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000002\",\n \"value\": \"IGD\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/75748b7f-6983-4278-ad87-d2ca0bfdae58\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T22:53:56.828242+00:00\",\n \"versionId\": \"MTcxMDg4ODgzNjgyODI0MjAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Ruang Gawat Darurat, Pelayanan Gawat Darurat\",\n \"physicalType\": {\n \"coding\": [\n {\n \"code\": \"bu\",\n \"display\": \"Building\",\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\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"RT0006\",\n \"display\": \"Instalasi Gawat Darurat\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n }\n ]\n}"
}
]
},
{
"name": "Organization - Create Pelayanan Gawat Darurat",
"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\": \"Pelayanan-IGD\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Pelayanan Gawat Darurat, Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Organization",
"host": [
"{{base_url}}"
],
"path": [
"Organization"
]
}
},
"response": [
{
"name": "Organization - Create Pelayanan Gawat Darurat",
"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\": \"Pelayanan-IGD\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/organization-type\",\n \"code\": \"dept\",\n \"display\": \"Hospital Department\"\n }\n ]\n }\n ],\n \"name\": \"Pelayanan Gawat Darurat, Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\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\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\"\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/\"MTcxMDg4ODY0MjU0MDA0NTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 19 Mar 2024 22:50:42 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/75748b7f-6983-4278-ad87-d2ca0bfdae58/_history/MTcxMDg4ODY0MjU0MDA0NTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 22:50:42 GMT"
},
{
"key": "Content-Length",
"value": "6378"
},
{
"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": "2afa36e8-46d0-410b-8a95-ee8c9bd60429"
},
{
"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\": \"75748b7f-6983-4278-ad87-d2ca0bfdae58\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/organization/10000002\",\n \"use\": \"official\",\n \"value\": \"Pelayanan-IGD\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T22:50:42.540045+00:00\",\n \"versionId\": \"MTcxMDg4ODY0MjU0MDA0NTAwMA\"\n },\n \"name\": \"Pelayanan Gawat Darurat, Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"partOf\": {\n \"display\": \"Divisi Pelayanan Medik, Keperawatan, dan Penunjang\",\n \"reference\": \"Organization/2d45c343-9ebc-49d7-a608-4a6ca8318e09\"\n },\n \"resourceType\": \"Organization\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\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}"
}
]
},
{
"name": "Location - Create Ruangan Triase",
"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\": \"R-Triase\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruangan Triase, Instalasi Gawat Darurat\",\n \"description\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"RT0032\",\n \"display\": \"Ruangan Triase\"\n }\n ]\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_id}}\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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 \"partOf\": {\n \"reference\": \"Location/41f36770-6bc8-40b6-ba6b-9d60b8b1dc71\",\n \"display\": \"Instalasi Gawat Darurat\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Location",
"host": [
"{{base_url}}"
],
"path": [
"Location"
]
}
},
"response": [
{
"name": "Location - Create Ruangan Triase",
"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\": \"R-Triase\"\n }\n ],\n \"status\": \"active\",\n \"name\": \"Ruangan Triase, Instalasi Gawat Darurat\",\n \"description\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"mode\": \"instance\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"work\",\n \"value\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\",\n \"code\": \"RT0032\",\n \"display\": \"Ruangan Triase\"\n }\n ]\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_id}}\"\n },\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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 \"partOf\": {\n \"reference\": \"Location/41f36770-6bc8-40b6-ba6b-9d60b8b1dc71\",\n \"display\": \"Instalasi Gawat Darurat\"\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": "last-modified",
"value": "Tue, 19 Mar 2024 23:11:02 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/6792426b-78b6-452b-a281-b8bcaab05e94/_history/MTcxMDg4OTg2MjMxMTExNDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDg4OTg2MjMxMTExNDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 19 Mar 2024 23:11:02 GMT"
},
{
"key": "Content-Length",
"value": "6862"
},
{
"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": "1e77e69f-74d2-4617-99bf-433db4551695"
},
{
"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\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/LocationServiceClass\",\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 \"id\": \"6792426b-78b6-452b-a281-b8bcaab05e94\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/location/10000002\",\n \"value\": \"R-Triase\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/75748b7f-6983-4278-ad87-d2ca0bfdae58\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T23:11:02.311114+00:00\",\n \"versionId\": \"MTcxMDg4OTg2MjMxMTExNDAwMA\"\n },\n \"mode\": \"instance\",\n \"name\": \"Ruangan Triase, Instalasi Gawat Darurat\",\n \"partOf\": {\n \"display\": \"Instalasi Gawat Darurat\",\n \"reference\": \"Location/41f36770-6bc8-40b6-ba6b-9d60b8b1dc71\"\n },\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\": \"1500567\"\n },\n {\n \"system\": \"email\",\n \"use\": \"work\",\n \"value\": \"rs-satusehat@dto.kemkes.go.id\"\n },\n {\n \"system\": \"url\",\n \"use\": \"work\",\n \"value\": \"dto.kemkes.go.id\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"RT0032\",\n \"display\": \"Ruangan Triase\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/location-type\"\n }\n ]\n }\n ]\n}"
}
]
}
]
},
{
"name": "01. Mencari Data Pasien dan Nakes",
"item": [
{
"name": "Patient - ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Patient_Id\", data.id);\r",
"pm.collectionVariables.set(\"Patient_Name\", \"Jane Smith\")"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "P03647103112"
}
]
}
},
"response": [
{
"name": "Patient - ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "P03647103112"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcwNTM5MDU2MzM3NTQ0MzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 16 Jan 2024 07:36:03 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 02 Mar 2024 07:50:08 GMT"
},
{
"key": "content-length",
"value": "1974"
},
{
"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": "738a6cef-4780-46d3-a2ff-3bcc8c68f191"
},
{
"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 \"id\": \"P03647103112\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P03647103112\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d15ed5ce-85f0-49f5-abc0-b0ebb6b29526\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d20bbee0-af21-4794-a95f-47579d1e15be\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e28ebe98-2ed7-46a9-a795-6dbcbd23d38c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7a39d2c4-6c52-4457-82df-24b69efe31e1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35e9a64e-3896-4235-bae4-5a6bdd95e86b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cd8fe34c-b4f4-4eca-a081-b4b0786996b1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/08e427c5-2e10-40df-be8f-7e05ba219763\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7b046615-320d-4e7c-a414-72036eab9706\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ba7906d5-b0c0-41ef-ac07-3009aed90874\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/1a3be152-cb5c-4971-8add-9722dd69d4dc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/82aad5d5-960a-4dc4-8661-82be0cba6967\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/33e74d62-68c6-4dda-80de-776efd96fd18\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/af68e558-4e05-4569-84c0-1889708462cb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/71f9b4fa-8b78-409e-b033-aeee997740ab\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ee3f02d-a628-4fba-a59c-d57d47df75fa\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/2c3565ac-2106-4474-9bad-484755f73e4c\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-01-16T07:36:03.375443+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\": \"MTcwNTM5MDU2MzM3NTQ0MzAwMA\"\n },\n \"resourceType\": \"Patient\"\n}"
}
]
},
{
"name": "Patient - Search Name, Birthdate, Gender",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"pm.collectionVariables.set(\"Patient_Id\", data.id);\r",
"data.name.forEach(name =>{\r",
" if(name.use === \"official\"){pm.collectionVariables.set(\"Patient_Name\", name.text)}\r",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 2&birthdate=2010-04-08&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 2"
},
{
"key": "birthdate",
"value": "2010-04-08"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"response": [
{
"name": "Patient - Search Name, Birthdate, Gender",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 2&birthdate=2010-04-08&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 2"
},
{
"key": "birthdate",
"value": "2010-04-08"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 02 Mar 2024 07:52:39 GMT"
},
{
"key": "content-length",
"value": "3361"
},
{
"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": "c341ef0e-57ab-4f7e-9ff3-8477811550d3"
},
{
"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/P03647103112\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"MALANG\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"7\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"33\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"2005\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"32\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"3\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"DUSUN KRA***\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"2010-04-08\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P03647103112\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P03647103112\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d15ed5ce-85f0-49f5-abc0-b0ebb6b29526\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d20bbee0-af21-4794-a95f-47579d1e15be\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e28ebe98-2ed7-46a9-a795-6dbcbd23d38c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7a39d2c4-6c52-4457-82df-24b69efe31e1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35e9a64e-3896-4235-bae4-5a6bdd95e86b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cd8fe34c-b4f4-4eca-a081-b4b0786996b1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/08e427c5-2e10-40df-be8f-7e05ba219763\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7b046615-320d-4e7c-a414-72036eab9706\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ba7906d5-b0c0-41ef-ac07-3009aed90874\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/1a3be152-cb5c-4971-8add-9722dd69d4dc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/82aad5d5-960a-4dc4-8661-82be0cba6967\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/33e74d62-68c6-4dda-80de-776efd96fd18\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/af68e558-4e05-4569-84c0-1889708462cb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/71f9b4fa-8b78-409e-b033-aeee997740ab\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ee3f02d-a628-4fba-a59c-d57d47df75fa\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/2c3565ac-2106-4474-9bad-484755f73e4c\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-01-16T07:36:03.375443+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\": \"MTcwNTM5MDU2MzM3NTQ0MzAwMA\"\n },\n \"multipleBirthBoolean\": false,\n \"name\": [\n {\n \"text\": \"patient 2\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Practitioner - By ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Practitioner_Id\", data.id);\r",
"var Practitioner_name = \"\";\r",
"data.name.forEach(name => {\r",
" if(name.use === \"official\"){\r",
" name.prefix.forEach(prefix => {Practitioner_name = Practitioner_name + prefix});\r",
" Practitioner_name = Practitioner_name + name.text;\r",
" name.suffix.forEach(suffix =>{Practitioner_name = Practitioner_name +\",\"+ suffix});\r",
" }\r",
"})\r",
"pm.collectionVariables.set(\"Practitioner_Name\", Practitioner_name);\r",
"console.log(Practitioner_name)\r",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000001"
}
]
}
},
"response": [
{
"name": "Practitioner - By ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000001"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTY2OTE3MjI5NTIzMTQ1MjAwMA\""
},
{
"key": "content-type",
"value": "application/fhir+json;charset=utf-8"
},
{
"key": "last-modified",
"value": "Wed, 23 Nov 2022 02:58:15 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Thu, 24 Nov 2022 00:22:35 GMT"
},
{
"key": "content-length",
"value": "3189"
},
{
"key": "x-xss-protection",
"value": "0"
},
{
"key": "x-frame-options",
"value": "SAMEORIGIN"
},
{
"key": "x-content-type-options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "a0a33bde-3338-437c-bd7f-15de9fb3e8e8"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionId\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2023-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"voigt@xyz.com\"\n }\n ]\n}"
}
]
},
{
"name": "Patient - Search Name, Birthdate, Gender",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var data = bundle.entry[0].resource;\r",
"pm.collectionVariables.set(\"Patient_Id\", data.id);\r",
"data.name.forEach(name =>{\r",
" if(name.use === \"official\"){pm.collectionVariables.set(\"Patient_Name\", name.text)}\r",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 2&birthdate=2010-04-08&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 2"
},
{
"key": "birthdate",
"value": "2010-04-08"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"response": [
{
"name": "Patient - Search Name, Birthdate, Gender",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{base_url}}/Patient?name=patient 2&birthdate=2010-04-08&gender=female",
"host": [
"{{base_url}}"
],
"path": [
"Patient"
],
"query": [
{
"key": "name",
"value": "patient 2"
},
{
"key": "birthdate",
"value": "2010-04-08"
},
{
"key": "gender",
"value": "female"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 02 Mar 2024 07:52:39 GMT"
},
{
"key": "content-length",
"value": "3361"
},
{
"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": "c341ef0e-57ab-4f7e-9ff3-8477811550d3"
},
{
"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/P03647103112\",\n \"resource\": {\n \"active\": true,\n \"address\": [\n {\n \"city\": \"MALANG\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"35\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"7\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"33\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"2005\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"32\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"3\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"DUSUN KRA***\"\n ],\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"2010-04-08\",\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"code\": \"id-ID\",\n \"display\": \"Indonesian\",\n \"system\": \"urn:ietf:bcp:47\"\n }\n ],\n \"text\": \"Indonesian\"\n },\n \"preferred\": true\n }\n ],\n \"deceasedBoolean\": false,\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/citizenshipStatus\",\n \"valueCode\": \"WNI\"\n }\n ],\n \"gender\": \"female\",\n \"id\": \"P03647103112\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P03647103112\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d15ed5ce-85f0-49f5-abc0-b0ebb6b29526\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d20bbee0-af21-4794-a95f-47579d1e15be\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e28ebe98-2ed7-46a9-a795-6dbcbd23d38c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7a39d2c4-6c52-4457-82df-24b69efe31e1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35e9a64e-3896-4235-bae4-5a6bdd95e86b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cd8fe34c-b4f4-4eca-a081-b4b0786996b1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/08e427c5-2e10-40df-be8f-7e05ba219763\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7b046615-320d-4e7c-a414-72036eab9706\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ba7906d5-b0c0-41ef-ac07-3009aed90874\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/1a3be152-cb5c-4971-8add-9722dd69d4dc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/82aad5d5-960a-4dc4-8661-82be0cba6967\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/33e74d62-68c6-4dda-80de-776efd96fd18\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/af68e558-4e05-4569-84c0-1889708462cb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/71f9b4fa-8b78-409e-b033-aeee997740ab\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ee3f02d-a628-4fba-a59c-d57d47df75fa\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/2c3565ac-2106-4474-9bad-484755f73e4c\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-01-16T07:36:03.375443+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\": \"MTcwNTM5MDU2MzM3NTQ0MzAwMA\"\n },\n \"multipleBirthBoolean\": false,\n \"name\": [\n {\n \"text\": \"patient 2\",\n \"use\": \"official\"\n }\n ],\n \"resourceType\": \"Patient\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/Patient/?birthdate=2010-04-08&gender=female&name=patient+2\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "Practitioner - By ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Practitioner_Id\", data.id);\r",
"var Practitioner_name = \"\";\r",
"data.name.forEach(name => {\r",
" if(name.use === \"official\"){\r",
" name.prefix.forEach(prefix => {Practitioner_name = Practitioner_name + prefix});\r",
" Practitioner_name = Practitioner_name + name.text;\r",
" name.suffix.forEach(suffix =>{Practitioner_name = Practitioner_name +\",\"+ suffix});\r",
" }\r",
"})\r",
"pm.collectionVariables.set(\"Practitioner_Name\", Practitioner_name);\r",
"console.log(Practitioner_name)\r",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000001"
}
]
}
},
"response": [
{
"name": "Practitioner - By ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Practitioner/:id",
"host": [
"{{base_url}}"
],
"path": [
"Practitioner",
":id"
],
"variable": [
{
"key": "id",
"value": "N10000001"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTY2OTE3MjI5NTIzMTQ1MjAwMA\""
},
{
"key": "content-type",
"value": "application/fhir+json;charset=utf-8"
},
{
"key": "last-modified",
"value": "Wed, 23 Nov 2022 02:58:15 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Thu, 24 Nov 2022 00:22:35 GMT"
},
{
"key": "content-length",
"value": "3189"
},
{
"key": "x-xss-protection",
"value": "0"
},
{
"key": "x-frame-options",
"value": "SAMEORIGIN"
},
{
"key": "x-content-type-options",
"value": "nosniff"
},
{
"key": "x-request-id",
"value": "a0a33bde-3338-437c-bd7f-15de9fb3e8e8"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Alt-Svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
}
],
"cookie": [],
"body": "{\n \"address\": [\n {\n \"city\": \"Jakarta\",\n \"country\": \"ID\",\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"province\",\n \"valueCode\": \"10\"\n },\n {\n \"url\": \"city\",\n \"valueCode\": \"1010\"\n },\n {\n \"url\": \"district\",\n \"valueCode\": \"1010101\"\n },\n {\n \"url\": \"village\",\n \"valueCode\": \"1010101101\"\n },\n {\n \"url\": \"rt\",\n \"valueCode\": \"1\"\n },\n {\n \"url\": \"rw\",\n \"valueCode\": \"2\"\n }\n ],\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/administrativeCode\"\n }\n ],\n \"line\": [\n \"Gd. Prof. Dr. Sujudi Lt.5, Jl. H.R. Rasuna Said Blok X5 Kav. 4-9 Kuningan\"\n ],\n \"postalCode\": \"12950\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"1945-11-17\",\n \"gender\": \"male\",\n \"id\": \"N10000001\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nakes-his-number\",\n \"use\": \"official\",\n \"value\": \"N10000001\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"367400001111222\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2022-11-23T02:58:15.231452+00:00\",\n \"versionId\": \"MTY2OTE3MjI5NTIzMTQ1MjAwMA\"\n },\n \"name\": [\n {\n \"prefix\": [\n \"Dr.\",\n \"dr.\"\n ],\n \"suffix\": [\n \"MARS.\"\n ],\n \"text\": \"Voigt\",\n \"use\": \"official\"\n }\n ],\n \"qualification\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"STR-KKI\",\n \"display\": \"Surat Tanda Registrasi Dokter\",\n \"system\": \"http://terminology.kemkes.go.id/v1-0302\"\n }\n ]\n },\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/str-kki-number\",\n \"use\": \"official\",\n \"value\": \"2938/28377/STR/00001\"\n }\n ],\n \"issuer\": {\n \"display\": \"Konsil Kedokteran Indonesia\",\n \"reference\": \"Organization/10000003\"\n },\n \"period\": {\n \"end\": \"2023-01-01\",\n \"start\": \"1995-01-01\"\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"BS\",\n \"display\": \"Bachelor of Science\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0360\"\n }\n ],\n \"text\": \"Bachelor of Science\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example-university.ac.id/certificate-number\",\n \"value\": \"12345\"\n }\n ],\n \"issuer\": {\n \"display\": \"Universitas Example\",\n \"reference\": \"Organization/10000002\"\n },\n \"period\": {\n \"start\": \"1995\"\n }\n }\n ],\n \"resourceType\": \"Practitioner\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"mobile\",\n \"value\": \"08123456789\"\n },\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"+622123456789\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"voigt@xyz.com\"\n }\n ]\n}"
}
]
},
{
"name": "Patient - ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Patient_Id\", data.id);\r",
"pm.collectionVariables.set(\"Patient_Name\", \"Jane Smith\")"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true,
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "P03647103112"
}
]
}
},
"response": [
{
"name": "Patient - ID",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"url": {
"raw": "{{base_url}}/Patient/:id",
"host": [
"{{base_url}}"
],
"path": [
"Patient",
":id"
],
"variable": [
{
"key": "id",
"value": "P03647103112"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcwNTM5MDU2MzM3NTQ0MzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 16 Jan 2024 07:36:03 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 02 Mar 2024 07:50:08 GMT"
},
{
"key": "content-length",
"value": "1974"
},
{
"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": "738a6cef-4780-46d3-a2ff-3bcc8c68f191"
},
{
"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 \"id\": \"P03647103112\",\n \"identifier\": [\n {\n \"system\": \"https://fhir.kemkes.go.id/id/ihs-number\",\n \"use\": \"official\",\n \"value\": \"P03647103112\"\n },\n {\n \"system\": \"https://fhir.kemkes.go.id/id/nik\",\n \"use\": \"official\",\n \"value\": \"################\"\n }\n ],\n \"link\": [\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d15ed5ce-85f0-49f5-abc0-b0ebb6b29526\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/d20bbee0-af21-4794-a95f-47579d1e15be\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/e28ebe98-2ed7-46a9-a795-6dbcbd23d38c\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7a39d2c4-6c52-4457-82df-24b69efe31e1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/35e9a64e-3896-4235-bae4-5a6bdd95e86b\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/cd8fe34c-b4f4-4eca-a081-b4b0786996b1\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/08e427c5-2e10-40df-be8f-7e05ba219763\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/7b046615-320d-4e7c-a414-72036eab9706\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/ba7906d5-b0c0-41ef-ac07-3009aed90874\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/1a3be152-cb5c-4971-8add-9722dd69d4dc\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/82aad5d5-960a-4dc4-8661-82be0cba6967\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/33e74d62-68c6-4dda-80de-776efd96fd18\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/af68e558-4e05-4569-84c0-1889708462cb\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/71f9b4fa-8b78-409e-b033-aeee997740ab\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/6ee3f02d-a628-4fba-a59c-d57d47df75fa\"\n },\n \"type\": \"refer\"\n },\n {\n \"other\": {\n \"reference\": \"RelatedPerson/2c3565ac-2106-4474-9bad-484755f73e4c\"\n },\n \"type\": \"refer\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-01-16T07:36:03.375443+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\": \"MTcwNTM5MDU2MzM3NTQ0MzAwMA\"\n },\n \"resourceType\": \"Patient\"\n}"
}
]
}
]
},
{
"name": "02. Pendaftaran Kunjungan IGD",
"item": [
{
"name": "GET EOC Jantung (type=CAD)",
"item": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active (Get EOC dari any organization)",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active (Get EOC dari any organization)",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
}
]
}
},
"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, 14 May 2024 03:43:51 GMT"
},
{
"key": "content-length",
"value": "1460"
},
{
"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": "5d5f547e-0c85-48d0-b824-cc42504037e0"
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"resource\": {\n \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/registry-id/\",\n \"value\": \"CADC20243000000002\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active dan organization org_id faskes (Get EOC dari faskes sendiri)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var id = bundle.entry[0].resource.id;\r",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active&organization=10000002",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
},
{
"key": "organization",
"value": "10000002",
"description": "input your Org_id here"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active dan organization org_id faskes (Get EOC dari faskes sendiri) Copy",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active&organization=10000002",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
},
{
"key": "organization",
"value": "10000002",
"description": "input your Org_id here"
}
]
}
},
"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, 21 May 2024 21:02:30 GMT"
},
{
"key": "content-length",
"value": "566"
},
{
"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": "f890478b-fc24-4680-a45a-fd7e9378e934"
},
{
"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 \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?organization=10000002&patient=100000030006&status=active&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?organization=10000002&patient=100000030006&status=active&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?organization=10000002&patient=100000030006&status=active&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 0,\n \"type\": \"searchset\",\n \"entry\": []\n}"
}
]
},
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active (Get EOC dari any organization)",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active (Get EOC dari any organization)",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
}
]
}
},
"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, 14 May 2024 03:43:51 GMT"
},
{
"key": "content-length",
"value": "1460"
},
{
"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": "5d5f547e-0c85-48d0-b824-cc42504037e0"
},
{
"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/EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"resource\": {\n \"id\": \"0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/10000005\",\n \"value\": \"EOC0000010\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/suspect-id/\",\n \"value\": \"CADS20243000000003\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/episode-of-care/registry-id/\",\n \"value\": \"CADC20243000000002\"\n }\n ],\n \"managingOrganization\": {\n \"reference\": \"Organization/10000005\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T03:19:24.904547+00:00\",\n \"versionId\": \"MTcxNTY1Njc2NDkwNDU0NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"period\": {\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"resourceType\": \"EpisodeOfCare\",\n \"status\": \"active\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-15T03:13:00+00:00\",\n \"start\": \"2024-03-15T02:50:00+00:00\"\n },\n \"status\": \"waitlist\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-15T03:13:00+00:00\"\n },\n \"status\": \"active\"\n }\n ],\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"CAD\",\n \"display\": \"Coronary Arterial Disease Management Care\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/episodeofcare-type\"\n }\n ]\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?patient=100000030006&status=waitlist&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 1,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active dan organization org_id faskes (Get EOC dari faskes sendiri)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var bundle = pm.response.json();\r",
"var id = bundle.entry[0].resource.id;\r",
"pm.collectionVariables.set(\"EpisodeOfCare_uuid\", id);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active&organization=10000002",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
},
{
"key": "organization",
"value": "10000002",
"description": "input your Org_id here"
}
]
}
},
"response": [
{
"name": "GET - EpisodeOfCare dengan subject Patient dan type CAD dengan status active dan organization org_id faskes (Get EOC dari faskes sendiri) Copy",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/EpisodeOfCare?patient=100000030006&type=CAD&status=active&organization=10000002",
"host": [
"{{base_url}}"
],
"path": [
"EpisodeOfCare"
],
"query": [
{
"key": "patient",
"value": "100000030006",
"description": "IHS no of patient involved in CAD"
},
{
"key": "type",
"value": "CAD",
"description": "type of EpisodeOfCare, for this Use Case, it's CAD (Coronary Arterial Disease Care Management)"
},
{
"key": "status",
"value": "active",
"description": "status should be active"
},
{
"key": "organization",
"value": "10000002",
"description": "input your Org_id here"
}
]
}
},
"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, 21 May 2024 21:02:30 GMT"
},
{
"key": "content-length",
"value": "566"
},
{
"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": "f890478b-fc24-4680-a45a-fd7e9378e934"
},
{
"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 \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?organization=10000002&patient=100000030006&status=active&type=CAD\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?organization=10000002&patient=100000030006&status=active&type=CAD\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/EpisodeOfCare/?organization=10000002&patient=100000030006&status=active&type=CAD\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 0,\n \"type\": \"searchset\",\n \"entry\": []\n}"
}
]
}
]
},
{
"name": "Pembuatan Kunjungan",
"item": [
{
"name": "Encounter - Masuk Kunjungan IGD",
"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\": \"2024100001\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganTriase}}\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:30: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\": \"2024-03-18T00:30: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 - Masuk Kunjungan IGD",
"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\": \"2024100001\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganTriase}}\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:30: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\": \"2024-03-18T00:30: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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY3NTIzNzcxMzg0OTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 08:27:17 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/cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0/_history/MTcxNTY3NTIzNzcxMzg0OTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 08:27:17 GMT"
},
{
"key": "content-length",
"value": "1649"
},
{
"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": "f31aa1d1-db82-43c5-885a-3850e68e6d56"
},
{
"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\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\"\n }\n ],\n \"id\": \"cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000002\",\n \"value\": \"2024100001\"\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\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"reference\": \"Location/6792426b-78b6-452b-a281-b8bcaab05e94\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T08:27:17.713849+00:00\",\n \"versionId\": \"MTcxNTY3NTIzNzcxMzg0OTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\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\": \"2024-03-18T00:30:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000002\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Encounter - Masuk Kunjungan IGD",
"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\": \"2024100001\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganTriase}}\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:30: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\": \"2024-03-18T00:30: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 - Masuk Kunjungan IGD",
"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\": \"2024100001\"\n }\n ],\n \"status\": \"arrived\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganTriase}}\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:30: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\": \"2024-03-18T00:30: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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY3NTIzNzcxMzg0OTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 08:27:17 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/cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0/_history/MTcxNTY3NTIzNzcxMzg0OTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 08:27:17 GMT"
},
{
"key": "content-length",
"value": "1649"
},
{
"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": "f31aa1d1-db82-43c5-885a-3850e68e6d56"
},
{
"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\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/0fd471e2-cc1d-47e0-af7c-9728f2ae0ab8\"\n }\n ],\n \"id\": \"cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000002\",\n \"value\": \"2024100001\"\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\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"reference\": \"Location/6792426b-78b6-452b-a281-b8bcaab05e94\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T08:27:17.713849+00:00\",\n \"versionId\": \"MTcxNTY3NTIzNzcxMzg0OTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\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\": \"2024-03-18T00:30:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000002\"\n },\n \"status\": \"arrived\",\n \"statusHistory\": [\n {\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"status\": \"arrived\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Masuk ke Ruangan Triase",
"item": [
{
"name": "Encounter - Masuk ke Ruangan Triase",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024000001\"\n }\n ],\n \"status\": \"triaged\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_Jantung}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganTriase}}\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:31: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\": \"2024-03-18T00:30:00+00:00\",\n \"end\": \"2024-03-18T00:31:00+00:00\"\n }\n },\n {\n \"status\": \"triaged\",\n \"period\": {\n \"start\": \"2024-03-18T00:31: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 ke Ruangan Triase",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024000001\"\n }\n ],\n \"status\": \"triaged\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_Jantung}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganTriase}}\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:31: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\": \"2024-03-18T00:30:00+00:00\",\n \"end\": \"2024-03-18T00:31:00+00:00\"\n }\n },\n {\n \"status\": \"triaged\",\n \"period\": {\n \"start\": \"2024-03-18T00:31: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": "last-modified",
"value": "Thu, 21 Mar 2024 07:57:12 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/cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0/_history/MTcxMTAwNzgzMjI3NDU1MTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMTAwNzgzMjI3NDU1MTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 07:57:12 GMT"
},
{
"key": "Content-Length",
"value": "8324"
},
{
"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": "75155c3d-de50-4e80-a547-aca01613fea5"
},
{
"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\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/dbd39f7a-cbac-4be0-968b-bda955f8eb8c\"\n }\n ],\n \"id\": \"cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000002\",\n \"value\": \"2024000001\"\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\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"reference\": \"Location/6792426b-78b6-452b-a281-b8bcaab05e94\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:31:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T07:57:12.274551+00:00\",\n \"versionId\": \"MTcxMTAwNzgzMjI3NDU1MTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\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\": \"2024-03-18T00:30:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000002\"\n },\n \"status\": \"triaged\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-18T00:31:00+00:00\",\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-18T00:31:00+00:00\"\n },\n \"status\": \"triaged\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Encounter - Masuk ke Ruangan Triase",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024000001\"\n }\n ],\n \"status\": \"triaged\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_Jantung}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganTriase}}\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:31: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\": \"2024-03-18T00:30:00+00:00\",\n \"end\": \"2024-03-18T00:31:00+00:00\"\n }\n },\n {\n \"status\": \"triaged\",\n \"period\": {\n \"start\": \"2024-03-18T00:31: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 ke Ruangan Triase",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024000001\"\n }\n ],\n \"status\": \"triaged\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_Jantung}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganTriase}}\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:31: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\": \"2024-03-18T00:30:00+00:00\",\n \"end\": \"2024-03-18T00:31:00+00:00\"\n }\n },\n {\n \"status\": \"triaged\",\n \"period\": {\n \"start\": \"2024-03-18T00:31: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": "last-modified",
"value": "Thu, 21 Mar 2024 07:57:12 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/cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0/_history/MTcxMTAwNzgzMjI3NDU1MTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMTAwNzgzMjI3NDU1MTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 07:57:12 GMT"
},
{
"key": "Content-Length",
"value": "8324"
},
{
"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": "75155c3d-de50-4e80-a547-aca01613fea5"
},
{
"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\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/dbd39f7a-cbac-4be0-968b-bda955f8eb8c\"\n }\n ],\n \"id\": \"cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000002\",\n \"value\": \"2024000001\"\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\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"reference\": \"Location/6792426b-78b6-452b-a281-b8bcaab05e94\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:31:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T07:57:12.274551+00:00\",\n \"versionId\": \"MTcxMTAwNzgzMjI3NDU1MTAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\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\": \"2024-03-18T00:30:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000002\"\n },\n \"status\": \"triaged\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-18T00:31:00+00:00\",\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-18T00:31:00+00:00\"\n },\n \"status\": \"triaged\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Masuk ke Ruangan Resusitasi",
"item": [
{
"name": "Masuk ke Ruangan Resusitasi",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024000001\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_Jantung}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganTriase}}\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:31:00+00:00\",\n \"end\": \"2024-03-18T00:35: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 \"location\": {\n \"reference\": \"Location/{{Location_RuanganResusitasi}}\",\n \"display\": \"Ruangan Resusitasi, Instalasi Gawat Darurat, Pelayanan Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:35: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\": \"2024-03-18T00:30:00+00:00\",\n \"end\": \"2024-03-18T00:31:00+00:00\"\n }\n },\n {\n \"status\": \"triaged\",\n \"period\": {\n \"start\": \"2024-03-18T00:31:00+00:00\",\n \"end\": \"2024-03-18T00:35:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-18T00:35: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": "Masuk ke Ruangan Resusitasi",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024000001\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_Jantung}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganTriase}}\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:31:00+00:00\",\n \"end\": \"2024-03-18T00:35: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 \"location\": {\n \"reference\": \"Location/{{Location_RuanganResusitasi}}\",\n \"display\": \"Ruangan Resusitasi, Instalasi Gawat Darurat, Pelayanan Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:35: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\": \"2024-03-18T00:30:00+00:00\",\n \"end\": \"2024-03-18T00:31:00+00:00\"\n }\n },\n {\n \"status\": \"triaged\",\n \"period\": {\n \"start\": \"2024-03-18T00:31:00+00:00\",\n \"end\": \"2024-03-18T00:35:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-18T00:35: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": "last-modified",
"value": "Tue, 25 Jun 2024 00:38:04 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/cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0/_history/MTcxOTI3NTg4NDI1NjA1MzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxOTI3NTg4NDI1NjA1MzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 25 Jun 2024 00:38:04 GMT"
},
{
"key": "content-length",
"value": "2605"
},
{
"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": "0d46ecbc-8536-4892-ae10-334bf8dac49c"
},
{
"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\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/dbd39f7a-cbac-4be0-968b-bda955f8eb8c\"\n }\n ],\n \"id\": \"cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000002\",\n \"value\": \"2024000001\"\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\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"reference\": \"Location/6792426b-78b6-452b-a281-b8bcaab05e94\"\n },\n \"period\": {\n \"end\": \"2024-03-18T00:35:00+00:00\",\n \"start\": \"2024-03-18T00:31:00+00:00\"\n }\n },\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\": \"Ruangan Resusitasi, Instalasi Gawat Darurat, Pelayanan Gawat Darurat, Gedung Utama, Lantai 1\",\n \"reference\": \"Location/91533307-25e2-4ca2-af06-52bc43eb7ce5\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:35:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-06-25T00:38:04.256053+00:00\",\n \"versionId\": \"MTcxOTI3NTg4NDI1NjA1MzAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\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\": \"2024-03-18T00:30:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000002\"\n },\n \"status\": \"in-progress\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-18T00:31:00+00:00\",\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"end\": \"2024-03-18T00:35:00+00:00\",\n \"start\": \"2024-03-18T00:31:00+00:00\"\n },\n \"status\": \"triaged\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-18T00:35:00+00:00\"\n },\n \"status\": \"in-progress\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Masuk ke Ruangan Resusitasi",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024000001\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_Jantung}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganTriase}}\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:31:00+00:00\",\n \"end\": \"2024-03-18T00:35: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 \"location\": {\n \"reference\": \"Location/{{Location_RuanganResusitasi}}\",\n \"display\": \"Ruangan Resusitasi, Instalasi Gawat Darurat, Pelayanan Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:35: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\": \"2024-03-18T00:30:00+00:00\",\n \"end\": \"2024-03-18T00:31:00+00:00\"\n }\n },\n {\n \"status\": \"triaged\",\n \"period\": {\n \"start\": \"2024-03-18T00:31:00+00:00\",\n \"end\": \"2024-03-18T00:35:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-18T00:35: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": "Masuk ke Ruangan Resusitasi",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"3ffb9810-b964-4e29-b8ed-f3aa2d9eb7a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"2024000001\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/{{EpisodeOfCare_Jantung}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\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\": \"Rus, MD\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/{{Location_RuanganTriase}}\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:31:00+00:00\",\n \"end\": \"2024-03-18T00:35: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 \"location\": {\n \"reference\": \"Location/{{Location_RuanganResusitasi}}\",\n \"display\": \"Ruangan Resusitasi, Instalasi Gawat Darurat, Pelayanan Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:35: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\": \"2024-03-18T00:30:00+00:00\",\n \"end\": \"2024-03-18T00:31:00+00:00\"\n }\n },\n {\n \"status\": \"triaged\",\n \"period\": {\n \"start\": \"2024-03-18T00:31:00+00:00\",\n \"end\": \"2024-03-18T00:35:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2024-03-18T00:35: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": "last-modified",
"value": "Tue, 25 Jun 2024 00:38:04 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/cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0/_history/MTcxOTI3NTg4NDI1NjA1MzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxOTI3NTg4NDI1NjA1MzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 25 Jun 2024 00:38:04 GMT"
},
{
"key": "content-length",
"value": "2605"
},
{
"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": "0d46ecbc-8536-4892-ae10-334bf8dac49c"
},
{
"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\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"episodeOfCare\": [\n {\n \"reference\": \"EpisodeOfCare/dbd39f7a-cbac-4be0-968b-bda955f8eb8c\"\n }\n ],\n \"id\": \"cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000002\",\n \"value\": \"2024000001\"\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\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"reference\": \"Location/6792426b-78b6-452b-a281-b8bcaab05e94\"\n },\n \"period\": {\n \"end\": \"2024-03-18T00:35:00+00:00\",\n \"start\": \"2024-03-18T00:31:00+00:00\"\n }\n },\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\": \"Ruangan Resusitasi, Instalasi Gawat Darurat, Pelayanan Gawat Darurat, Gedung Utama, Lantai 1\",\n \"reference\": \"Location/91533307-25e2-4ca2-af06-52bc43eb7ce5\"\n },\n \"period\": {\n \"start\": \"2024-03-18T00:35:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-06-25T00:38:04.256053+00:00\",\n \"versionId\": \"MTcxOTI3NTg4NDI1NjA1MzAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\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\": \"2024-03-18T00:30:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000002\"\n },\n \"status\": \"in-progress\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2024-03-18T00:31:00+00:00\",\n \"start\": \"2024-03-18T00:30:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"end\": \"2024-03-18T00:35:00+00:00\",\n \"start\": \"2024-03-18T00:31:00+00:00\"\n },\n \"status\": \"triaged\"\n },\n {\n \"period\": {\n \"start\": \"2024-03-18T00:35:00+00:00\"\n },\n \"status\": \"in-progress\"\n }\n ],\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "03. Data Triase dan Gawat Darurat",
"item": [
{
"name": "Sarana Transportasi Kedatangan",
"item": [
{
"name": "Observation - Sarana Transportasi Kedatangan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"74286-6\",\n \"display\": \"Transport mode to hospital\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"71783008\",\n \"display\": \"Car\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Sarana Transportasi Kedatangan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"74286-6\",\n \"display\": \"Transport mode to hospital\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"71783008\",\n \"display\": \"Car\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/827037dc-17da-4d00-864a-261841455db2/_history/MTY5ODYzMjAxNjkwODk0NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Mon, 30 Oct 2023 02:13:36 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5ODYzMjAxNjkwODk0NjAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Mon, 30 Oct 2023 02:13:36 GMT"
},
{
"key": "content-length",
"value": "835"
},
{
"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": "4e458589-0974-44e5-b2a5-fcf9e821b619"
},
{
"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\": \"74286-6\",\n \"display\": \"Transport mode to hospital\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"827037dc-17da-4d00-864a-261841455db2\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-10-30T02:13:36.908946+00:00\",\n \"versionId\": \"MTY5ODYzMjAxNjkwODk0NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"71783008\",\n \"display\": \"Car\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Sarana Transportasi Kedatangan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"74286-6\",\n \"display\": \"Transport mode to hospital\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"71783008\",\n \"display\": \"Car\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Sarana Transportasi Kedatangan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"74286-6\",\n \"display\": \"Transport mode to hospital\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"71783008\",\n \"display\": \"Car\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/827037dc-17da-4d00-864a-261841455db2/_history/MTY5ODYzMjAxNjkwODk0NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Mon, 30 Oct 2023 02:13:36 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5ODYzMjAxNjkwODk0NjAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Mon, 30 Oct 2023 02:13:36 GMT"
},
{
"key": "content-length",
"value": "835"
},
{
"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": "4e458589-0974-44e5-b2a5-fcf9e821b619"
},
{
"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\": \"74286-6\",\n \"display\": \"Transport mode to hospital\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"827037dc-17da-4d00-864a-261841455db2\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-10-30T02:13:36.908946+00:00\",\n \"versionId\": \"MTY5ODYzMjAxNjkwODk0NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"71783008\",\n \"display\": \"Car\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Surat Pengantar Rujukan",
"item": [
{
"name": "Ya",
"item": [
{
"name": "Observation - Surat Rujukan - Ya",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000034\",\n \"display\": \"Surat Pengantar Rujukan\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"valueBoolean\": true,\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/f7570c75-3e7e-4a29-9013-2911217630e5\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Surat Rujukan - Ya",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000034\",\n \"display\": \"Surat Pengantar Rujukan\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"valueBoolean\": true,\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/f7570c75-3e7e-4a29-9013-2911217630e5\"\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": "etag",
"value": "W/\"MTY5ODYzMjA0NjMxNTcwNjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Mon, 30 Oct 2023 02:14:06 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/2ffaabe6-7441-46ff-8cbe-879b5a7fc25f/_history/MTY5ODYzMjA0NjMxNTcwNjAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Mon, 30 Oct 2023 02:14:06 GMT"
},
{
"key": "content-length",
"value": "867"
},
{
"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": "e35520ef-777d-4aa9-abd5-ac483ce1cd06"
},
{
"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/f7570c75-3e7e-4a29-9013-2911217630e5\"\n }\n ],\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\": \"OC000034\",\n \"display\": \"Surat Pengantar Rujukan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"2ffaabe6-7441-46ff-8cbe-879b5a7fc25f\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-10-30T02:14:06.315706+00:00\",\n \"versionId\": \"MTY5ODYzMjA0NjMxNTcwNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Surat Rujukan - Ya",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000034\",\n \"display\": \"Surat Pengantar Rujukan\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"valueBoolean\": true,\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/f7570c75-3e7e-4a29-9013-2911217630e5\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Surat Rujukan - Ya",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000034\",\n \"display\": \"Surat Pengantar Rujukan\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"valueBoolean\": true,\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/f7570c75-3e7e-4a29-9013-2911217630e5\"\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": "etag",
"value": "W/\"MTY5ODYzMjA0NjMxNTcwNjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Mon, 30 Oct 2023 02:14:06 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/2ffaabe6-7441-46ff-8cbe-879b5a7fc25f/_history/MTY5ODYzMjA0NjMxNTcwNjAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Mon, 30 Oct 2023 02:14:06 GMT"
},
{
"key": "content-length",
"value": "867"
},
{
"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": "e35520ef-777d-4aa9-abd5-ac483ce1cd06"
},
{
"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/f7570c75-3e7e-4a29-9013-2911217630e5\"\n }\n ],\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\": \"OC000034\",\n \"display\": \"Surat Pengantar Rujukan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"2ffaabe6-7441-46ff-8cbe-879b5a7fc25f\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-10-30T02:14:06.315706+00:00\",\n \"versionId\": \"MTY5ODYzMjA0NjMxNTcwNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueBoolean\": true\n}"
}
]
}
]
},
{
"name": "Tidak",
"item": [
{
"name": "Observation - Surat Rujukan - Tidak",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000034\",\n \"display\": \"Surat Pengantar Rujukan\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"valueBoolean\": false\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Surat Rujukan - Tidak",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000034\",\n \"display\": \"Surat Pengantar Rujukan\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"valueBoolean\": false\n}",
"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/\"MTY5ODYzMjA2NzcyMzE2NTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Mon, 30 Oct 2023 02:14:27 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/dcf3f6c0-5b3d-4f47-ba17-8640515e0cd6/_history/MTY5ODYzMjA2NzcyMzE2NTAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Mon, 30 Oct 2023 02:14:27 GMT"
},
{
"key": "content-length",
"value": "788"
},
{
"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": "0753cfe7-e037-48aa-9c1d-55eecfa0e09f"
},
{
"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\": \"OC000034\",\n \"display\": \"Surat Pengantar Rujukan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"dcf3f6c0-5b3d-4f47-ba17-8640515e0cd6\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-10-30T02:14:27.723165+00:00\",\n \"versionId\": \"MTY5ODYzMjA2NzcyMzE2NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueBoolean\": false\n}"
}
]
},
{
"name": "Observation - Surat Rujukan - Tidak",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000034\",\n \"display\": \"Surat Pengantar Rujukan\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"valueBoolean\": false\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Surat Rujukan - Tidak",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000034\",\n \"display\": \"Surat Pengantar Rujukan\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"valueBoolean\": false\n}",
"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/\"MTY5ODYzMjA2NzcyMzE2NTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Mon, 30 Oct 2023 02:14:27 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/dcf3f6c0-5b3d-4f47-ba17-8640515e0cd6/_history/MTY5ODYzMjA2NzcyMzE2NTAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Mon, 30 Oct 2023 02:14:27 GMT"
},
{
"key": "content-length",
"value": "788"
},
{
"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": "0753cfe7-e037-48aa-9c1d-55eecfa0e09f"
},
{
"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\": \"OC000034\",\n \"display\": \"Surat Pengantar Rujukan\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"dcf3f6c0-5b3d-4f47-ba17-8640515e0cd6\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-10-30T02:14:27.723165+00:00\",\n \"versionId\": \"MTY5ODYzMjA2NzcyMzE2NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueBoolean\": false\n}"
}
]
}
]
}
]
},
{
"name": "Kondisi Pasien Tiba",
"item": [
{
"name": "Observation - Kondisi Pasien Tiba",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"75910-0\",\n \"display\": \"Canadian triage and acuity scale [CTAS]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6113-0\",\n \"display\": \"2\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kondisi Pasien Tiba",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"75910-0\",\n \"display\": \"Canadian triage and acuity scale [CTAS]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6113-0\",\n \"display\": \"2\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTY5ODYzMjA5MDk0OTUzMDAwMA\""
},
{
"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/4a193c0e-ba08-4109-9ff3-50e2cbde1e30/_history/MTY5ODYzMjA5MDk0OTUzMDAwMA"
},
{
"key": "last-modified",
"value": "Mon, 30 Oct 2023 02:14:50 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Mon, 30 Oct 2023 02:14:50 GMT"
},
{
"key": "content-length",
"value": "840"
},
{
"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": "7cfdf69c-b11a-4b6c-86ac-1b123e68a057"
},
{
"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\": \"75910-0\",\n \"display\": \"Canadian triage and acuity scale [CTAS]\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"4a193c0e-ba08-4109-9ff3-50e2cbde1e30\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-10-30T02:14:50.949530+00:00\",\n \"versionId\": \"MTY5ODYzMjA5MDk0OTUzMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6113-0\",\n \"display\": \"2\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Kondisi Pasien Tiba",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"75910-0\",\n \"display\": \"Canadian triage and acuity scale [CTAS]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6113-0\",\n \"display\": \"2\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kondisi Pasien Tiba",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"75910-0\",\n \"display\": \"Canadian triage and acuity scale [CTAS]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA6113-0\",\n \"display\": \"2\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTY5ODYzMjA5MDk0OTUzMDAwMA\""
},
{
"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/4a193c0e-ba08-4109-9ff3-50e2cbde1e30/_history/MTY5ODYzMjA5MDk0OTUzMDAwMA"
},
{
"key": "last-modified",
"value": "Mon, 30 Oct 2023 02:14:50 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Mon, 30 Oct 2023 02:14:50 GMT"
},
{
"key": "content-length",
"value": "840"
},
{
"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": "7cfdf69c-b11a-4b6c-86ac-1b123e68a057"
},
{
"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\": \"75910-0\",\n \"display\": \"Canadian triage and acuity scale [CTAS]\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:40:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"4a193c0e-ba08-4109-9ff3-50e2cbde1e30\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:40:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-10-30T02:14:50.949530+00:00\",\n \"versionId\": \"MTY5ODYzMjA5MDk0OTUzMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA6113-0\",\n \"display\": \"2\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
}
]
}
]
},
{
"name": "04. Anamnesis",
"item": [
{
"name": "Faktor Risiko Aterosklerosis",
"item": [
{
"name": "Observation - Faktor Risiko Hipertensi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Hipertensi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"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/\"MTcxNDYxODA2ODk3ODM4NTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/9826ef25-ebc5-49dd-ba13-84b91a73ce2a/_history/MTcxNDYxODA2ODk3ODM4NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:47:48 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:47:48 GMT"
},
{
"key": "content-length",
"value": "1221"
},
{
"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": "2edbd166-7d5e-4f6c-82c7-6d45e915e5c6"
},
{
"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\": \"38341003\",\n \"display\": \"Hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"31509003\",\n \"display\": \"Controlled\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"9826ef25-ebc5-49dd-ba13-84b91a73ce2a\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:47:48.978385+00:00\",\n \"versionId\": \"MTcxNDYxODA2ODk3ODM4NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko DM",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko DM",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"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/2fd29330-aac0-491e-a1cb-76ce571f8efe/_history/MTcxNDYxODIwNTIwNjMwMDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxODIwNTIwNjMwMDAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:50:05 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:50:05 GMT"
},
{
"key": "content-length",
"value": "989"
},
{
"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": "9d877b17-1c59-49d1-bf9c-5416564aa3c8"
},
{
"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\": \"73211009\",\n \"display\": \"Diabetes mellitus\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"31509003\",\n \"display\": \"Controlled\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"2fd29330-aac0-491e-a1cb-76ce571f8efe\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:50:05.206300+00:00\",\n \"versionId\": \"MTcxNDYxODIwNTIwNjMwMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko Dislipidemia",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Dislipidemia",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n}",
"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/\"MTcxNDYzMDgwMzE5NjE3MDAwMA\""
},
{
"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/e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e/_history/MTcxNDYzMDgwMzE5NjE3MDAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 06:20:03 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 06:20:03 GMT"
},
{
"key": "content-length",
"value": "1171"
},
{
"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": "1a9279c1-5146-4a78-b683-9a87974957e0"
},
{
"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\": \"370992007\",\n \"display\": \"Dyslipidemia\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T06:20:03.196170+00:00\",\n \"versionId\": \"MTcxNDYzMDgwMzE5NjE3MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko Merokok",
"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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Merokok",
"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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxODY5NDg2MjU3NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/937da678-555b-418d-8474-e0331d2231c1/_history/MTcxNDYxODY5NDg2MjU3NzAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:58:14 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:58:14 GMT"
},
{
"key": "content-length",
"value": "826"
},
{
"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": "20bda8ee-564a-4b6f-abfc-6a79580f45c0"
},
{
"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\": \"social-history\",\n \"display\": \"Social History\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"937da678-555b-418d-8474-e0331d2231c1\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:58:14.862577+00:00\",\n \"versionId\": \"MTcxNDYxODY5NDg2MjU3NzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"77176002\",\n \"display\": \"Smoker\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Faktor Risiko Dislipidemia",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Dislipidemia",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"370992007\",\n \"display\": \"Dyslipidemia\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\"\n }\n ]\n }\n }\n ],\n \"valueBoolean\": true\n}",
"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/\"MTcxNDYzMDgwMzE5NjE3MDAwMA\""
},
{
"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/e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e/_history/MTcxNDYzMDgwMzE5NjE3MDAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 06:20:03 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 06:20:03 GMT"
},
{
"key": "content-length",
"value": "1171"
},
{
"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": "1a9279c1-5146-4a78-b683-9a87974957e0"
},
{
"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\": \"370992007\",\n \"display\": \"Dyslipidemia\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"OC000180\",\n \"display\": \"Intensitas Obat Statin\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"OV000408\",\n \"display\": \"Statin Intensitas Sedang\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"e21001ea-3fe2-46c7-a8c8-7cb6e37ebe6e\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T06:20:03.196170+00:00\",\n \"versionId\": \"MTcxNDYzMDgwMzE5NjE3MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko DM",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko DM",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"73211009\",\n \"display\": \"Diabetes mellitus\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"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/2fd29330-aac0-491e-a1cb-76ce571f8efe/_history/MTcxNDYxODIwNTIwNjMwMDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxODIwNTIwNjMwMDAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:50:05 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:50:05 GMT"
},
{
"key": "content-length",
"value": "989"
},
{
"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": "9d877b17-1c59-49d1-bf9c-5416564aa3c8"
},
{
"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\": \"73211009\",\n \"display\": \"Diabetes mellitus\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"31509003\",\n \"display\": \"Controlled\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"2fd29330-aac0-491e-a1cb-76ce571f8efe\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:50:05.206300+00:00\",\n \"versionId\": \"MTcxNDYxODIwNTIwNjMwMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko Hipertensi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Hipertensi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"38341003\",\n \"display\": \"Hypertension\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"31509003\",\n \"display\": \"Controlled\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"valueBoolean\": true\n}",
"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/\"MTcxNDYxODA2ODk3ODM4NTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/9826ef25-ebc5-49dd-ba13-84b91a73ce2a/_history/MTcxNDYxODA2ODk3ODM4NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:47:48 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:47:48 GMT"
},
{
"key": "content-length",
"value": "1221"
},
{
"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": "2edbd166-7d5e-4f6c-82c7-6d45e915e5c6"
},
{
"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\": \"38341003\",\n \"display\": \"Hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"268607006\",\n \"display\": \"Hypertension risk level\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"827068008\",\n \"display\": \"Stage 2 hypertension\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"715047008\",\n \"display\": \"Does obtain medication\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": true\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"31509003\",\n \"display\": \"Controlled\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"valueBoolean\": false\n }\n ],\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"9826ef25-ebc5-49dd-ba13-84b91a73ce2a\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:47:48.978385+00:00\",\n \"versionId\": \"MTcxNDYxODA2ODk3ODM4NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Faktor Risiko Merokok",
"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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Faktor Risiko Merokok",
"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\": \"social-history\",\n \"display\": \"Social History\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"77176002\",\n \"display\": \"Smoker\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNDYxODY5NDg2MjU3NzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/937da678-555b-418d-8474-e0331d2231c1/_history/MTcxNDYxODY5NDg2MjU3NzAwMA"
},
{
"key": "last-modified",
"value": "Thu, 02 May 2024 02:58:14 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 02 May 2024 02:58:14 GMT"
},
{
"key": "content-length",
"value": "826"
},
{
"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": "20bda8ee-564a-4b6f-abfc-6a79580f45c0"
},
{
"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\": \"social-history\",\n \"display\": \"Social History\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-15T03:05:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"937da678-555b-418d-8474-e0331d2231c1\",\n \"identifier\": [],\n \"issued\": \"2024-03-15T03:10:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-02T02:58:14.862577+00:00\",\n \"versionId\": \"MTcxNDYxODY5NDg2MjU3NzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"77176002\",\n \"display\": \"Smoker\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Riwayat Penyakit",
"item": [
{
"name": "Condition - Riwayat Penyakit",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:17:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Riwayat Penyakit",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:17: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/\"MTcxMDYwMjUxMTIwNDc3NzAwMA\""
},
{
"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/794d0300-e327-4f2f-8199-5ae060422cb0/_history/MTcxMDYwMjUxMTIwNDc3NzAwMA"
},
{
"key": "last-modified",
"value": "Sat, 16 Mar 2024 15:21:51 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 16 Mar 2024 15:21:51 GMT"
},
{
"key": "Content-Length",
"value": "730"
},
{
"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": "51a2b787-ec88-4040-9f64-66433d3207fd"
},
{
"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\": \"161527007\",\n \"display\": \"H/O: asthma\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/null\"\n },\n \"id\": \"794d0300-e327-4f2f-8199-5ae060422cb0\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-16T15:21:51.204777+00:00\",\n \"versionId\": \"MTcxMDYwMjUxMTIwNDc3NzAwMA\"\n },\n \"recordedDate\": \"2024-03-14T02:17:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Riwayat Penyakit Keluarga",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:18:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Riwayat Penyakit Keluarga",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:18: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/\"MTcxMDYwMjU1MTUxMjY5OTAwMA\""
},
{
"key": "last-modified",
"value": "Sat, 16 Mar 2024 15:22:31 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/fbdbb27e-f0dd-4ad3-af42-ee3c7659d625/_history/MTcxMDYwMjU1MTUxMjY5OTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 16 Mar 2024 15:22:31 GMT"
},
{
"key": "Content-Length",
"value": "750"
},
{
"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": "93445b38-4612-44c5-bb8b-6d6f400ca02f"
},
{
"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\": \"429959009\",\n \"display\": \"Family history of heart failure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/null\"\n },\n \"id\": \"fbdbb27e-f0dd-4ad3-af42-ee3c7659d625\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-16T15:22:31.512699+00:00\",\n \"versionId\": \"MTcxMDYwMjU1MTUxMjY5OTAwMA\"\n },\n \"recordedDate\": \"2024-03-14T02:18:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Riwayat Penyakit Keluarga",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:18:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Riwayat Penyakit Keluarga",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"429959009\",\n \"display\": \"Family history of heart failure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:18: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/\"MTcxMDYwMjU1MTUxMjY5OTAwMA\""
},
{
"key": "last-modified",
"value": "Sat, 16 Mar 2024 15:22:31 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/fbdbb27e-f0dd-4ad3-af42-ee3c7659d625/_history/MTcxMDYwMjU1MTUxMjY5OTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 16 Mar 2024 15:22:31 GMT"
},
{
"key": "Content-Length",
"value": "750"
},
{
"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": "93445b38-4612-44c5-bb8b-6d6f400ca02f"
},
{
"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\": \"429959009\",\n \"display\": \"Family history of heart failure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/null\"\n },\n \"id\": \"fbdbb27e-f0dd-4ad3-af42-ee3c7659d625\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-16T15:22:31.512699+00:00\",\n \"versionId\": \"MTcxMDYwMjU1MTUxMjY5OTAwMA\"\n },\n \"recordedDate\": \"2024-03-14T02:18:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Condition - Riwayat Penyakit",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:17:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Riwayat Penyakit",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"161527007\",\n \"display\": \"H/O: asthma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"recordedDate\": \"2024-03-14T02:17: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/\"MTcxMDYwMjUxMTIwNDc3NzAwMA\""
},
{
"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/794d0300-e327-4f2f-8199-5ae060422cb0/_history/MTcxMDYwMjUxMTIwNDc3NzAwMA"
},
{
"key": "last-modified",
"value": "Sat, 16 Mar 2024 15:21:51 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 16 Mar 2024 15:21:51 GMT"
},
{
"key": "Content-Length",
"value": "730"
},
{
"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": "51a2b787-ec88-4040-9f64-66433d3207fd"
},
{
"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\": \"161527007\",\n \"display\": \"H/O: asthma\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/null\"\n },\n \"id\": \"794d0300-e327-4f2f-8199-5ae060422cb0\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-16T15:21:51.204777+00:00\",\n \"versionId\": \"MTcxMDYwMjUxMTIwNDc3NzAwMA\"\n },\n \"recordedDate\": \"2024-03-14T02:17:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Riwayat Alergi",
"item": [
{
"name": "AllergyIntolerance by ID Patient",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/AllergyIntolerance?patient=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
],
"query": [
{
"key": "patient",
"value": "100000030006"
}
]
}
},
"response": [
{
"name": "AllergyIntolerance by ID Patient",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/AllergyIntolerance?patient=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
],
"query": [
{
"key": "patient",
"value": "100000030006"
}
]
}
},
"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, 19 Mar 2024 19:25:52 GMT"
},
{
"key": "Content-Length",
"value": "295360"
},
{
"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": "b71c2609-5625-470a-9746-849450f95c13"
},
{
"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/AllergyIntolerance/c6955131-f4b1-4228-980e-beca1d59b679\",\n \"resource\": {\n \"category\": [\n \"food\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c6955131-f4b1-4228-980e-beca1d59b679\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T07:22:32.930440+00:00\",\n \"versionId\": \"MTcxMDgzMjk1MjkzMDQ0MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2024-03-15T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/94ba2b8e-5aa3-4635-ab38-8cf1352cd3ed\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/155c14dc-16b5-4c81-b087-3727393aba52\"\n },\n \"id\": \"94ba2b8e-5aa3-4635-ab38-8cf1352cd3ed\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085396\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T13:09:17.104823+00:00\",\n \"versionId\": \"MTcwMjQ3Mjk1NzEwNDgyMzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-12-11T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b3527077-9af8-4fea-b12f-3c5f405ae525\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/f53c0b92-1d83-4cc9-8e25-aea8845f6f26\"\n },\n \"id\": \"b3527077-9af8-4fea-b12f-3c5f405ae525\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T09:30:22.901675+00:00\",\n \"versionId\": \"MTcwMjQ1OTgyMjkwMTY3NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-12-13T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/09550531-16a2-41bc-bb34-806910a7e4b0\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/65e7703f-4c58-4264-b7ac-246601e4a6a3\"\n },\n \"id\": \"09550531-16a2-41bc-bb34-806910a7e4b0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000141\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T09:19:49.967897+00:00\",\n \"versionId\": \"MTcwMjQ1OTE4OTk2Nzg5NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-12-13T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/3e3cb428-3fd6-43c7-ad48-a80b1093fc67\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/c565d456-5063-4abc-b5ce-b98d624c5a33\"\n },\n \"id\": \"3e3cb428-3fd6-43c7-ad48-a80b1093fc67\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/7ae1c831-8a98-48d7-a197-8207ca13ee79\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T08:18:42.329161+00:00\",\n \"versionId\": \"MTcwMjQ1NTUyMjMyOTE2MTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/dabf9dcf-d0ff-43cb-9aba-199a6787ea38\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/8688e37b-a85d-4a55-87d0-db762b448de9\"\n },\n \"id\": \"dabf9dcf-d0ff-43cb-9aba-199a6787ea38\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/d24913a1-dd01-4ffa-a0b0-ad452cf1ddd0\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T08:15:59.797148+00:00\",\n \"versionId\": \"MTcwMjQ1NTM1OTc5NzE0ODAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f6b18ae1-1732-4e9e-b8e2-b354a44efe70\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/3a0b6fa4-ce64-4d0c-9c77-e42e4a9a60b8\"\n },\n \"id\": \"f6b18ae1-1732-4e9e-b8e2-b354a44efe70\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085384\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T08:09:09.016777+00:00\",\n \"versionId\": \"MTcwMjQ1NDk0OTAxNjc3NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b77c2ff0-92d9-4cc5-a7d6-1424967d4509\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/a537ad9b-7261-4299-984e-ca6b7fe18ad4\"\n },\n \"id\": \"b77c2ff0-92d9-4cc5-a7d6-1424967d4509\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T06:59:12.733902+00:00\",\n \"versionId\": \"MTcwMjQ1MDc1MjczMzkwMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/34a4fdd9-9cd6-4bd8-b0e8-030b204cb88f\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/10a75a1d-cc4e-4fd2-aa62-665dcd9cdf7a\"\n },\n \"id\": \"34a4fdd9-9cd6-4bd8-b0e8-030b204cb88f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/4a79820b-46d3-4e52-ad09-e748f8b47c7f\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-12T16:29:21.561252+00:00\",\n \"versionId\": \"MTcwMjM5ODU2MTU2MTI1MjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f3d03c7e-44af-4132-963b-ddee28184da8\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diana Smith di hari Kamis, 25 Desember 2022\",\n \"reference\": \"Encounter/65f28fae-0fd9-4a27-9c3d-1b9b41d544d4\"\n },\n \"id\": \"f3d03c7e-44af-4132-963b-ddee28184da8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"10085104\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-21T08:33:43.621724+00:00\",\n \"versionId\": \"MTcwMDU1NTYyMzYyMTcyNDAwMA\"\n },\n \"patient\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-12-25T08:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5536abc1-6dcc-4370-a574-b7b8b931f573\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diana Smith 4 Juli 2023\",\n \"reference\": \"Encounter/cfc22889-755d-41ac-9dcd-f55893b3631d\"\n },\n \"id\": \"5536abc1-6dcc-4370-a574-b7b8b931f573\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"P20240002\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-21T07:13:34.768820+00:00\",\n \"versionId\": \"MTcwMDU1MDgxNDc2ODgyMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-07-04T09:30:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/41e2a4a2-4a7b-4a97-9cb7-01d49cfb52c1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diana Smith 4 Juli 2023\",\n \"reference\": \"Encounter/cfc22889-755d-41ac-9dcd-f55893b3631d\"\n },\n \"id\": \"41e2a4a2-4a7b-4a97-9cb7-01d49cfb52c1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"P20240001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-21T07:03:09.641026+00:00\",\n \"versionId\": \"MTcwMDU1MDE4OTY0MTAyNjAwMA\"\n },\n \"patient\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-07-04T09:30:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/dd87ba9d-5dd8-4538-b660-ea7d00d2a9bf\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/b2521638-4de9-43b8-bf5b-8eb5da1cfcc7\"\n },\n \"id\": \"dd87ba9d-5dd8-4538-b660-ea7d00d2a9bf\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T22:21:57.365820+00:00\",\n \"versionId\": \"MTcwMDUxODkxNzM2NTgyMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/7c5ae8a4-f40f-4d62-a6db-57133d816039\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/fb058732-308f-48ba-9e16-ef6593680ff6\"\n },\n \"id\": \"7c5ae8a4-f40f-4d62-a6db-57133d816039\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000079\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T15:34:36.958182+00:00\",\n \"versionId\": \"MTcwMDQ5NDQ3Njk1ODE4MjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5a15a515-97a5-45c5-8993-51b83089f5ca\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/9deed3a4-f191-4035-a29a-a2d469124d75\"\n },\n \"id\": \"5a15a515-97a5-45c5-8993-51b83089f5ca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:49:25.898306+00:00\",\n \"versionId\": \"MTcwMDQ4ODE2NTg5ODMwNjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/434bee15-81dc-4021-8c0c-bbc18011f287\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/9beba5c6-0ebf-467c-8c12-00f977de81f\"\n },\n \"id\": \"434bee15-81dc-4021-8c0c-bbc18011f287\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:31:31.521414+00:00\",\n \"versionId\": \"MTcwMDQ4NzA5MTUyMTQxNDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/18670a52-07c8-46dd-a7dc-5854511271a6\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/69cc7d45-d836-4bf5-bc81-becac68cc897\"\n },\n \"id\": \"18670a52-07c8-46dd-a7dc-5854511271a6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:06:20.254183+00:00\",\n \"versionId\": \"MTcwMDQ4NTU4MDI1NDE4MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/588e6507-156f-4d56-9bba-5ae7715e9292\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/36edbb95-c9d7-4da3-abd8-c61961a72de5\"\n },\n \"id\": \"588e6507-156f-4d56-9bba-5ae7715e9292\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000141\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:01:58.642886+00:00\",\n \"versionId\": \"MTcwMDQ4NTMxODY0Mjg4NjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/c4c1cf79-22bf-4325-aa19-ac56df6ca8a6\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/614bca61-cf87-4a41-a956-b8e66468a5f3\"\n },\n \"id\": \"c4c1cf79-22bf-4325-aa19-ac56df6ca8a6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:55:59.675175+00:00\",\n \"versionId\": \"MTcwMDQ4NDk1OTY3NTE3NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/8c227d0e-8690-45f4-9372-29fc231c234a\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/dcf000dc-3055-4f8e-aaa9-f03896adabcc\"\n },\n \"id\": \"8c227d0e-8690-45f4-9372-29fc231c234a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000083\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:52:23.282757+00:00\",\n \"versionId\": \"MTcwMDQ4NDc0MzI4Mjc1NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/1ef31f88-679f-4b5f-9dbf-e198b618fcf2\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/efb1d066-ce30-4ef1-ac43-682ab32834ed\"\n },\n \"id\": \"1ef31f88-679f-4b5f-9dbf-e198b618fcf2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:44:14.952612+00:00\",\n \"versionId\": \"MTcwMDQ4NDI1NDk1MjYxMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/94e9937c-ef63-4ece-9e3c-9d537a584a45\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/11f3491c-7e39-46d6-9676-1c75a30feadc\"\n },\n \"id\": \"94e9937c-ef63-4ece-9e3c-9d537a584a45\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:43:37.392721+00:00\",\n \"versionId\": \"MTcwMDQ4NDIxNzM5MjcyMTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5c7cf66d-e474-4ba7-9c57-ff8df2adb3ea\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Rabu, 31 Agustus 2022\",\n \"reference\": \"Encounter/10a75a1d-cc4e-4fd2-aa62-665dcd9cdf7a\"\n },\n \"id\": \"5c7cf66d-e474-4ba7-9c57-ff8df2adb3ea\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-09T08:01:16.165113+00:00\",\n \"versionId\": \"MTY5OTUxNjg3NjE2NTExMzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b17dad32-8af1-4922-a6d2-a974b34c43bf\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 22 Desember 2022\",\n \"reference\": \"Encounter/2d69d1fe-268f-4ae1-8cfe-4262c96ecac5\"\n },\n \"id\": \"b17dad32-8af1-4922-a6d2-a974b34c43bf\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10080039\",\n \"use\": \"official\",\n \"value\": \"10080039\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T06:37:02.950595+00:00\",\n \"versionId\": \"MTY5NTcxMDIyMjk1MDU5NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-12-22T08:30:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5b41cfd8-594f-426b-9cb6-4f3a341c5417\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/8fa99d9a-e3a0-49af-940d-58e35aa9b029\"\n },\n \"id\": \"5b41cfd8-594f-426b-9cb6-4f3a341c5417\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T04:57:06.721083+00:00\",\n \"versionId\": \"MTY5NTcwNDIyNjcyMTA4MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/51cff8cf-ab08-457c-9dfd-dd84e0ef0679\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/91fcdefb-993f-43f4-bba0-7de7126a941a\"\n },\n \"id\": \"51cff8cf-ab08-457c-9dfd-dd84e0ef0679\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T03:51:16.237440+00:00\",\n \"versionId\": \"MTY5NTcwMDI3NjIzNzQ0MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/3bb6a486-e46e-4602-a3c0-e0f118a4689a\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 6 Juni 2023\",\n \"reference\": \"Encounter/943ea4b5-bd21-4d68-8ab7-52a336d0ff57\"\n },\n \"id\": \"3bb6a486-e46e-4602-a3c0-e0f118a4689a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T03:19:55.442137+00:00\",\n \"versionId\": \"MTY5NTY5ODM5NTQ0MjEzNzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/4069e39e-c56c-46ff-a99b-8c7e6b80b39d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/9eb8ab3b-6165-4728-a2b1-0454cb801eb9\"\n },\n \"id\": \"4069e39e-c56c-46ff-a99b-8c7e6b80b39d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10080047\",\n \"use\": \"official\",\n \"value\": \"10080047\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T03:19:49.258149+00:00\",\n \"versionId\": \"MTY5NTY5ODM4OTI1ODE0OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T09:45:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/763fa792-50ce-4370-b6c1-2a32ad2ecd09\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 22 Juni 2023\",\n \"reference\": \"Encounter/4c43f0b9-7bd6-479c-84ee-437400b34c76\"\n },\n \"id\": \"763fa792-50ce-4370-b6c1-2a32ad2ecd09\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T02:55:29.946259+00:00\",\n \"versionId\": \"MTY5NTY5NjkyOTk0NjI1OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-22T00:01:30+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/393833e3-9f23-4afd-8621-e9e7a613d37d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/6c427666-59e8-4cfc-93dd-038c28c13378\"\n },\n \"id\": \"393833e3-9f23-4afd-8621-e9e7a613d37d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10080057\",\n \"use\": \"official\",\n \"value\": \"10080057\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T02:36:08.655573+00:00\",\n \"versionId\": \"MTY5NTY5NTc2ODY1NTU3MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/8bc76162-92a3-4f28-a47a-96d52fb8c37a\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/bdab3a14-fed6-4fe4-95bd-0736cf93b148\"\n },\n \"id\": \"8bc76162-92a3-4f28-a47a-96d52fb8c37a\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T01:36:49.771673+00:00\",\n \"versionId\": \"MTY5NTY5MjIwOTc3MTY3MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/820b3106-338a-4a0e-8ccf-dc741e6be664\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diane Smith tanggal 22 Juni 2023\",\n \"reference\": \"Encounter/78e40837-e7d2-4fcf-99fc-512b20726830\"\n },\n \"id\": \"820b3106-338a-4a0e-8ccf-dc741e6be664\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T01:34:51.116212+00:00\",\n \"versionId\": \"MTY5NTY5MjA5MTExNjIxMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Diane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-22T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/c6320042-87f6-4f55-af48-f69dc5c37b2d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/7c13703e-4e37-4c38-a3ae-9e82286e8c8c\"\n },\n \"id\": \"c6320042-87f6-4f55-af48-f69dc5c37b2d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000113\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T01:32:47.441245+00:00\",\n \"versionId\": \"MTY5NTY5MTk2NzQ0MTI0NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/407160bb-3fa5-4e8f-90e7-94dbc924f785\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/f5b82e29-2df5-4616-a337-b3382aca93c4\"\n },\n \"id\": \"407160bb-3fa5-4e8f-90e7-94dbc924f785\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T12:20:43.136810+00:00\",\n \"versionId\": \"MTY5NTY0NDQ0MzEzNjgxMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/dfa342a7-a872-4587-af3b-6e53479732cf\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/06428acd-0b87-47e7-91f1-4900a5e0210e\"\n },\n \"id\": \"dfa342a7-a872-4587-af3b-6e53479732cf\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:59:33.734153+00:00\",\n \"versionId\": \"MTY5NTY0MzE3MzczNDE1MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/32e454a1-1c5c-4950-b660-d2ace6b5ed04\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/3b22cc37-2aa8-4496-b8ca-7087ed1913d1\"\n },\n \"id\": \"32e454a1-1c5c-4950-b660-d2ace6b5ed04\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:54:21.548964+00:00\",\n \"versionId\": \"MTY5NTY0Mjg2MTU0ODk2NDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/08c9b323-2280-418d-804d-6c229a501697\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 25 September 2023\",\n \"reference\": \"Encounter/a47da552-20ed-4d3c-ab67-a9a8999088c8\"\n },\n \"id\": \"08c9b323-2280-418d-804d-6c229a501697\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:48:07.961122+00:00\",\n \"versionId\": \"MTY5NTY0MjQ4Nzk2MTEyMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-09-25T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/e0f255f1-72f4-4f4b-a78e-75eed137918d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/f31d5c50-5de5-466e-9238-78d2cfb9263d\"\n },\n \"id\": \"e0f255f1-72f4-4f4b-a78e-75eed137918d\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:46:34.011021+00:00\",\n \"versionId\": \"MTY5NTY0MjM5NDAxMTAyMTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/7d7ddc5b-9250-49fe-a418-5b9fda390b67\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"inactive\",\n \"display\": \"inActive\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/1e3c6f79-558d-4cbd-828d-bd024b05c874\"\n },\n \"id\": \"7d7ddc5b-9250-49fe-a418-5b9fda390b67\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:40:55.066969+00:00\",\n \"versionId\": \"MTY5NTY0MjA1NTA2Njk2OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/06b4285e-3ef3-4ff8-924d-b114efd5b745\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/b53f3978-b957-4763-892a-b631d1c08017\"\n },\n \"id\": \"06b4285e-3ef3-4ff8-924d-b114efd5b745\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T09:41:06.846570+00:00\",\n \"versionId\": \"MTY5NTYzNDg2Njg0NjU3MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/2deef8de-358d-4efe-9e69-46285aea6f46\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/0b6521ca-f892-45dc-a472-6c5de3dcd826\"\n },\n \"id\": \"2deef8de-358d-4efe-9e69-46285aea6f46\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T09:23:29.625053+00:00\",\n \"versionId\": \"MTY5NTYzMzgwOTYyNTA1MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/31c97423-3431-460f-bd68-e36d935a6d34\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Hanief tanggal 25 September 2023\",\n \"reference\": \"Encounter/f9b6cb75-34f4-4419-8e14-61048448e44f\"\n },\n \"id\": \"31c97423-3431-460f-bd68-e36d935a6d34\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T09:10:53.246693+00:00\",\n \"versionId\": \"MTY5NTYzMzA1MzI0NjY5MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Hanief\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-09-25T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/10009880728\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/76462530-c325-4c61-9c01-07de171a9758\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/1e3c6f79-558d-4cbd-828d-bd024b05c874\"\n },\n \"id\": \"76462530-c325-4c61-9c01-07de171a9758\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-23T07:18:49.184236+00:00\",\n \"versionId\": \"MTY5NTQ1MzUyOTE4NDIzNjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/ac915e51-5d0d-4f47-b5b9-e53789dffc37\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 6 Juni 2023\",\n \"reference\": \"Encounter/2fec61cb-e94e-4ce7-ac86-948a4c5e612b\"\n },\n \"id\": \"ac915e51-5d0d-4f47-b5b9-e53789dffc37\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-23T07:16:46.468801+00:00\",\n \"versionId\": \"MTY5NTQ1MzQwNjQ2ODgwMTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-06T08:40:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f599f6dc-76c7-4056-80f0-04001b7df7c1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/17b0e9fd-058b-4ff6-a2f6-1607ecf57e3f\"\n },\n \"id\": \"f599f6dc-76c7-4056-80f0-04001b7df7c1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-22T23:38:40.222633+00:00\",\n \"versionId\": \"MTY5NTQyNTkyMDIyMjYzMzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/18b38d8c-83a1-423e-a50b-54ed14d10781\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/1e3c6f79-558d-4cbd-828d-bd024b05c874\"\n },\n \"id\": \"18b38d8c-83a1-423e-a50b-54ed14d10781\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-22T05:24:48.823588+00:00\",\n \"versionId\": \"MTY5NTM2MDI4ODgyMzU4ODAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/ed3e1feb-c25d-4fd2-845c-d1ffce081901\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 6 Juni 2023\",\n \"reference\": \"Encounter/2fec61cb-e94e-4ce7-ac86-948a4c5e612b\"\n },\n \"id\": \"ed3e1feb-c25d-4fd2-845c-d1ffce081901\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-22T02:00:18.428454+00:00\",\n \"versionId\": \"MTY5NTM0ODAxODQyODQ1NDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-06T08:40:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/60305daf-64cb-4abf-a08d-88a47516fcc1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/6b5ed60f-02f9-4016-a0bc-135cb87c5264\"\n },\n \"id\": \"60305daf-64cb-4abf-a08d-88a47516fcc1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-06-14T08:07:57.116507+00:00\",\n \"versionId\": \"MTY4NjczMDA3NzExNjUwNzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T15:37:31+07:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f1399cf0-5589-48aa-9682-ffe366e77f49\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/a9e0b1b2-4326-47ec-9f61-2d2b7e377b5b\"\n },\n \"id\": \"f1399cf0-5589-48aa-9682-ffe366e77f49\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-06-08T06:31:08.398979+00:00\",\n \"versionId\": \"MTY4NjIwNTg2ODM5ODk3OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T08:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/685b5647-0314-4b3d-8639-82c77f55c639\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/90923d10-594f-4d82-81a9-2a5f36374aac\"\n },\n \"id\": \"685b5647-0314-4b3d-8639-82c77f55c639\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-23T04:29:42.859010+00:00\",\n \"versionId\": \"MTY4NDgxNjE4Mjg1OTAxMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T08:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/1b0d174d-9248-405f-bb3b-5c41b5efeae1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/90923d10-594f-4d82-81a9-2a5f36374aac\"\n },\n \"id\": \"1b0d174d-9248-405f-bb3b-5c41b5efeae1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-23T04:10:14.654119+00:00\",\n \"versionId\": \"MTY4NDgxNTAxNDY1NDExOTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T10:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/7cb05be9-2561-44fd-a782-da01ecfbeb62\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/aa6e2ef8-d49f-4770-869e-7d6f7f22885b\"\n },\n \"id\": \"7cb05be9-2561-44fd-a782-da01ecfbeb62\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-16T12:11:49.521322+00:00\",\n \"versionId\": \"MTY4NDIzOTEwOTUyMTMyMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T10:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/8885d112-525f-406c-88ca-be1b1cd581cc\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/8fa2c402-43dd-45ea-a3a4-ed9ac004e7e9\"\n },\n \"id\": \"8885d112-525f-406c-88ca-be1b1cd581cc\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-10T16:03:39.388827+00:00\",\n \"versionId\": \"MTY4MzczNDYxOTM4ODgyNzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T07:00:00+08:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/907c5fcd-fc46-4a76-ae0e-685dad4903cd\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/8fa2c402-43dd-45ea-a3a4-ed9ac004e7e9\"\n },\n \"id\": \"907c5fcd-fc46-4a76-ae0e-685dad4903cd\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-03T09:55:25.697022+00:00\",\n \"versionId\": \"MTY4MzEwNzcyNTY5NzAyMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T07:00:00+08:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/6ec86027-4185-4c8b-b627-56b3ae6f94a0\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/6b5ed60f-02f9-4016-a0bc-135cb87c5264\"\n },\n \"id\": \"6ec86027-4185-4c8b-b627-56b3ae6f94a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-03-28T06:08:24.966386+00:00\",\n \"versionId\": \"MTY3OTk4MzcwNDk2NjM4NjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T15:37:31+07:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/2c97ff5b-876b-4dbf-93b4-9b30a2b1b679\",\n \"resource\": {\n \"category\": [\n \"food\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"89811004\",\n \"display\": \"Gluten\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Alergi bahan gluten, khususnya ketika makan roti gandum\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/2823ed1d-3e3e-434e-9a5b-9c579d192787\"\n },\n \"id\": \"2c97ff5b-876b-4dbf-93b4-9b30a2b1b679\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-03-13T08:21:27.551218+00:00\",\n \"versionId\": \"MTY3ODY5NTY4NzU1MTIxODAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T15:37:31+07:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/?patient=100000030006\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/?patient=100000030006\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/?patient=100000030006\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 56,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "AllergyIntolerance by ID Patient",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/AllergyIntolerance?patient=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
],
"query": [
{
"key": "patient",
"value": "100000030006"
}
]
}
},
"response": [
{
"name": "AllergyIntolerance by ID Patient",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/AllergyIntolerance?patient=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
],
"query": [
{
"key": "patient",
"value": "100000030006"
}
]
}
},
"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, 19 Mar 2024 19:25:52 GMT"
},
{
"key": "Content-Length",
"value": "295360"
},
{
"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": "b71c2609-5625-470a-9746-849450f95c13"
},
{
"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/AllergyIntolerance/c6955131-f4b1-4228-980e-beca1d59b679\",\n \"resource\": {\n \"category\": [\n \"food\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Jumat, 15 Maret 2024\",\n \"reference\": \"Encounter/6fffaf4c-b783-4e60-9e27-6ed4cc93e5ed\"\n },\n \"id\": \"c6955131-f4b1-4228-980e-beca1d59b679\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T07:22:32.930440+00:00\",\n \"versionId\": \"MTcxMDgzMjk1MjkzMDQ0MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2024-03-15T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/94ba2b8e-5aa3-4635-ab38-8cf1352cd3ed\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/155c14dc-16b5-4c81-b087-3727393aba52\"\n },\n \"id\": \"94ba2b8e-5aa3-4635-ab38-8cf1352cd3ed\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085396\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T13:09:17.104823+00:00\",\n \"versionId\": \"MTcwMjQ3Mjk1NzEwNDgyMzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-12-11T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b3527077-9af8-4fea-b12f-3c5f405ae525\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/f53c0b92-1d83-4cc9-8e25-aea8845f6f26\"\n },\n \"id\": \"b3527077-9af8-4fea-b12f-3c5f405ae525\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T09:30:22.901675+00:00\",\n \"versionId\": \"MTcwMjQ1OTgyMjkwMTY3NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-12-13T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/09550531-16a2-41bc-bb34-806910a7e4b0\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/65e7703f-4c58-4264-b7ac-246601e4a6a3\"\n },\n \"id\": \"09550531-16a2-41bc-bb34-806910a7e4b0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000141\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T09:19:49.967897+00:00\",\n \"versionId\": \"MTcwMjQ1OTE4OTk2Nzg5NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-12-13T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/3e3cb428-3fd6-43c7-ad48-a80b1093fc67\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/c565d456-5063-4abc-b5ce-b98d624c5a33\"\n },\n \"id\": \"3e3cb428-3fd6-43c7-ad48-a80b1093fc67\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/7ae1c831-8a98-48d7-a197-8207ca13ee79\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T08:18:42.329161+00:00\",\n \"versionId\": \"MTcwMjQ1NTUyMjMyOTE2MTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/dabf9dcf-d0ff-43cb-9aba-199a6787ea38\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/8688e37b-a85d-4a55-87d0-db762b448de9\"\n },\n \"id\": \"dabf9dcf-d0ff-43cb-9aba-199a6787ea38\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/d24913a1-dd01-4ffa-a0b0-ad452cf1ddd0\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T08:15:59.797148+00:00\",\n \"versionId\": \"MTcwMjQ1NTM1OTc5NzE0ODAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f6b18ae1-1732-4e9e-b8e2-b354a44efe70\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/3a0b6fa4-ce64-4d0c-9c77-e42e4a9a60b8\"\n },\n \"id\": \"f6b18ae1-1732-4e9e-b8e2-b354a44efe70\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085384\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T08:09:09.016777+00:00\",\n \"versionId\": \"MTcwMjQ1NDk0OTAxNjc3NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b77c2ff0-92d9-4cc5-a7d6-1424967d4509\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/a537ad9b-7261-4299-984e-ca6b7fe18ad4\"\n },\n \"id\": \"b77c2ff0-92d9-4cc5-a7d6-1424967d4509\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-13T06:59:12.733902+00:00\",\n \"versionId\": \"MTcwMjQ1MDc1MjczMzkwMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/34a4fdd9-9cd6-4bd8-b0e8-030b204cb88f\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/10a75a1d-cc4e-4fd2-aa62-665dcd9cdf7a\"\n },\n \"id\": \"34a4fdd9-9cd6-4bd8-b0e8-030b204cb88f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/4a79820b-46d3-4e52-ad09-e748f8b47c7f\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-12-12T16:29:21.561252+00:00\",\n \"versionId\": \"MTcwMjM5ODU2MTU2MTI1MjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f3d03c7e-44af-4132-963b-ddee28184da8\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diana Smith di hari Kamis, 25 Desember 2022\",\n \"reference\": \"Encounter/65f28fae-0fd9-4a27-9c3d-1b9b41d544d4\"\n },\n \"id\": \"f3d03c7e-44af-4132-963b-ddee28184da8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"10085104\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-21T08:33:43.621724+00:00\",\n \"versionId\": \"MTcwMDU1NTYyMzYyMTcyNDAwMA\"\n },\n \"patient\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-12-25T08:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5536abc1-6dcc-4370-a574-b7b8b931f573\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diana Smith 4 Juli 2023\",\n \"reference\": \"Encounter/cfc22889-755d-41ac-9dcd-f55893b3631d\"\n },\n \"id\": \"5536abc1-6dcc-4370-a574-b7b8b931f573\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"P20240002\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-21T07:13:34.768820+00:00\",\n \"versionId\": \"MTcwMDU1MDgxNDc2ODgyMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-07-04T09:30:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/41e2a4a2-4a7b-4a97-9cb7-01d49cfb52c1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diana Smith 4 Juli 2023\",\n \"reference\": \"Encounter/cfc22889-755d-41ac-9dcd-f55893b3631d\"\n },\n \"id\": \"41e2a4a2-4a7b-4a97-9cb7-01d49cfb52c1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"P20240001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-21T07:03:09.641026+00:00\",\n \"versionId\": \"MTcwMDU1MDE4OTY0MTAyNjAwMA\"\n },\n \"patient\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-07-04T09:30:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/dd87ba9d-5dd8-4538-b660-ea7d00d2a9bf\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/b2521638-4de9-43b8-bf5b-8eb5da1cfcc7\"\n },\n \"id\": \"dd87ba9d-5dd8-4538-b660-ea7d00d2a9bf\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T22:21:57.365820+00:00\",\n \"versionId\": \"MTcwMDUxODkxNzM2NTgyMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/7c5ae8a4-f40f-4d62-a6db-57133d816039\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/fb058732-308f-48ba-9e16-ef6593680ff6\"\n },\n \"id\": \"7c5ae8a4-f40f-4d62-a6db-57133d816039\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000079\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T15:34:36.958182+00:00\",\n \"versionId\": \"MTcwMDQ5NDQ3Njk1ODE4MjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5a15a515-97a5-45c5-8993-51b83089f5ca\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/9deed3a4-f191-4035-a29a-a2d469124d75\"\n },\n \"id\": \"5a15a515-97a5-45c5-8993-51b83089f5ca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000212\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:49:25.898306+00:00\",\n \"versionId\": \"MTcwMDQ4ODE2NTg5ODMwNjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/434bee15-81dc-4021-8c0c-bbc18011f287\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/9beba5c6-0ebf-467c-8c12-00f977de81f\"\n },\n \"id\": \"434bee15-81dc-4021-8c0c-bbc18011f287\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:31:31.521414+00:00\",\n \"versionId\": \"MTcwMDQ4NzA5MTUyMTQxNDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/18670a52-07c8-46dd-a7dc-5854511271a6\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/69cc7d45-d836-4bf5-bc81-becac68cc897\"\n },\n \"id\": \"18670a52-07c8-46dd-a7dc-5854511271a6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:06:20.254183+00:00\",\n \"versionId\": \"MTcwMDQ4NTU4MDI1NDE4MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/588e6507-156f-4d56-9bba-5ae7715e9292\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/36edbb95-c9d7-4da3-abd8-c61961a72de5\"\n },\n \"id\": \"588e6507-156f-4d56-9bba-5ae7715e9292\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000141\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T13:01:58.642886+00:00\",\n \"versionId\": \"MTcwMDQ4NTMxODY0Mjg4NjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/c4c1cf79-22bf-4325-aa19-ac56df6ca8a6\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/614bca61-cf87-4a41-a956-b8e66468a5f3\"\n },\n \"id\": \"c4c1cf79-22bf-4325-aa19-ac56df6ca8a6\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:55:59.675175+00:00\",\n \"versionId\": \"MTcwMDQ4NDk1OTY3NTE3NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/8c227d0e-8690-45f4-9372-29fc231c234a\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/dcf000dc-3055-4f8e-aaa9-f03896adabcc\"\n },\n \"id\": \"8c227d0e-8690-45f4-9372-29fc231c234a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000083\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:52:23.282757+00:00\",\n \"versionId\": \"MTcwMDQ4NDc0MzI4Mjc1NzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/1ef31f88-679f-4b5f-9dbf-e198b618fcf2\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/efb1d066-ce30-4ef1-ac43-682ab32834ed\"\n },\n \"id\": \"1ef31f88-679f-4b5f-9dbf-e198b618fcf2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:44:14.952612+00:00\",\n \"versionId\": \"MTcwMDQ4NDI1NDk1MjYxMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/94e9937c-ef63-4ece-9e3c-9d537a584a45\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Kamis, 31 Agustus 2023\",\n \"reference\": \"Encounter/11f3491c-7e39-46d6-9676-1c75a30feadc\"\n },\n \"id\": \"94e9937c-ef63-4ece-9e3c-9d537a584a45\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-20T12:43:37.392721+00:00\",\n \"versionId\": \"MTcwMDQ4NDIxNzM5MjcyMTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5c7cf66d-e474-4ba7-9c57-ff8df2adb3ea\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Rabu, 31 Agustus 2022\",\n \"reference\": \"Encounter/10a75a1d-cc4e-4fd2-aa62-665dcd9cdf7a\"\n },\n \"id\": \"5c7cf66d-e474-4ba7-9c57-ff8df2adb3ea\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-11-09T08:01:16.165113+00:00\",\n \"versionId\": \"MTY5OTUxNjg3NjE2NTExMzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-08-31T05:37:31+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/b17dad32-8af1-4922-a6d2-a974b34c43bf\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 22 Desember 2022\",\n \"reference\": \"Encounter/2d69d1fe-268f-4ae1-8cfe-4262c96ecac5\"\n },\n \"id\": \"b17dad32-8af1-4922-a6d2-a974b34c43bf\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10080039\",\n \"use\": \"official\",\n \"value\": \"10080039\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T06:37:02.950595+00:00\",\n \"versionId\": \"MTY5NTcxMDIyMjk1MDU5NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-12-22T08:30:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/5b41cfd8-594f-426b-9cb6-4f3a341c5417\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/8fa99d9a-e3a0-49af-940d-58e35aa9b029\"\n },\n \"id\": \"5b41cfd8-594f-426b-9cb6-4f3a341c5417\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T04:57:06.721083+00:00\",\n \"versionId\": \"MTY5NTcwNDIyNjcyMTA4MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/51cff8cf-ab08-457c-9dfd-dd84e0ef0679\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/91fcdefb-993f-43f4-bba0-7de7126a941a\"\n },\n \"id\": \"51cff8cf-ab08-457c-9dfd-dd84e0ef0679\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T03:51:16.237440+00:00\",\n \"versionId\": \"MTY5NTcwMDI3NjIzNzQ0MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/3bb6a486-e46e-4602-a3c0-e0f118a4689a\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 6 Juni 2023\",\n \"reference\": \"Encounter/943ea4b5-bd21-4d68-8ab7-52a336d0ff57\"\n },\n \"id\": \"3bb6a486-e46e-4602-a3c0-e0f118a4689a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T03:19:55.442137+00:00\",\n \"versionId\": \"MTY5NTY5ODM5NTQ0MjEzNzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/4069e39e-c56c-46ff-a99b-8c7e6b80b39d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/9eb8ab3b-6165-4728-a2b1-0454cb801eb9\"\n },\n \"id\": \"4069e39e-c56c-46ff-a99b-8c7e6b80b39d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10080047\",\n \"use\": \"official\",\n \"value\": \"10080047\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T03:19:49.258149+00:00\",\n \"versionId\": \"MTY5NTY5ODM4OTI1ODE0OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T09:45:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/763fa792-50ce-4370-b6c1-2a32ad2ecd09\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 22 Juni 2023\",\n \"reference\": \"Encounter/4c43f0b9-7bd6-479c-84ee-437400b34c76\"\n },\n \"id\": \"763fa792-50ce-4370-b6c1-2a32ad2ecd09\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T02:55:29.946259+00:00\",\n \"versionId\": \"MTY5NTY5NjkyOTk0NjI1OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-22T00:01:30+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/393833e3-9f23-4afd-8621-e9e7a613d37d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/6c427666-59e8-4cfc-93dd-038c28c13378\"\n },\n \"id\": \"393833e3-9f23-4afd-8621-e9e7a613d37d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10080057\",\n \"use\": \"official\",\n \"value\": \"10080057\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T02:36:08.655573+00:00\",\n \"versionId\": \"MTY5NTY5NTc2ODY1NTU3MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/8bc76162-92a3-4f28-a47a-96d52fb8c37a\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/bdab3a14-fed6-4fe4-95bd-0736cf93b148\"\n },\n \"id\": \"8bc76162-92a3-4f28-a47a-96d52fb8c37a\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T01:36:49.771673+00:00\",\n \"versionId\": \"MTY5NTY5MjIwOTc3MTY3MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/820b3106-338a-4a0e-8ccf-dc741e6be664\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Diane Smith tanggal 22 Juni 2023\",\n \"reference\": \"Encounter/78e40837-e7d2-4fcf-99fc-512b20726830\"\n },\n \"id\": \"820b3106-338a-4a0e-8ccf-dc741e6be664\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T01:34:51.116212+00:00\",\n \"versionId\": \"MTY5NTY5MjA5MTExNjIxMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Diane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-22T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/c6320042-87f6-4f55-af48-f69dc5c37b2d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/7c13703e-4e37-4c38-a3ae-9e82286e8c8c\"\n },\n \"id\": \"c6320042-87f6-4f55-af48-f69dc5c37b2d\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10000113\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-26T01:32:47.441245+00:00\",\n \"versionId\": \"MTY5NTY5MTk2NzQ0MTI0NTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/407160bb-3fa5-4e8f-90e7-94dbc924f785\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/f5b82e29-2df5-4616-a337-b3382aca93c4\"\n },\n \"id\": \"407160bb-3fa5-4e8f-90e7-94dbc924f785\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T12:20:43.136810+00:00\",\n \"versionId\": \"MTY5NTY0NDQ0MzEzNjgxMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/dfa342a7-a872-4587-af3b-6e53479732cf\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/06428acd-0b87-47e7-91f1-4900a5e0210e\"\n },\n \"id\": \"dfa342a7-a872-4587-af3b-6e53479732cf\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:59:33.734153+00:00\",\n \"versionId\": \"MTY5NTY0MzE3MzczNDE1MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/32e454a1-1c5c-4950-b660-d2ace6b5ed04\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/3b22cc37-2aa8-4496-b8ca-7087ed1913d1\"\n },\n \"id\": \"32e454a1-1c5c-4950-b660-d2ace6b5ed04\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:54:21.548964+00:00\",\n \"versionId\": \"MTY5NTY0Mjg2MTU0ODk2NDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/08c9b323-2280-418d-804d-6c229a501697\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 25 September 2023\",\n \"reference\": \"Encounter/a47da552-20ed-4d3c-ab67-a9a8999088c8\"\n },\n \"id\": \"08c9b323-2280-418d-804d-6c229a501697\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:48:07.961122+00:00\",\n \"versionId\": \"MTY5NTY0MjQ4Nzk2MTEyMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-09-25T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/e0f255f1-72f4-4f4b-a78e-75eed137918d\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/f31d5c50-5de5-466e-9238-78d2cfb9263d\"\n },\n \"id\": \"e0f255f1-72f4-4f4b-a78e-75eed137918d\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:46:34.011021+00:00\",\n \"versionId\": \"MTY5NTY0MjM5NDAxMTAyMTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/7d7ddc5b-9250-49fe-a418-5b9fda390b67\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"inactive\",\n \"display\": \"inActive\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/1e3c6f79-558d-4cbd-828d-bd024b05c874\"\n },\n \"id\": \"7d7ddc5b-9250-49fe-a418-5b9fda390b67\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T11:40:55.066969+00:00\",\n \"versionId\": \"MTY5NTY0MjA1NTA2Njk2OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/06b4285e-3ef3-4ff8-924d-b114efd5b745\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/b53f3978-b957-4763-892a-b631d1c08017\"\n },\n \"id\": \"06b4285e-3ef3-4ff8-924d-b114efd5b745\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T09:41:06.846570+00:00\",\n \"versionId\": \"MTY5NTYzNDg2Njg0NjU3MDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/2deef8de-358d-4efe-9e69-46285aea6f46\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/0b6521ca-f892-45dc-a472-6c5de3dcd826\"\n },\n \"id\": \"2deef8de-358d-4efe-9e69-46285aea6f46\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T09:23:29.625053+00:00\",\n \"versionId\": \"MTY5NTYzMzgwOTYyNTA1MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/31c97423-3431-460f-bd68-e36d935a6d34\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Hanief tanggal 25 September 2023\",\n \"reference\": \"Encounter/f9b6cb75-34f4-4419-8e14-61048448e44f\"\n },\n \"id\": \"31c97423-3431-460f-bd68-e36d935a6d34\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-25T09:10:53.246693+00:00\",\n \"versionId\": \"MTY5NTYzMzA1MzI0NjY5MzAwMA\"\n },\n \"patient\": {\n \"display\": \"Hanief\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-09-25T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/10009880728\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/76462530-c325-4c61-9c01-07de171a9758\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/1e3c6f79-558d-4cbd-828d-bd024b05c874\"\n },\n \"id\": \"76462530-c325-4c61-9c01-07de171a9758\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-23T07:18:49.184236+00:00\",\n \"versionId\": \"MTY5NTQ1MzUyOTE4NDIzNjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/ac915e51-5d0d-4f47-b5b9-e53789dffc37\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 6 Juni 2023\",\n \"reference\": \"Encounter/2fec61cb-e94e-4ce7-ac86-948a4c5e612b\"\n },\n \"id\": \"ac915e51-5d0d-4f47-b5b9-e53789dffc37\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2023-09-23T07:16:46.468801+00:00\",\n \"versionId\": \"MTY5NTQ1MzQwNjQ2ODgwMTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-06T08:40:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f599f6dc-76c7-4056-80f0-04001b7df7c1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/17b0e9fd-058b-4ff6-a2f6-1607ecf57e3f\"\n },\n \"id\": \"f599f6dc-76c7-4056-80f0-04001b7df7c1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-22T23:38:40.222633+00:00\",\n \"versionId\": \"MTY5NTQyNTkyMDIyMjYzMzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-05T21:55:45+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/18b38d8c-83a1-423e-a50b-54ed14d10781\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 4 Juni 2023\",\n \"reference\": \"Encounter/1e3c6f79-558d-4cbd-828d-bd024b05c874\"\n },\n \"id\": \"18b38d8c-83a1-423e-a50b-54ed14d10781\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-22T05:24:48.823588+00:00\",\n \"versionId\": \"MTY5NTM2MDI4ODgyMzU4ODAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-04T00:10:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/ed3e1feb-c25d-4fd2-845c-d1ffce081901\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith tanggal 6 Juni 2023\",\n \"reference\": \"Encounter/2fec61cb-e94e-4ce7-ac86-948a4c5e612b\"\n },\n \"id\": \"ed3e1feb-c25d-4fd2-845c-d1ffce081901\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-09-22T02:00:18.428454+00:00\",\n \"versionId\": \"MTY5NTM0ODAxODQyODQ1NDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2023-06-06T08:40:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/60305daf-64cb-4abf-a08d-88a47516fcc1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/6b5ed60f-02f9-4016-a0bc-135cb87c5264\"\n },\n \"id\": \"60305daf-64cb-4abf-a08d-88a47516fcc1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-06-14T08:07:57.116507+00:00\",\n \"versionId\": \"MTY4NjczMDA3NzExNjUwNzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T15:37:31+07:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/f1399cf0-5589-48aa-9682-ffe366e77f49\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/a9e0b1b2-4326-47ec-9f61-2d2b7e377b5b\"\n },\n \"id\": \"f1399cf0-5589-48aa-9682-ffe366e77f49\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-06-08T06:31:08.398979+00:00\",\n \"versionId\": \"MTY4NjIwNTg2ODM5ODk3OTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T08:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/685b5647-0314-4b3d-8639-82c77f55c639\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/90923d10-594f-4d82-81a9-2a5f36374aac\"\n },\n \"id\": \"685b5647-0314-4b3d-8639-82c77f55c639\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-23T04:29:42.859010+00:00\",\n \"versionId\": \"MTY4NDgxNjE4Mjg1OTAxMDAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T08:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/1b0d174d-9248-405f-bb3b-5c41b5efeae1\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/90923d10-594f-4d82-81a9-2a5f36374aac\"\n },\n \"id\": \"1b0d174d-9248-405f-bb3b-5c41b5efeae1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-23T04:10:14.654119+00:00\",\n \"versionId\": \"MTY4NDgxNTAxNDY1NDExOTAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T10:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/7cb05be9-2561-44fd-a782-da01ecfbeb62\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/aa6e2ef8-d49f-4770-869e-7d6f7f22885b\"\n },\n \"id\": \"7cb05be9-2561-44fd-a782-da01ecfbeb62\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-16T12:11:49.521322+00:00\",\n \"versionId\": \"MTY4NDIzOTEwOTUyMTMyMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T10:00:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/8885d112-525f-406c-88ca-be1b1cd581cc\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/8fa2c402-43dd-45ea-a3a4-ed9ac004e7e9\"\n },\n \"id\": \"8885d112-525f-406c-88ca-be1b1cd581cc\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-10T16:03:39.388827+00:00\",\n \"versionId\": \"MTY4MzczNDYxOTM4ODgyNzAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T07:00:00+08:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/907c5fcd-fc46-4a76-ae0e-685dad4903cd\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/8fa2c402-43dd-45ea-a3a4-ed9ac004e7e9\"\n },\n \"id\": \"907c5fcd-fc46-4a76-ae0e-685dad4903cd\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/10085103\",\n \"use\": \"official\",\n \"value\": \"10085103\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-05-03T09:55:25.697022+00:00\",\n \"versionId\": \"MTY4MzEwNzcyNTY5NzAyMjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T07:00:00+08:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/6ec86027-4185-4c8b-b627-56b3ae6f94a0\",\n \"resource\": {\n \"category\": [\n \"medication\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"91000299\",\n \"display\": \"Aspirin\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ],\n \"text\": \"Alergi Aspirin\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/6b5ed60f-02f9-4016-a0bc-135cb87c5264\"\n },\n \"id\": \"6ec86027-4185-4c8b-b627-56b3ae6f94a0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-03-28T06:08:24.966386+00:00\",\n \"versionId\": \"MTY3OTk4MzcwNDk2NjM4NjAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T15:37:31+07:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/2c97ff5b-876b-4dbf-93b4-9b30a2b1b679\",\n \"resource\": {\n \"category\": [\n \"food\"\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"code\": \"active\",\n \"display\": \"Active\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"code\": \"89811004\",\n \"display\": \"Gluten\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Alergi bahan gluten, khususnya ketika makan roti gandum\"\n },\n \"encounter\": {\n \"display\": \"Kunjungan Jane Smith di hari Selasa, 14 Juni 2022\",\n \"reference\": \"Encounter/2823ed1d-3e3e-434e-9a5b-9c579d192787\"\n },\n \"id\": \"2c97ff5b-876b-4dbf-93b4-9b30a2b1b679\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98457729\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-03-13T08:21:27.551218+00:00\",\n \"versionId\": \"MTY3ODY5NTY4NzU1MTIxODAwMA\"\n },\n \"patient\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"recordedDate\": \"2022-06-14T15:37:31+07:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/N10000001\"\n },\n \"resourceType\": \"AllergyIntolerance\",\n \"verificationStatus\": {\n \"coding\": [\n {\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\"\n }\n ]\n }\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/?patient=100000030006\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/?patient=100000030006\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/AllergyIntolerance/?patient=100000030006\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 56,\n \"type\": \"searchset\"\n}"
}
]
}
]
},
{
"name": "Riwayat Pengobatan",
"item": [
{
"name": "Obat dari Fasyankes Sendiri",
"item": [
{
"name": "MedicationDispense - Search by Subject",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense?subject=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
],
"query": [
{
"key": "subject",
"value": "100000030006"
}
]
}
},
"response": [
{
"name": "MedicationDispense - Search by Subject",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/MedicationDispense?subject=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
],
"query": [
{
"key": "subject",
"value": "100000030006"
}
]
}
},
"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, 14 May 2024 00:55:05 GMT"
},
{
"key": "content-length",
"value": "31088"
},
{
"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": "e7e27159-ee0b-403f-a1f5-f538eddbebe9"
},
{
"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/MedicationDispense/928db3aa-7087-414e-8acb-3c8a1aff373a\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/59395a17-306d-4941-9e2e-d11765115572\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024041931420-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024041931420-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/10000004\"\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/9d3b8d8a-bc0d-4054-958e-8b106bab6240\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"coding\": [\n {\n \"code\": \"421984009\",\n \"display\": \"Until finished\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Diminum setiap hari sampai habis\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"Jika muncul gejala ruam atau gatal, hubungi IGD RS secepatnya\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"928db3aa-7087-414e-8acb-3c8a1aff373a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024041931420-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-04-19T10:17:42.171297+00:00\",\n \"versionId\": \"MTcxMzUyMTg2MjE3MTI5NzAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/6860499d-da49-4ec7-b699-17bbcb26359e\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/ecaefdbf-3a43-4fdb-8400-7cdde675ba96\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge003\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93020397\",\n \"display\": \"Ibuprofen 400 mg Tablet (PHAPROS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-med003\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"IB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \" 1 kapsul; 3x; Tiap 1 hari; Setelah makan\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"6860499d-da49-4ec7-b699-17bbcb26359e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Ibuprofen 400mg\",\n \"reference\": \"#2024032201944-med003\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:33.928579+00:00\",\n \"versionId\": \"MTcxMTA4MzIxMzkyODU3OTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 15\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/9ddf4471-e729-47d3-a4a7-6d8fc0c4aff1\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/59395a17-306d-4941-9e2e-d11765115572\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge002\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93009470\",\n \"display\": \"Paracetamol 350 mg / Caffeine 50 mg / Ibuprofen 200 mg Tablet (FARSIFEN PLUS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-002\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"PCT001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000101\",\n \"display\": \"Paracetamol\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 350\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000884\",\n \"display\": \"Caffeine\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 50\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 200\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1x1 Tablet per 8 jam, Setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 8,\n \"periodUnit\": \"h\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"9ddf4471-e729-47d3-a4a7-6d8fc0c4aff1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Obat Paracetamol Extra\",\n \"reference\": \"#2024032201944-002\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:19.603965+00:00\",\n \"versionId\": \"MTcxMTA4MzE5OTYwMzk2NTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 10\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/56c173c8-8200-450a-94de-28ee26b53f97\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/08dbc0be-cbac-41a7-ad58-dc5d5f5477e1\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"3 kapsul per hari, diminum setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"56c173c8-8200-450a-94de-28ee26b53f97\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024032201944-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:01.686104+00:00\",\n \"versionId\": \"MTcxMTA4MzE4MTY4NjEwNDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/f89b52ed-f0b4-4595-a7d5-8f5f1583dd9b\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/4b94218d-897b-46b5-ae6c-e5c492e34ee3\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge003\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93020397\",\n \"display\": \"Ibuprofen 400 mg Tablet (PHAPROS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-med003\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"IB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \" 1 kapsul; 3x; Tiap 1 hari; Setelah makan\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"f89b52ed-f0b4-4595-a7d5-8f5f1583dd9b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Ibuprofen 400mg\",\n \"reference\": \"#2024032128460-med003\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:18:48.311454+00:00\",\n \"versionId\": \"MTcxMDk5MTEyODMxMTQ1NDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 15\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/7f4244b3-8560-414d-88b1-70cebd0373cb\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/df03ac28-df55-4814-9b7c-98d2cbf304f4\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge002\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93009470\",\n \"display\": \"Paracetamol 350 mg / Caffeine 50 mg / Ibuprofen 200 mg Tablet (FARSIFEN PLUS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-002\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"PCT001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000101\",\n \"display\": \"Paracetamol\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 350\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000884\",\n \"display\": \"Caffeine\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 50\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 200\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1x1 Tablet per 8 jam, Setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 8,\n \"periodUnit\": \"h\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"7f4244b3-8560-414d-88b1-70cebd0373cb\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Obat Paracetamol Extra\",\n \"reference\": \"#2024032128460-002\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:13:56.474784+00:00\",\n \"versionId\": \"MTcxMDk5MDgzNjQ3NDc4NDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 10\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/897c8a05-e1e6-442b-baa7-2983373013d4\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/de1837bc-a267-40f2-a6d8-006b59fd9a48\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"3 kapsul per hari, diminum setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"897c8a05-e1e6-442b-baa7-2983373013d4\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024032128460-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:06:38.548381+00:00\",\n \"versionId\": \"MTcxMDk5MDM5ODU0ODM4MTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/b8984d91-295a-41ab-8b58-4d38e64d6b64\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/f430fdde-93d8-4dc8-9787-9f0f822cbd70\"\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 \"context\": {\n \"reference\": \"Encounter/b08d1113-74ac-4283-8f54-6292d057a780\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"Day\",\n \"value\": 30\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\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 \"text\": \"1 tablet per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"id\": \"b8984d91-295a-41ab-8b58-4d38e64d6b64\",\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\": \"Apotek Puskesmas SATUSEHAT\",\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\"\n },\n \"medicationReference\": {\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\n \"reference\": \"Medication/52bb4a95-2699-4ce7-bffd-fa28bf5fec3f\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:10:32.443208+00:00\",\n \"versionId\": \"MTcxMDg3MTgzMjQ0MzIwODAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"John Miller\",\n \"reference\": \"Practitioner/N10000003\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"value\": 30\n },\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2024-03-14T03:14:00+00:00\",\n \"whenPrepared\": \"2024-03-14T03:11:00+00:00\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n },\n {\n \"relation\": \"next\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006&_page_token=AfOl5oVKHgcwUUOf5ykPQ_wx5YRmr0PG-1aX9mbdqeV9neFS3HBth6loZnTq0Cd3H4B14Yg7kiyxYAW66l3K78E4BrZh6J73MVmOYM27dRbsh4tPFk2SGqcOUhU-PwJq2L9d6spvRnOuN0i7R73ZCWAxarirFgWjVg667Ke0DUsddJ8GO3QkJ833Lr7tuo_xDSyWv4EU1P4Cre-8O_gFnikJN9vvyPQ%3D\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 8,\n \"type\": \"searchset\"\n}"
}
]
},
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat dari Fasyankes Sendiri)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\",\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"response": [
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat dari Fasyankes Sendiri)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\",\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"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/MedicationStatement/708713b9-d9d2-4fb7-88fd-de4a0fbbc64e/_history/MTcxNTY0ODk4MzE2MTM3NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0ODk4MzE2MTM3NDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:09:43 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:09:43 GMT"
},
{
"key": "content-length",
"value": "971"
},
{
"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": "ec2e37c2-b1d8-4ce6-8633-80e2d605d234"
},
{
"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\": \"outpatient\",\n \"display\": \"Outpatient\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\"\n }\n ]\n },\n \"context\": {\n \"reference\": \"Encounter/cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0\"\n },\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"id\": \"708713b9-d9d2-4fb7-88fd-de4a0fbbc64e\",\n \"identifier\": [],\n \"informationSource\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"medicationReference\": {\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\",\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:09:43.161374+00:00\",\n \"versionId\": \"MTcxNTY0ODk4MzE2MTM3NDAwMA\"\n },\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat dari Fasyankes Sendiri)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\",\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"response": [
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat dari Fasyankes Sendiri)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\",\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"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/MedicationStatement/708713b9-d9d2-4fb7-88fd-de4a0fbbc64e/_history/MTcxNTY0ODk4MzE2MTM3NDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0ODk4MzE2MTM3NDAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:09:43 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:09:43 GMT"
},
{
"key": "content-length",
"value": "971"
},
{
"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": "ec2e37c2-b1d8-4ce6-8633-80e2d605d234"
},
{
"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\": \"outpatient\",\n \"display\": \"Outpatient\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\"\n }\n ]\n },\n \"context\": {\n \"reference\": \"Encounter/cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0\"\n },\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"dosage\": [\n {\n \"text\": \"Parasetamol 5 ml diminum 4-6 jam sekali bila demam\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 4,\n \"periodMax\": 6,\n \"periodUnit\": \"h\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"id\": \"708713b9-d9d2-4fb7-88fd-de4a0fbbc64e\",\n \"identifier\": [],\n \"informationSource\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"medicationReference\": {\n \"display\": \"Paracetamol 120 mg/5 mL Sirup (CASETAMOL)\",\n \"reference\": \"Medication/d795a027-a29d-4212-9595-ae6f9cedfe13\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:09:43.161374+00:00\",\n \"versionId\": \"MTcxNTY0ODk4MzE2MTM3NDAwMA\"\n },\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "MedicationDispense - Search by Subject",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationDispense?subject=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
],
"query": [
{
"key": "subject",
"value": "100000030006"
}
]
}
},
"response": [
{
"name": "MedicationDispense - Search by Subject",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/MedicationDispense?subject=100000030006",
"host": [
"{{base_url}}"
],
"path": [
"MedicationDispense"
],
"query": [
{
"key": "subject",
"value": "100000030006"
}
]
}
},
"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, 14 May 2024 00:55:05 GMT"
},
{
"key": "content-length",
"value": "31088"
},
{
"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": "e7e27159-ee0b-403f-a1f5-f538eddbebe9"
},
{
"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/MedicationDispense/928db3aa-7087-414e-8acb-3c8a1aff373a\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/59395a17-306d-4941-9e2e-d11765115572\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024041931420-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024041931420-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"CAP\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/10000004\"\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/9d3b8d8a-bc0d-4054-958e-8b106bab6240\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"coding\": [\n {\n \"code\": \"421984009\",\n \"display\": \"Until finished\",\n \"system\": \"http://snomed.info/sct\"\n }\n ],\n \"text\": \"Diminum setiap hari sampai habis\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"Jika muncul gejala ruam atau gatal, hubungi IGD RS secepatnya\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"928db3aa-7087-414e-8acb-3c8a1aff373a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024041931420-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-04-19T10:17:42.171297+00:00\",\n \"versionId\": \"MTcxMzUyMTg2MjE3MTI5NzAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/6860499d-da49-4ec7-b699-17bbcb26359e\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/ecaefdbf-3a43-4fdb-8400-7cdde675ba96\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge003\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93020397\",\n \"display\": \"Ibuprofen 400 mg Tablet (PHAPROS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-med003\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"IB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \" 1 kapsul; 3x; Tiap 1 hari; Setelah makan\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"6860499d-da49-4ec7-b699-17bbcb26359e\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Ibuprofen 400mg\",\n \"reference\": \"#2024032201944-med003\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:33.928579+00:00\",\n \"versionId\": \"MTcxMTA4MzIxMzkyODU3OTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 15\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/9ddf4471-e729-47d3-a4a7-6d8fc0c4aff1\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/59395a17-306d-4941-9e2e-d11765115572\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge002\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93009470\",\n \"display\": \"Paracetamol 350 mg / Caffeine 50 mg / Ibuprofen 200 mg Tablet (FARSIFEN PLUS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-002\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"PCT001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000101\",\n \"display\": \"Paracetamol\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 350\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000884\",\n \"display\": \"Caffeine\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 50\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 200\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1x1 Tablet per 8 jam, Setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 8,\n \"periodUnit\": \"h\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"9ddf4471-e729-47d3-a4a7-6d8fc0c4aff1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Obat Paracetamol Extra\",\n \"reference\": \"#2024032201944-002\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:19.603965+00:00\",\n \"versionId\": \"MTcxMTA4MzE5OTYwMzk2NTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 10\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/56c173c8-8200-450a-94de-28ee26b53f97\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/08dbc0be-cbac-41a7-ad58-dc5d5f5477e1\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032201944-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032201944-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/3e2b9fa1-c877-4a90-9f19-28229b8917f3\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"3 kapsul per hari, diminum setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"56c173c8-8200-450a-94de-28ee26b53f97\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024032201944-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-22T04:53:01.686104+00:00\",\n \"versionId\": \"MTcxMTA4MzE4MTY4NjEwNDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/f89b52ed-f0b4-4595-a7d5-8f5f1583dd9b\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/4b94218d-897b-46b5-ae6c-e5c492e34ee3\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge003\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93020397\",\n \"display\": \"Ibuprofen 400 mg Tablet (PHAPROS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-med003\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"IB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \" 1 kapsul; 3x; Tiap 1 hari; Setelah makan\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"f89b52ed-f0b4-4595-a7d5-8f5f1583dd9b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111333-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Ibuprofen 400mg\",\n \"reference\": \"#2024032128460-med003\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:18:48.311454+00:00\",\n \"versionId\": \"MTcxMDk5MTEyODMxMTQ1NDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 15\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/7f4244b3-8560-414d-88b1-70cebd0373cb\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/df03ac28-df55-4814-9b7c-98d2cbf304f4\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge002\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"code\": \"93009470\",\n \"display\": \"Paracetamol 350 mg / Caffeine 50 mg / Ibuprofen 200 mg Tablet (FARSIFEN PLUS)\",\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\": \"BS066\",\n \"display\": \"Tablet\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-002\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"PCT001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000101\",\n \"display\": \"Paracetamol\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 350\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000884\",\n \"display\": \"Caffeine\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 50\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"91000107\",\n \"display\": \"Ibuprofen\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 200\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 5\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1x1 Tablet per 8 jam, Setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 8,\n \"periodUnit\": \"h\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"7f4244b3-8560-414d-88b1-70cebd0373cb\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111222-1\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Obat Paracetamol Extra\",\n \"reference\": \"#2024032128460-002\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:13:56.474784+00:00\",\n \"versionId\": \"MTcxMDk5MDgzNjQ3NDc4NDAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\n \"value\": 10\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/897c8a05-e1e6-442b-baa7-2983373013d4\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/de1837bc-a267-40f2-a6d8-006b59fd9a48\"\n }\n ],\n \"category\": {\n \"coding\": [\n {\n \"code\": \"community\",\n \"display\": \"Community\",\n \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n }\n ]\n },\n \"contained\": [\n {\n \"id\": \"2024032128460-Charge001\",\n \"propertyGroup\": [\n {\n \"priceComponent\": [\n {\n \"amount\": {\n \"currency\": \"IDR\",\n \"value\": 45000\n },\n \"type\": \"base\"\n }\n ]\n }\n ],\n \"resourceType\": \"ChargeItemDefinition\",\n \"status\": \"active\"\n },\n {\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/MedicationType\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"SD\",\n \"display\": \"Gives of such doses\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-type\"\n }\n ]\n }\n }\n ],\n \"form\": {\n \"coding\": [\n {\n \"code\": \"BS019\",\n \"display\": \"Kapsul\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/medication-form\"\n }\n ]\n },\n \"id\": \"2024032128460-med001\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/medication/10000099\",\n \"use\": \"official\",\n \"value\": \"AB001\"\n }\n ],\n \"ingredient\": [\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000256\",\n \"display\": \"Amoxicillin Trihydrate 100 mg/mL Sirup Kering (PHARMA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 500\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000726\",\n \"display\": \"Chloramphenicol 500 mg Kapsul (CHLORAMEX)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 250\n }\n }\n },\n {\n \"isActive\": true,\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93000279\",\n \"display\": \"Cefixime Trihydrate 100 mg Kapsul (HEXPHARM JAYA LABORATORIES)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"strength\": {\n \"denominator\": {\n \"code\": \"TAB\",\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\": 100\n }\n }\n }\n ],\n \"manufacturer\": {\n \"reference\": \"Organization/900001\"\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/bd7ade58-bbc4-4f71-be13-d33dedbc7892\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"days\",\n \"value\": 7\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\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\": \"3 kapsul per hari, diminum setelah makan selama 7 hari\",\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 \"text\": \"3 kapsul per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 3,\n \"period\": 1,\n \"periodUnit\": \"d\",\n \"when\": [\n \"PC\"\n ]\n }\n }\n }\n ],\n \"id\": \"897c8a05-e1e6-442b-baa7-2983373013d4\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n },\n {\n \"system\": \"http://sys-ids.kemkes.go.id/prescription-item/10000099\",\n \"use\": \"official\",\n \"value\": \"A00000111111-2\"\n }\n ],\n \"medicationReference\": {\n \"display\": \"Racikan Antibiotik dr. Bronsig Amoxicillin 500mg, Cefixime 100mg, Chloramphenicol 500mg\",\n \"reference\": \"#2024032128460-med001\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:06:38.548381+00:00\",\n \"versionId\": \"MTcxMDk5MDM5ODU0ODM4MTAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"Apoteker A, SFarm\",\n \"reference\": \"Practitioner/10010910332\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"CAP\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"CAP\",\n \"value\": 21\n },\n \"receiver\": [\n {\n \"reference\": \"Patient/100000030006\"\n }\n ],\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2023-11-13T05:50:00+00:00\",\n \"whenPrepared\": \"2023-11-13T05:35:00+00:00\"\n }\n },\n {\n \"fullUrl\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/b8984d91-295a-41ab-8b58-4d38e64d6b64\",\n \"resource\": {\n \"authorizingPrescription\": [\n {\n \"reference\": \"MedicationRequest/f430fdde-93d8-4dc8-9787-9f0f822cbd70\"\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 \"context\": {\n \"reference\": \"Encounter/b08d1113-74ac-4283-8f54-6292d057a780\"\n },\n \"daysSupply\": {\n \"code\": \"d\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"Day\",\n \"value\": 30\n },\n \"dosageInstruction\": [\n {\n \"additionalInstruction\": [\n {\n \"text\": \"Diminum setiap hari\"\n }\n ],\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"unit\": \"TAB\",\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\": \"1 tablet perhari, diminum setiap hari tanpa jeda selama 1 bulan\",\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 \"text\": \"1 tablet per hari\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"id\": \"b8984d91-295a-41ab-8b58-4d38e64d6b64\",\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\": \"Apotek Puskesmas SATUSEHAT\",\n \"reference\": \"Location/52e135eb-1956-4871-ba13-e833e662484d\"\n },\n \"medicationReference\": {\n \"display\": \"Amlodipine Besilate 5 mg Tablet (DEXA MEDICA)\",\n \"reference\": \"Medication/52bb4a95-2699-4ce7-bffd-fa28bf5fec3f\"\n },\n \"meta\": {\n \"lastUpdated\": \"2024-03-19T18:10:32.443208+00:00\",\n \"versionId\": \"MTcxMDg3MTgzMjQ0MzIwODAwMA\"\n },\n \"performer\": [\n {\n \"actor\": {\n \"display\": \"John Miller\",\n \"reference\": \"Practitioner/N10000003\"\n }\n }\n ],\n \"quantity\": {\n \"code\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"value\": 30\n },\n \"resourceType\": \"MedicationDispense\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"whenHandedOver\": \"2024-03-14T03:14:00+00:00\",\n \"whenPrepared\": \"2024-03-14T03:11:00+00:00\"\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"search\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n },\n {\n \"relation\": \"next\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006&_page_token=AfOl5oVKHgcwUUOf5ykPQ_wx5YRmr0PG-1aX9mbdqeV9neFS3HBth6loZnTq0Cd3H4B14Yg7kiyxYAW66l3K78E4BrZh6J73MVmOYM27dRbsh4tPFk2SGqcOUhU-PwJq2L9d6spvRnOuN0i7R73ZCWAxarirFgWjVg667Ke0DUsddJ8GO3QkJ833Lr7tuo_xDSyWv4EU1P4Cre-8O_gFnikJN9vvyPQ%3D\"\n },\n {\n \"relation\": \"first\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n },\n {\n \"relation\": \"self\",\n \"url\": \"https://api-satusehat-dev.dto.kemkes.go.id/fhir-r4/v1/MedicationDispense/?subject=100000030006\"\n }\n ],\n \"resourceType\": \"Bundle\",\n \"total\": 8,\n \"type\": \"searchset\"\n}"
}
]
}
]
},
{
"name": "Obat bukan dari Fasyankes Sendiri",
"item": [
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat bukan dari Fasyankes Sendiri)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"response": [
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat bukan dari Fasyankes Sendiri)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:10:48 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0OTA0ODU1MDQyMDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/MedicationStatement/83fe07a3-0554-43ad-b25e-9c01c004b008/_history/MTcxNTY0OTA0ODU1MDQyMDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:10:48 GMT"
},
{
"key": "content-length",
"value": "955"
},
{
"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": "f1dd9fb3-8032-4b69-b058-07c0f9710bd1"
},
{
"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\": \"outpatient\",\n \"display\": \"Outpatient\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\"\n }\n ]\n },\n \"context\": {\n \"reference\": \"Encounter/cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0\"\n },\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"id\": \"83fe07a3-0554-43ad-b25e-9c01c004b008\",\n \"identifier\": [],\n \"informationSource\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:10:48.550420+00:00\",\n \"versionId\": \"MTcxNTY0OTA0ODU1MDQyMDAwMA\"\n },\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat bukan dari Fasyankes Sendiri)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"response": [
{
"name": "MedicationStatement - Riwayat Pengobatan (Obat bukan dari Fasyankes Sendiri)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"outpatient\",\n \"display\": \"Outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"informationSource\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"context\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/MedicationStatement",
"host": [
"{{base_url}}"
],
"path": [
"MedicationStatement"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 01:10:48 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxNTY0OTA0ODU1MDQyMDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/MedicationStatement/83fe07a3-0554-43ad-b25e-9c01c004b008/_history/MTcxNTY0OTA0ODU1MDQyMDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 01:10:48 GMT"
},
{
"key": "content-length",
"value": "955"
},
{
"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": "f1dd9fb3-8032-4b69-b058-07c0f9710bd1"
},
{
"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\": \"outpatient\",\n \"display\": \"Outpatient\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\"\n }\n ]\n },\n \"context\": {\n \"reference\": \"Encounter/cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0\"\n },\n \"dateAsserted\": \"2024-03-14T02:19:00+00:00\",\n \"dosage\": [\n {\n \"text\": \"one capsule one time daily\",\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n }\n }\n ],\n \"effectiveDateTime\": \"2024-03-14T02:19:00+00:00\",\n \"id\": \"83fe07a3-0554-43ad-b25e-9c01c004b008\",\n \"identifier\": [],\n \"informationSource\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"93001819\",\n \"display\": \"Amlodipine Besilate 5 mg Tablet (HOLI PHARMA)\",\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\"\n }\n ]\n },\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T01:10:48.550420+00:00\",\n \"versionId\": \"MTcxNTY0OTA0ODU1MDQyMDAwMA\"\n },\n \"resourceType\": \"MedicationStatement\",\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "Keluhan Utama",
"item": [
{
"name": "Condition - Keluhan Utama",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Keluhan Utama",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/2afeaec1-5944-4ee3-9a3f-e37262691025/_history/MTcxMDYwMTkxMzAxNTg2ODAwMA"
},
{
"key": "last-modified",
"value": "Sat, 16 Mar 2024 15:11:53 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDYwMTkxMzAxNTg2ODAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 16 Mar 2024 15:11:53 GMT"
},
{
"key": "Content-Length",
"value": "774"
},
{
"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": "70ddea3d-a788-43dc-ace9-288dd79d0d5a"
},
{
"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\": \"80313002\",\n \"display\": \"Palpitations\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/null\"\n },\n \"id\": \"2afeaec1-5944-4ee3-9a3f-e37262691025\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-16T15:11:53.015868+00:00\",\n \"versionId\": \"MTcxMDYwMTkxMzAxNTg2ODAwMA\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "AllergyIntolerance - Alergi Telur",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"food\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-14T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/AllergyIntolerance",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
]
}
},
"response": []
},
{
"name": "AllergyIntolerance - Alergi Telur",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"AllergyIntolerance\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/allergy/1000004\",\n \"use\": \"official\",\n \"value\": \"98769567\"\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n \"food\"\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/kfa\",\n \"code\": \"91930004\",\n \"display\": \"Allergy to eggs\"\n }\n ],\n \"text\": \"Alergi Telur\"\n },\n \"patient\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Kunjungan Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"recordedDate\": \"2024-03-14T02:19:00+00:00\",\n \"recorder\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/AllergyIntolerance",
"host": [
"{{base_url}}"
],
"path": [
"AllergyIntolerance"
]
}
},
"response": []
},
{
"name": "Condition - Keluhan Utama",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Diagnosis_Primer\", data.id);"
],
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16:00+00:00\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Condition",
"host": [
"{{base_url}}"
],
"path": [
"Condition"
]
}
},
"response": [
{
"name": "Condition - Keluhan Utama",
"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\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80313002\",\n \"display\": \"Palpitations\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16: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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Condition/2afeaec1-5944-4ee3-9a3f-e37262691025/_history/MTcxMDYwMTkxMzAxNTg2ODAwMA"
},
{
"key": "last-modified",
"value": "Sat, 16 Mar 2024 15:11:53 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDYwMTkxMzAxNTg2ODAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Sat, 16 Mar 2024 15:11:53 GMT"
},
{
"key": "Content-Length",
"value": "774"
},
{
"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": "70ddea3d-a788-43dc-ace9-288dd79d0d5a"
},
{
"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\": \"80313002\",\n \"display\": \"Palpitations\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"encounter\": {\n \"reference\": \"Encounter/null\"\n },\n \"id\": \"2afeaec1-5944-4ee3-9a3f-e37262691025\",\n \"identifier\": [],\n \"meta\": {\n \"lastUpdated\": \"2024-03-16T15:11:53.015868+00:00\",\n \"versionId\": \"MTcxMDYwMTkxMzAxNTg2ODAwMA\"\n },\n \"onsetDateTime\": \"2024-03-14T01:10:00+00:00\",\n \"recordedDate\": \"2024-03-14T02:16:00+00:00\",\n \"resourceType\": \"Condition\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Encounter - Masuk ke Ruangan IGD",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"fb4d1631-ed66-4a89-a9de-0f6c7e66b957\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"KSP20240001\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\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\": \"Dokter Bronsig\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-07-04T08:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/022f4098-d391-42c0-bba1-abeab8232a13\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2023-07-04T08:30:00+00:00\",\n \"end\": \"2023-07-04T08:40: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 \"location\": {\n \"reference\": \"Location/dad49fb8-5180-4a03-b5de-b43a332a1f12\",\n \"display\": \"Ruangan Tindakan Kebidanan, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2023-07-04T08:40: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-07-04T08:30:00+00:00\",\n \"end\": \"2023-07-04T08:31:00+00:00\"\n }\n },\n {\n \"status\": \"triaged\",\n \"period\": {\n \"start\": \"2023-07-04T08:31:00+00:00\",\n \"end\": \"2023-07-04T08:40:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-07-04T08:40: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": "fb4d1631-ed66-4a89-a9de-0f6c7e66b957"
}
]
}
},
"response": [
{
"name": "Encounter - Masuk ke Ruangan Tindakan Kebidanan",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"fb4d1631-ed66-4a89-a9de-0f6c7e66b957\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"KSP20240001\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\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\": \"Dokter Bronsig\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-07-04T08:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/022f4098-d391-42c0-bba1-abeab8232a13\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2023-07-04T08:30:00+00:00\",\n \"end\": \"2023-07-04T08:40: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 \"location\": {\n \"reference\": \"Location/dad49fb8-5180-4a03-b5de-b43a332a1f12\",\n \"display\": \"Ruangan Tindakan Kebidanan, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2023-07-04T08:40: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-07-04T08:30:00+00:00\",\n \"end\": \"2023-07-04T08:31:00+00:00\"\n }\n },\n {\n \"status\": \"triaged\",\n \"period\": {\n \"start\": \"2023-07-04T08:31:00+00:00\",\n \"end\": \"2023-07-04T08:40:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-07-04T08:40: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": "fb4d1631-ed66-4a89-a9de-0f6c7e66b957"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTY5ODYzNDY3MDI3NjUzMDAwMA\""
},
{
"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/fb4d1631-ed66-4a89-a9de-0f6c7e66b957/_history/MTY5ODYzNDY3MDI3NjUzMDAwMA"
},
{
"key": "last-modified",
"value": "Mon, 30 Oct 2023 02:57:50 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Mon, 30 Oct 2023 02:57:50 GMT"
},
{
"key": "content-length",
"value": "2512"
},
{
"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": "0f79eb6a-879b-4df7-8706-d9c3a1060025"
},
{
"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\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"fb4d1631-ed66-4a89-a9de-0f6c7e66b957\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000002\",\n \"value\": \"KSP20240001\"\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\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"reference\": \"Location/022f4098-d391-42c0-bba1-abeab8232a13\"\n },\n \"period\": {\n \"end\": \"2023-07-04T08:40:00+00:00\",\n \"start\": \"2023-07-04T08:30:00+00:00\"\n }\n },\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\": \"Ruangan Tindakan Kebidanan, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"reference\": \"Location/dad49fb8-5180-4a03-b5de-b43a332a1f12\"\n },\n \"period\": {\n \"start\": \"2023-07-04T08:40:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-10-30T02:57:50.276530+00:00\",\n \"versionId\": \"MTY5ODYzNDY3MDI3NjUzMDAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-07-04T08:30:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000002\"\n },\n \"status\": \"in-progress\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-07-04T08:31:00+00:00\",\n \"start\": \"2023-07-04T08:30:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"end\": \"2023-07-04T08:40:00+00:00\",\n \"start\": \"2023-07-04T08:31:00+00:00\"\n },\n \"status\": \"triaged\"\n },\n {\n \"period\": {\n \"start\": \"2023-07-04T08:40:00+00:00\"\n },\n \"status\": \"in-progress\"\n }\n ],\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n }\n}"
}
]
},
{
"name": "Encounter - Masuk ke Ruangan IGD",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"fb4d1631-ed66-4a89-a9de-0f6c7e66b957\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"KSP20240001\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\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\": \"Dokter Bronsig\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-07-04T08:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/022f4098-d391-42c0-bba1-abeab8232a13\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2023-07-04T08:30:00+00:00\",\n \"end\": \"2023-07-04T08:40: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 \"location\": {\n \"reference\": \"Location/dad49fb8-5180-4a03-b5de-b43a332a1f12\",\n \"display\": \"Ruangan Tindakan Kebidanan, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2023-07-04T08:40: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-07-04T08:30:00+00:00\",\n \"end\": \"2023-07-04T08:31:00+00:00\"\n }\n },\n {\n \"status\": \"triaged\",\n \"period\": {\n \"start\": \"2023-07-04T08:31:00+00:00\",\n \"end\": \"2023-07-04T08:40:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-07-04T08:40: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": "fb4d1631-ed66-4a89-a9de-0f6c7e66b957"
}
]
}
},
"response": [
{
"name": "Encounter - Masuk ke Ruangan Tindakan Kebidanan",
"originalRequest": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Encounter\",\n \"id\": \"fb4d1631-ed66-4a89-a9de-0f6c7e66b957\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/{{Org_id}}\",\n \"value\": \"KSP20240001\"\n }\n ],\n \"status\": \"in-progress\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"EMER\",\n \"display\": \"emergency\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\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\": \"Dokter Bronsig\"\n }\n }\n ],\n \"period\": {\n \"start\": \"2023-07-04T08:30:00+00:00\"\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/022f4098-d391-42c0-bba1-abeab8232a13\",\n \"display\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2023-07-04T08:30:00+00:00\",\n \"end\": \"2023-07-04T08:40: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 \"location\": {\n \"reference\": \"Location/dad49fb8-5180-4a03-b5de-b43a332a1f12\",\n \"display\": \"Ruangan Tindakan Kebidanan, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\"\n },\n \"period\": {\n \"start\": \"2023-07-04T08:40: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-07-04T08:30:00+00:00\",\n \"end\": \"2023-07-04T08:31:00+00:00\"\n }\n },\n {\n \"status\": \"triaged\",\n \"period\": {\n \"start\": \"2023-07-04T08:31:00+00:00\",\n \"end\": \"2023-07-04T08:40:00+00:00\"\n }\n },\n {\n \"status\": \"in-progress\",\n \"period\": {\n \"start\": \"2023-07-04T08:40: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": "fb4d1631-ed66-4a89-a9de-0f6c7e66b957"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTY5ODYzNDY3MDI3NjUzMDAwMA\""
},
{
"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/fb4d1631-ed66-4a89-a9de-0f6c7e66b957/_history/MTY5ODYzNDY3MDI3NjUzMDAwMA"
},
{
"key": "last-modified",
"value": "Mon, 30 Oct 2023 02:57:50 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Mon, 30 Oct 2023 02:57:50 GMT"
},
{
"key": "content-length",
"value": "2512"
},
{
"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": "0f79eb6a-879b-4df7-8706-d9c3a1060025"
},
{
"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\": \"EMER\",\n \"display\": \"emergency\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\"\n },\n \"id\": \"fb4d1631-ed66-4a89-a9de-0f6c7e66b957\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/encounter/10000002\",\n \"value\": \"KSP20240001\"\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\": \"Ruangan Triase, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"reference\": \"Location/022f4098-d391-42c0-bba1-abeab8232a13\"\n },\n \"period\": {\n \"end\": \"2023-07-04T08:40:00+00:00\",\n \"start\": \"2023-07-04T08:30:00+00:00\"\n }\n },\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\": \"Ruangan Tindakan Kebidanan, Instalasi Gawat Darurat, Gedung Utama, Lantai 1\",\n \"reference\": \"Location/dad49fb8-5180-4a03-b5de-b43a332a1f12\"\n },\n \"period\": {\n \"start\": \"2023-07-04T08:40:00+00:00\"\n }\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-10-30T02:57:50.276530+00:00\",\n \"versionId\": \"MTY5ODYzNDY3MDI3NjUzMDAwMA\"\n },\n \"participant\": [\n {\n \"individual\": {\n \"display\": \"Dokter Bronsig\",\n \"reference\": \"Practitioner/N10000001\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"code\": \"ATND\",\n \"display\": \"attender\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n }\n ]\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2023-07-04T08:30:00+00:00\"\n },\n \"resourceType\": \"Encounter\",\n \"serviceProvider\": {\n \"reference\": \"Organization/10000002\"\n },\n \"status\": \"in-progress\",\n \"statusHistory\": [\n {\n \"period\": {\n \"end\": \"2023-07-04T08:31:00+00:00\",\n \"start\": \"2023-07-04T08:30:00+00:00\"\n },\n \"status\": \"arrived\"\n },\n {\n \"period\": {\n \"end\": \"2023-07-04T08:40:00+00:00\",\n \"start\": \"2023-07-04T08:31:00+00:00\"\n },\n \"status\": \"triaged\"\n },\n {\n \"period\": {\n \"start\": \"2023-07-04T08:40:00+00:00\"\n },\n \"status\": \"in-progress\"\n }\n ],\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n }\n}"
}
]
}
]
},
{
"name": "05. Asesmen Awal IGD",
"item": [
{
"name": "Asesmen Nyeri",
"item": [
{
"name": "Ya",
"item": [
{
"name": "Observation - Nyeri - Ya",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"22253000\",\n \"display\": \"Pain\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Nyeri - Ya",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"22253000\",\n \"display\": \"Pain\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueBoolean\": true\n}",
"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/\"MTY5Mjk2NzE2MzM3MzU3NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/5ba26703-5125-419d-b16e-78d4e5bf483e/_history/MTY5Mjk2NzE2MzM3MzU3NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:39:23 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:39:23 GMT"
},
{
"key": "content-length",
"value": "734"
},
{
"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": "f06ccb92-0abb-4c5f-8e46-adaece297937"
},
{
"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\": \"22253000\",\n \"display\": \"Pain\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"5ba26703-5125-419d-b16e-78d4e5bf483e\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:39:23.373576+00:00\",\n \"versionId\": \"MTY5Mjk2NzE2MzM3MzU3NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Nyeri - Ya",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"22253000\",\n \"display\": \"Pain\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Nyeri - Ya",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"22253000\",\n \"display\": \"Pain\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueBoolean\": true\n}",
"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/\"MTY5Mjk2NzE2MzM3MzU3NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/5ba26703-5125-419d-b16e-78d4e5bf483e/_history/MTY5Mjk2NzE2MzM3MzU3NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:39:23 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:39:23 GMT"
},
{
"key": "content-length",
"value": "734"
},
{
"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": "f06ccb92-0abb-4c5f-8e46-adaece297937"
},
{
"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\": \"22253000\",\n \"display\": \"Pain\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"5ba26703-5125-419d-b16e-78d4e5bf483e\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:39:23.373576+00:00\",\n \"versionId\": \"MTY5Mjk2NzE2MzM3MzU3NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueBoolean\": true\n}"
}
]
}
]
},
{
"name": "Tidak",
"item": [
{
"name": "Observation - Nyeri - Tidak",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"22253000\",\n \"display\": \"Pain\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueBoolean\": false\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Nyeri - Tidak",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"22253000\",\n \"display\": \"Pain\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueBoolean\": false\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/4e21bc33-d968-4f0f-8aeb-90eda53e1c48/_history/MTY5Mjk2NzE5MTExOTYwOTAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:39:51 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzE5MTExOTYwOTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:39:51 GMT"
},
{
"key": "content-length",
"value": "735"
},
{
"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": "91e7bb2f-6791-46d2-97f9-368db11fbb7e"
},
{
"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\": \"22253000\",\n \"display\": \"Pain\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"4e21bc33-d968-4f0f-8aeb-90eda53e1c48\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:39:51.119609+00:00\",\n \"versionId\": \"MTY5Mjk2NzE5MTExOTYwOTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueBoolean\": false\n}"
}
]
},
{
"name": "Observation - Nyeri - Tidak",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"22253000\",\n \"display\": \"Pain\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueBoolean\": false\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Nyeri - Tidak",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"22253000\",\n \"display\": \"Pain\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueBoolean\": false\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/4e21bc33-d968-4f0f-8aeb-90eda53e1c48/_history/MTY5Mjk2NzE5MTExOTYwOTAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:39:51 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzE5MTExOTYwOTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:39:51 GMT"
},
{
"key": "content-length",
"value": "735"
},
{
"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": "91e7bb2f-6791-46d2-97f9-368db11fbb7e"
},
{
"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\": \"22253000\",\n \"display\": \"Pain\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"4e21bc33-d968-4f0f-8aeb-90eda53e1c48\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:39:51.119609+00:00\",\n \"versionId\": \"MTY5Mjk2NzE5MTExOTYwOTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueBoolean\": false\n}"
}
]
}
]
}
]
},
{
"name": "Skala Nyeri",
"item": [
{
"name": "Numeric Rating Scale (NRS)",
"item": [
{
"name": "Observation - NRS",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1172399009\",\n \"display\": \"Numeric rating scale score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueInteger\": 10\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - NRS",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1172399009\",\n \"display\": \"Numeric rating scale score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueInteger\": 10\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": "Fri, 25 Aug 2023 12:41:04 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzI2NDE1MDM5NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/284f17e8-4fa1-447e-a3a4-65e8d987c693/_history/MTY5Mjk2NzI2NDE1MDM5NjAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:41:04 GMT"
},
{
"key": "content-length",
"value": "756"
},
{
"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": "7223700d-482e-47e0-bbb0-50420c51f1ed"
},
{
"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\": \"1172399009\",\n \"display\": \"Numeric rating scale score\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"284f17e8-4fa1-447e-a3a4-65e8d987c693\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:41:04.150396+00:00\",\n \"versionId\": \"MTY5Mjk2NzI2NDE1MDM5NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueInteger\": 10\n}"
}
]
},
{
"name": "Observation - NRS",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1172399009\",\n \"display\": \"Numeric rating scale score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueInteger\": 10\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - NRS",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1172399009\",\n \"display\": \"Numeric rating scale score\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueInteger\": 10\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": "Fri, 25 Aug 2023 12:41:04 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzI2NDE1MDM5NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/284f17e8-4fa1-447e-a3a4-65e8d987c693/_history/MTY5Mjk2NzI2NDE1MDM5NjAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:41:04 GMT"
},
{
"key": "content-length",
"value": "756"
},
{
"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": "7223700d-482e-47e0-bbb0-50420c51f1ed"
},
{
"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\": \"1172399009\",\n \"display\": \"Numeric rating scale score\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"284f17e8-4fa1-447e-a3a4-65e8d987c693\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:41:04.150396+00:00\",\n \"versionId\": \"MTY5Mjk2NzI2NDE1MDM5NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueInteger\": 10\n}"
}
]
}
]
},
{
"name": "Baker Pain Scale (BPS)",
"item": [
{
"name": "Observation - BPS",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38221-8\",\n \"display\": \"Pain severity Wong-Baker FACES pain rating scale\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueInteger\": 8\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - BPS",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38221-8\",\n \"display\": \"Pain severity Wong-Baker FACES pain rating scale\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueInteger\": 8\n}",
"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": "last-modified",
"value": "Fri, 25 Aug 2023 12:41:21 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/ca627d61-d4a6-4271-9923-be6024e508f0/_history/MTY5Mjk2NzI4MTkxOTgxODAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzI4MTkxOTgxODAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:41:21 GMT"
},
{
"key": "content-length",
"value": "768"
},
{
"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": "b235dac0-1a02-4c7c-94de-6a8ad972d925"
},
{
"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\": \"38221-8\",\n \"display\": \"Pain severity Wong-Baker FACES pain rating scale\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"ca627d61-d4a6-4271-9923-be6024e508f0\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:41:21.919818+00:00\",\n \"versionId\": \"MTY5Mjk2NzI4MTkxOTgxODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueInteger\": 8\n}"
}
]
},
{
"name": "Observation - BPS",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38221-8\",\n \"display\": \"Pain severity Wong-Baker FACES pain rating scale\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueInteger\": 8\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - BPS",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38221-8\",\n \"display\": \"Pain severity Wong-Baker FACES pain rating scale\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueInteger\": 8\n}",
"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": "last-modified",
"value": "Fri, 25 Aug 2023 12:41:21 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/ca627d61-d4a6-4271-9923-be6024e508f0/_history/MTY5Mjk2NzI4MTkxOTgxODAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzI4MTkxOTgxODAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:41:21 GMT"
},
{
"key": "content-length",
"value": "768"
},
{
"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": "b235dac0-1a02-4c7c-94de-6a8ad972d925"
},
{
"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\": \"38221-8\",\n \"display\": \"Pain severity Wong-Baker FACES pain rating scale\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"ca627d61-d4a6-4271-9923-be6024e508f0\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:41:21.919818+00:00\",\n \"versionId\": \"MTY5Mjk2NzI4MTkxOTgxODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueInteger\": 8\n}"
}
]
}
]
},
{
"name": "Neonatal Infant Pain Scale (NIPS)",
"item": [
{
"name": "Observation - Facial Expression (Ekspresi wajah)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"95624-3\",\n \"display\": \"Facial expression\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32299-2\",\n \"display\": \"Grimace\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Facial Expression (Ekspresi wajah)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"95624-3\",\n \"display\": \"Facial expression\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32299-2\",\n \"display\": \"Grimace\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/7fa5e3ae-b683-4fc3-b36a-07ce8ce19cef/_history/MTY5Mjk2NzMwODM4NDg2MjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzMwODM4NDg2MjAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:41:48 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:41:48 GMT"
},
{
"key": "content-length",
"value": "825"
},
{
"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": "f9ec7c39-570a-4d9b-bc65-aa75b4c80f70"
},
{
"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\": \"95624-3\",\n \"display\": \"Facial expression\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"7fa5e3ae-b683-4fc3-b36a-07ce8ce19cef\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:41:48.384862+00:00\",\n \"versionId\": \"MTY5Mjk2NzMwODM4NDg2MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA32299-2\",\n \"display\": \"Grimace\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Cry (Menangis)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"95622-7\",\n \"display\": \"Cry\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32301-6\",\n \"display\": \"Whimper\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Cry (Menangis)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"95622-7\",\n \"display\": \"Cry\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32301-6\",\n \"display\": \"Whimper\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:42:05 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/62ee721e-cae0-4d1f-9fbc-a45ea719f2c7/_history/MTY5Mjk2NzMyNTExNjk3NDAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzMyNTExNjk3NDAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:42:05 GMT"
},
{
"key": "content-length",
"value": "811"
},
{
"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": "04160110-f067-4910-94ba-dc7b6d5a7035"
},
{
"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\": \"95622-7\",\n \"display\": \"Cry\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"62ee721e-cae0-4d1f-9fbc-a45ea719f2c7\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:42:05.116974+00:00\",\n \"versionId\": \"MTY5Mjk2NzMyNTExNjk3NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA32301-6\",\n \"display\": \"Whimper\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Breathing Pattern (Pola Pernapasan)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98009-4\",\n \"display\": \"Breathing patterns\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32284-4\",\n \"display\": \"Change in breathing (e.g., indrawing, irregular, faster than usual, gagging, or breath holding)\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Breathing Pattern (Pola Pernapasan)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98009-4\",\n \"display\": \"Breathing patterns\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32284-4\",\n \"display\": \"Change in breathing (e.g., indrawing, irregular, faster than usual, gagging, or breath holding)\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzM4NTQ0MTUxNzAwMA\""
},
{
"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/4b004429-a82d-4ad5-95ba-030a477e50de/_history/MTY5Mjk2NzM4NTQ0MTUxNzAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:43:05 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:43:05 GMT"
},
{
"key": "content-length",
"value": "914"
},
{
"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": "6567c379-beac-48af-8b9e-71f12ca539a1"
},
{
"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\": \"98009-4\",\n \"display\": \"Breathing patterns\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"4b004429-a82d-4ad5-95ba-030a477e50de\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:43:05.441517+00:00\",\n \"versionId\": \"MTY5Mjk2NzM4NTQ0MTUxNzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA32284-4\",\n \"display\": \"Change in breathing (e.g., indrawing, irregular, faster than usual, gagging, or breath holding)\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Arms (Tangan)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98010-2\",\n \"display\": \"Arms\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32285-1\",\n \"display\": \"Restrained\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Arms (Tangan)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98010-2\",\n \"display\": \"Arms\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32285-1\",\n \"display\": \"Restrained\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:43:25 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/1eddf145-d6cf-4eac-a933-b2b6fd3027cd/_history/MTY5Mjk2NzQwNTMzMTE2MDAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzQwNTMzMTE2MDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:43:25 GMT"
},
{
"key": "content-length",
"value": "815"
},
{
"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": "49a66bbb-156d-48d1-bb1c-5f1a2af9f889"
},
{
"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\": \"98010-2\",\n \"display\": \"Arms\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"1eddf145-d6cf-4eac-a933-b2b6fd3027cd\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:43:25.331160+00:00\",\n \"versionId\": \"MTY5Mjk2NzQwNTMzMTE2MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA32285-1\",\n \"display\": \"Restrained\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Legs (Kaki)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98011-0\",\n \"display\": \"Legs\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32285-1\",\n \"display\": \"Restrained\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Legs (Kaki)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98011-0\",\n \"display\": \"Legs\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32285-1\",\n \"display\": \"Restrained\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/6b74a8be-99cb-49ca-946a-05338d8fff7f/_history/MTY5Mjk2NzQyNjc1NjQ3MzAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:43:46 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzQyNjc1NjQ3MzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:43:46 GMT"
},
{
"key": "content-length",
"value": "815"
},
{
"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": "a40e5ca2-aa20-47f6-b6e7-e33ce430da31"
},
{
"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\": \"98011-0\",\n \"display\": \"Legs\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"6b74a8be-99cb-49ca-946a-05338d8fff7f\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:43:46.756473+00:00\",\n \"versionId\": \"MTY5Mjk2NzQyNjc1NjQ3MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA32285-1\",\n \"display\": \"Restrained\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - State of Arousal (Tingkat Kesadaran)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"95623-5\",\n \"display\": \"State of arousal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32298-4\",\n \"display\": \"Fussy (alert, restless, and/or thrashing)\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - State of Arousal (Tingkat Kesadaran)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"95623-5\",\n \"display\": \"State of arousal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32298-4\",\n \"display\": \"Fussy (alert, restless, and/or thrashing)\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:44:17 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/Observation/f2394153-be58-4661-ab5d-17d9b8987ee5/_history/MTY5Mjk2NzQ1Nzk5OTA3OTAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzQ1Nzk5OTA3OTAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:44:18 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": "fc4b79ab-2b18-4692-b991-7bb3d68bce7d"
},
{
"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\": \"95623-5\",\n \"display\": \"State of arousal\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"f2394153-be58-4661-ab5d-17d9b8987ee5\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:44:17.999079+00:00\",\n \"versionId\": \"MTY5Mjk2NzQ1Nzk5OTA3OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA32298-4\",\n \"display\": \"Fussy (alert, restless, and/or thrashing)\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Total score NIPS",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98012-8\",\n \"display\": \"Total score NIPS\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 4,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000020\",\n \"display\": \"Mild to Moderate Pain\"\n }\n ],\n \"text\": \"Sakit ringan hingga sakit sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Total score NIPS",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98012-8\",\n \"display\": \"Total score NIPS\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 4,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000020\",\n \"display\": \"Mild to Moderate Pain\"\n }\n ],\n \"text\": \"Sakit ringan hingga sakit sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/ac6ea949-4462-47f0-86f0-f3e8ffed3bc7/_history/MTY5Mjk2NzQ3NzkxMjg5OTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:44:37 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzQ3NzkxMjg5OTAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:44:37 GMT"
},
{
"key": "content-length",
"value": "1014"
},
{
"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": "3732459b-d5f2-402d-8750-4ab6f2cee824"
},
{
"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\": \"98012-8\",\n \"display\": \"Total score NIPS\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"ac6ea949-4462-47f0-86f0-f3e8ffed3bc7\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"OI000020\",\n \"display\": \"Mild to Moderate Pain\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ],\n \"text\": \"Sakit ringan hingga sakit sedang\"\n }\n ],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:44:37.912899+00:00\",\n \"versionId\": \"MTY5Mjk2NzQ3NzkxMjg5OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 4\n }\n}"
}
]
},
{
"name": "Observation - Legs (Kaki)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98011-0\",\n \"display\": \"Legs\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32285-1\",\n \"display\": \"Restrained\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Legs (Kaki)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98011-0\",\n \"display\": \"Legs\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32285-1\",\n \"display\": \"Restrained\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/6b74a8be-99cb-49ca-946a-05338d8fff7f/_history/MTY5Mjk2NzQyNjc1NjQ3MzAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:43:46 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzQyNjc1NjQ3MzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:43:46 GMT"
},
{
"key": "content-length",
"value": "815"
},
{
"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": "a40e5ca2-aa20-47f6-b6e7-e33ce430da31"
},
{
"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\": \"98011-0\",\n \"display\": \"Legs\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"6b74a8be-99cb-49ca-946a-05338d8fff7f\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:43:46.756473+00:00\",\n \"versionId\": \"MTY5Mjk2NzQyNjc1NjQ3MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA32285-1\",\n \"display\": \"Restrained\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Cry (Menangis)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"95622-7\",\n \"display\": \"Cry\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32301-6\",\n \"display\": \"Whimper\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Cry (Menangis)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"95622-7\",\n \"display\": \"Cry\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32301-6\",\n \"display\": \"Whimper\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:42:05 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/62ee721e-cae0-4d1f-9fbc-a45ea719f2c7/_history/MTY5Mjk2NzMyNTExNjk3NDAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzMyNTExNjk3NDAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:42:05 GMT"
},
{
"key": "content-length",
"value": "811"
},
{
"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": "04160110-f067-4910-94ba-dc7b6d5a7035"
},
{
"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\": \"95622-7\",\n \"display\": \"Cry\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"62ee721e-cae0-4d1f-9fbc-a45ea719f2c7\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:42:05.116974+00:00\",\n \"versionId\": \"MTY5Mjk2NzMyNTExNjk3NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA32301-6\",\n \"display\": \"Whimper\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Arms (Tangan)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98010-2\",\n \"display\": \"Arms\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32285-1\",\n \"display\": \"Restrained\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Arms (Tangan)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98010-2\",\n \"display\": \"Arms\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32285-1\",\n \"display\": \"Restrained\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:43:25 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/1eddf145-d6cf-4eac-a933-b2b6fd3027cd/_history/MTY5Mjk2NzQwNTMzMTE2MDAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzQwNTMzMTE2MDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:43:25 GMT"
},
{
"key": "content-length",
"value": "815"
},
{
"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": "49a66bbb-156d-48d1-bb1c-5f1a2af9f889"
},
{
"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\": \"98010-2\",\n \"display\": \"Arms\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"1eddf145-d6cf-4eac-a933-b2b6fd3027cd\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:43:25.331160+00:00\",\n \"versionId\": \"MTY5Mjk2NzQwNTMzMTE2MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA32285-1\",\n \"display\": \"Restrained\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Facial Expression (Ekspresi wajah)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"95624-3\",\n \"display\": \"Facial expression\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32299-2\",\n \"display\": \"Grimace\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Facial Expression (Ekspresi wajah)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"95624-3\",\n \"display\": \"Facial expression\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32299-2\",\n \"display\": \"Grimace\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/7fa5e3ae-b683-4fc3-b36a-07ce8ce19cef/_history/MTY5Mjk2NzMwODM4NDg2MjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzMwODM4NDg2MjAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:41:48 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:41:48 GMT"
},
{
"key": "content-length",
"value": "825"
},
{
"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": "f9ec7c39-570a-4d9b-bc65-aa75b4c80f70"
},
{
"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\": \"95624-3\",\n \"display\": \"Facial expression\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"7fa5e3ae-b683-4fc3-b36a-07ce8ce19cef\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:41:48.384862+00:00\",\n \"versionId\": \"MTY5Mjk2NzMwODM4NDg2MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA32299-2\",\n \"display\": \"Grimace\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Breathing Pattern (Pola Pernapasan)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98009-4\",\n \"display\": \"Breathing patterns\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32284-4\",\n \"display\": \"Change in breathing (e.g., indrawing, irregular, faster than usual, gagging, or breath holding)\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Breathing Pattern (Pola Pernapasan)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98009-4\",\n \"display\": \"Breathing patterns\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32284-4\",\n \"display\": \"Change in breathing (e.g., indrawing, irregular, faster than usual, gagging, or breath holding)\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzM4NTQ0MTUxNzAwMA\""
},
{
"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/4b004429-a82d-4ad5-95ba-030a477e50de/_history/MTY5Mjk2NzM4NTQ0MTUxNzAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:43:05 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:43:05 GMT"
},
{
"key": "content-length",
"value": "914"
},
{
"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": "6567c379-beac-48af-8b9e-71f12ca539a1"
},
{
"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\": \"98009-4\",\n \"display\": \"Breathing patterns\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"4b004429-a82d-4ad5-95ba-030a477e50de\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:43:05.441517+00:00\",\n \"versionId\": \"MTY5Mjk2NzM4NTQ0MTUxNzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA32284-4\",\n \"display\": \"Change in breathing (e.g., indrawing, irregular, faster than usual, gagging, or breath holding)\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Total score NIPS",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98012-8\",\n \"display\": \"Total score NIPS\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 4,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000020\",\n \"display\": \"Mild to Moderate Pain\"\n }\n ],\n \"text\": \"Sakit ringan hingga sakit sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Total score NIPS",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98012-8\",\n \"display\": \"Total score NIPS\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 4,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000020\",\n \"display\": \"Mild to Moderate Pain\"\n }\n ],\n \"text\": \"Sakit ringan hingga sakit sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/ac6ea949-4462-47f0-86f0-f3e8ffed3bc7/_history/MTY5Mjk2NzQ3NzkxMjg5OTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:44:37 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzQ3NzkxMjg5OTAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:44:37 GMT"
},
{
"key": "content-length",
"value": "1014"
},
{
"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": "3732459b-d5f2-402d-8750-4ab6f2cee824"
},
{
"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\": \"98012-8\",\n \"display\": \"Total score NIPS\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"ac6ea949-4462-47f0-86f0-f3e8ffed3bc7\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"OI000020\",\n \"display\": \"Mild to Moderate Pain\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ],\n \"text\": \"Sakit ringan hingga sakit sedang\"\n }\n ],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:44:37.912899+00:00\",\n \"versionId\": \"MTY5Mjk2NzQ3NzkxMjg5OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 4\n }\n}"
}
]
},
{
"name": "Observation - State of Arousal (Tingkat Kesadaran)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"95623-5\",\n \"display\": \"State of arousal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32298-4\",\n \"display\": \"Fussy (alert, restless, and/or thrashing)\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - State of Arousal (Tingkat Kesadaran)",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"95623-5\",\n \"display\": \"State of arousal\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LA32298-4\",\n \"display\": \"Fussy (alert, restless, and/or thrashing)\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:44:17 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/Observation/f2394153-be58-4661-ab5d-17d9b8987ee5/_history/MTY5Mjk2NzQ1Nzk5OTA3OTAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzQ1Nzk5OTA3OTAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:44:18 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": "fc4b79ab-2b18-4692-b991-7bb3d68bce7d"
},
{
"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\": \"95623-5\",\n \"display\": \"State of arousal\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"f2394153-be58-4661-ab5d-17d9b8987ee5\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:44:17.999079+00:00\",\n \"versionId\": \"MTY5Mjk2NzQ1Nzk5OTA3OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"LA32298-4\",\n \"display\": \"Fussy (alert, restless, and/or thrashing)\",\n \"system\": \"http://loinc.org\"\n }\n ]\n }\n}"
}
]
}
]
}
]
},
{
"name": "Lokasi Nyeri",
"item": [
{
"name": "Observation - Lokasi Nyeri - bodySite",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38204-4\",\n \"display\": \"Pain primary location\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"27033000\",\n \"display\": \"Lower abdomen structure\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lokasi Nyeri - bodySite",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38204-4\",\n \"display\": \"Pain primary location\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"27033000\",\n \"display\": \"Lower abdomen structure\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/c6603e9e-3d68-4229-9477-5302dbd82fa2/_history/MTY5Mjk2NzUwMjYyODUzODAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzUwMjYyODUzODAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:45:02 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:45:02 GMT"
},
{
"key": "content-length",
"value": "838"
},
{
"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": "005d4b9c-4452-44cc-9965-c36b68cdb055"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"27033000\",\n \"display\": \"Lower abdomen structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"38204-4\",\n \"display\": \"Pain primary location\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"c6603e9e-3d68-4229-9477-5302dbd82fa2\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:45:02.628538+00:00\",\n \"versionId\": \"MTY5Mjk2NzUwMjYyODUzODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n }\n}"
}
]
},
{
"name": "Observation - Lokasi Nyeri - text",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38204-4\",\n \"display\": \"Pain primary location\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Perut bagian bawah\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lokasi Nyeri - text",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38204-4\",\n \"display\": \"Pain primary location\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Perut bagian bawah\"\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/da9c6787-ea97-4a10-9e44-43a84c991c85/_history/MTY5Mjk2NzY2Nzg0Mjc0MDAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:47:47 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzY2Nzg0Mjc0MDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:47:47 GMT"
},
{
"key": "content-length",
"value": "759"
},
{
"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": "8e810924-aae8-4e28-ac46-f13e993bddab"
},
{
"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\": \"38204-4\",\n \"display\": \"Pain primary location\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"da9c6787-ea97-4a10-9e44-43a84c991c85\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:47:47.842740+00:00\",\n \"versionId\": \"MTY5Mjk2NzY2Nzg0Mjc0MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Perut bagian bawah\"\n}"
}
]
},
{
"name": "Observation - Lokasi Nyeri - text",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38204-4\",\n \"display\": \"Pain primary location\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Perut bagian bawah\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lokasi Nyeri - text",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38204-4\",\n \"display\": \"Pain primary location\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Perut bagian bawah\"\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/da9c6787-ea97-4a10-9e44-43a84c991c85/_history/MTY5Mjk2NzY2Nzg0Mjc0MDAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:47:47 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzY2Nzg0Mjc0MDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:47:47 GMT"
},
{
"key": "content-length",
"value": "759"
},
{
"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": "8e810924-aae8-4e28-ac46-f13e993bddab"
},
{
"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\": \"38204-4\",\n \"display\": \"Pain primary location\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"da9c6787-ea97-4a10-9e44-43a84c991c85\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:47:47.842740+00:00\",\n \"versionId\": \"MTY5Mjk2NzY2Nzg0Mjc0MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Perut bagian bawah\"\n}"
}
]
},
{
"name": "Observation - Lokasi Nyeri - bodySite",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38204-4\",\n \"display\": \"Pain primary location\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"27033000\",\n \"display\": \"Lower abdomen structure\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lokasi Nyeri - bodySite",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38204-4\",\n \"display\": \"Pain primary location\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"27033000\",\n \"display\": \"Lower abdomen structure\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/c6603e9e-3d68-4229-9477-5302dbd82fa2/_history/MTY5Mjk2NzUwMjYyODUzODAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzUwMjYyODUzODAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:45:02 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:45:02 GMT"
},
{
"key": "content-length",
"value": "838"
},
{
"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": "005d4b9c-4452-44cc-9965-c36b68cdb055"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"27033000\",\n \"display\": \"Lower abdomen structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"38204-4\",\n \"display\": \"Pain primary location\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"c6603e9e-3d68-4229-9477-5302dbd82fa2\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:45:02.628538+00:00\",\n \"versionId\": \"MTY5Mjk2NzUwMjYyODUzODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n }\n}"
}
]
}
]
},
{
"name": "Penyebab Nyeri",
"item": [
{
"name": "Observation - Penyebab Nyeri",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000023\",\n \"display\": \"Penyebab nyeri\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Nyeri perut bawah setelah pasien terjatuh dari tangga yang diikuti dengan perdarahan pervagina\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Penyebab Nyeri",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000023\",\n \"display\": \"Penyebab nyeri\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Nyeri perut bawah setelah pasien terjatuh dari tangga yang diikuti dengan perdarahan pervagina\"\n}",
"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/\"MTY5Mjk2NzY5MjY5NTMyMjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:48:12 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/11c757fb-9d8b-47ac-a9ed-734dbb1936ab/_history/MTY5Mjk2NzY5MjY5NTMyMjAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:48:12 GMT"
},
{
"key": "content-length",
"value": "869"
},
{
"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": "3f245fb4-dd1a-4b11-b4b7-f589604931af"
},
{
"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\": \"OC000023\",\n \"display\": \"Penyebab nyeri\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"11c757fb-9d8b-47ac-a9ed-734dbb1936ab\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:48:12.695322+00:00\",\n \"versionId\": \"MTY5Mjk2NzY5MjY5NTMyMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Nyeri perut bawah setelah pasien terjatuh dari tangga yang diikuti dengan perdarahan pervagina\"\n}"
}
]
},
{
"name": "Observation - Penyebab Nyeri",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000023\",\n \"display\": \"Penyebab nyeri\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Nyeri perut bawah setelah pasien terjatuh dari tangga yang diikuti dengan perdarahan pervagina\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Penyebab Nyeri",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000023\",\n \"display\": \"Penyebab nyeri\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Nyeri perut bawah setelah pasien terjatuh dari tangga yang diikuti dengan perdarahan pervagina\"\n}",
"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/\"MTY5Mjk2NzY5MjY5NTMyMjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:48:12 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/11c757fb-9d8b-47ac-a9ed-734dbb1936ab/_history/MTY5Mjk2NzY5MjY5NTMyMjAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:48:12 GMT"
},
{
"key": "content-length",
"value": "869"
},
{
"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": "3f245fb4-dd1a-4b11-b4b7-f589604931af"
},
{
"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\": \"OC000023\",\n \"display\": \"Penyebab nyeri\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"11c757fb-9d8b-47ac-a9ed-734dbb1936ab\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:48:12.695322+00:00\",\n \"versionId\": \"MTY5Mjk2NzY5MjY5NTMyMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Nyeri perut bawah setelah pasien terjatuh dari tangga yang diikuti dengan perdarahan pervagina\"\n}"
}
]
}
]
},
{
"name": "Durasi Nyeri",
"item": [
{
"name": "Observation - Durasi Nyeri",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38207-7\",\n \"display\": \"Pain duration\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 2,\n \"unit\": \"h\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"h\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Durasi Nyeri",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38207-7\",\n \"display\": \"Pain duration\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 2,\n \"unit\": \"h\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"h\"\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": "Fri, 25 Aug 2023 12:48:56 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/Observation/b636374c-b0eb-42eb-9484-d4e9936fc60c/_history/MTY5Mjk2NzczNjEyMTQ3MzAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzczNjEyMTQ3MzAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:48:56 GMT"
},
{
"key": "content-length",
"value": "803"
},
{
"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": "cd97b726-cd43-4817-a374-512a4d77c34e"
},
{
"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\": \"38207-7\",\n \"display\": \"Pain duration\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"b636374c-b0eb-42eb-9484-d4e9936fc60c\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:48:56.121473+00:00\",\n \"versionId\": \"MTY5Mjk2NzczNjEyMTQ3MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"h\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"h\",\n \"value\": 2\n }\n}"
}
]
},
{
"name": "Observation - Durasi Nyeri",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38207-7\",\n \"display\": \"Pain duration\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 2,\n \"unit\": \"h\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"h\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Durasi Nyeri",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"38207-7\",\n \"display\": \"Pain duration\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 2,\n \"unit\": \"h\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"h\"\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": "Fri, 25 Aug 2023 12:48:56 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/Observation/b636374c-b0eb-42eb-9484-d4e9936fc60c/_history/MTY5Mjk2NzczNjEyMTQ3MzAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2NzczNjEyMTQ3MzAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:48:56 GMT"
},
{
"key": "content-length",
"value": "803"
},
{
"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": "cd97b726-cd43-4817-a374-512a4d77c34e"
},
{
"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\": \"38207-7\",\n \"display\": \"Pain duration\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"b636374c-b0eb-42eb-9484-d4e9936fc60c\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:48:56.121473+00:00\",\n \"versionId\": \"MTY5Mjk2NzczNjEyMTQ3MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"h\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"h\",\n \"value\": 2\n }\n}"
}
]
}
]
},
{
"name": "Frekuensi Nyeri",
"item": [
{
"name": "Observation - Frekuensi Nyeri",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"700469003\",\n \"display\": \"Frequency of pain symptom\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Nyeri memberat sejak 2 jam sebelum masuk rumah sakit\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Frekuensi Nyeri",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"700469003\",\n \"display\": \"Frequency of pain symptom\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Nyeri memberat sejak 2 jam sebelum masuk rumah sakit\"\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/49e11311-6672-4936-a056-0d8bad40a6a9/_history/MTY5Mjk2Nzc3MDgxNTQ4NTAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:49:30 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2Nzc3MDgxNTQ4NTAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:49:30 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": "4629df58-b2ab-4cc0-8394-78f79eb19c39"
},
{
"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\": \"700469003\",\n \"display\": \"Frequency of pain symptom\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"49e11311-6672-4936-a056-0d8bad40a6a9\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:49:30.815485+00:00\",\n \"versionId\": \"MTY5Mjk2Nzc3MDgxNTQ4NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Nyeri memberat sejak 2 jam sebelum masuk rumah sakit\"\n}"
}
]
},
{
"name": "Observation - Frekuensi Nyeri",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"700469003\",\n \"display\": \"Frequency of pain symptom\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Nyeri memberat sejak 2 jam sebelum masuk rumah sakit\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Frekuensi Nyeri",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"700469003\",\n \"display\": \"Frequency of pain symptom\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Nyeri memberat sejak 2 jam sebelum masuk rumah sakit\"\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/49e11311-6672-4936-a056-0d8bad40a6a9/_history/MTY5Mjk2Nzc3MDgxNTQ4NTAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 12:49:30 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk2Nzc3MDgxNTQ4NTAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 12:49:30 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": "4629df58-b2ab-4cc0-8394-78f79eb19c39"
},
{
"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\": \"700469003\",\n \"display\": \"Frequency of pain symptom\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"49e11311-6672-4936-a056-0d8bad40a6a9\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T12:49:30.815485+00:00\",\n \"versionId\": \"MTY5Mjk2Nzc3MDgxNTQ4NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Nyeri memberat sejak 2 jam sebelum masuk rumah sakit\"\n}"
}
]
}
]
},
{
"name": "Kajian Risiko Jatuh",
"item": [
{
"name": "Morse Fall Scale",
"item": [
{
"name": "Observation - Morse Fall Scale",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"59461-4\",\n \"display\": \"Fall risk level [Morse Fall Scale]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 44,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000027\",\n \"display\": \"25 - 44 (Risiko sedang)\"\n }\n ],\n \"text\": \"Risiko sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Morse Fall Scale",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"59461-4\",\n \"display\": \"Fall risk level [Morse Fall Scale]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 44,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000027\",\n \"display\": \"25 - 44 (Risiko sedang)\"\n }\n ],\n \"text\": \"Risiko sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTY5Mjk2ODgxNDg2OTk5NTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/77d87caa-f587-40ab-94a6-fd0b32c9b018/_history/MTY5Mjk2ODgxNDg2OTk5NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 13:06:54 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 13:06:54 GMT"
},
{
"key": "content-length",
"value": "1012"
},
{
"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": "e6462dc2-6062-490c-a0c4-04a2513bf825"
},
{
"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\": \"59461-4\",\n \"display\": \"Fall risk level [Morse Fall Scale]\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"77d87caa-f587-40ab-94a6-fd0b32c9b018\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"OI000027\",\n \"display\": \"25 - 44 (Risiko sedang)\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ],\n \"text\": \"Risiko sedang\"\n }\n ],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T13:06:54.869995+00:00\",\n \"versionId\": \"MTY5Mjk2ODgxNDg2OTk5NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 44\n }\n}"
}
]
},
{
"name": "Observation - Morse Fall Scale",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"59461-4\",\n \"display\": \"Fall risk level [Morse Fall Scale]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 44,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000027\",\n \"display\": \"25 - 44 (Risiko sedang)\"\n }\n ],\n \"text\": \"Risiko sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Morse Fall Scale",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"59461-4\",\n \"display\": \"Fall risk level [Morse Fall Scale]\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 44,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000027\",\n \"display\": \"25 - 44 (Risiko sedang)\"\n }\n ],\n \"text\": \"Risiko sedang\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTY5Mjk2ODgxNDg2OTk5NTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/77d87caa-f587-40ab-94a6-fd0b32c9b018/_history/MTY5Mjk2ODgxNDg2OTk5NTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 13:06:54 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 13:06:54 GMT"
},
{
"key": "content-length",
"value": "1012"
},
{
"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": "e6462dc2-6062-490c-a0c4-04a2513bf825"
},
{
"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\": \"59461-4\",\n \"display\": \"Fall risk level [Morse Fall Scale]\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"77d87caa-f587-40ab-94a6-fd0b32c9b018\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"OI000027\",\n \"display\": \"25 - 44 (Risiko sedang)\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ],\n \"text\": \"Risiko sedang\"\n }\n ],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T13:06:54.869995+00:00\",\n \"versionId\": \"MTY5Mjk2ODgxNDg2OTk5NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 44\n }\n}"
}
]
}
]
},
{
"name": "Humpty Dumpty Scale",
"item": [
{
"name": "Observation - Humpty Dumpty Scale",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000035\",\n \"display\": \"Humpty Dumpty Scale\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000021\",\n \"display\": \"7 - 11 (Risiko rendah)\"\n }\n ],\n \"text\": \"Risiko rendah\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Humpty Dumpty Scale",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000035\",\n \"display\": \"Humpty Dumpty Scale\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000021\",\n \"display\": \"7 - 11 (Risiko rendah)\"\n }\n ],\n \"text\": \"Risiko rendah\"\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/957157a2-b6a7-4bbf-8f59-43555f19275e/_history/MTY5Mjk3NDM0MzQxNzI5MzAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:39:03 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDM0MzQxNzI5MzAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:39:03 GMT"
},
{
"key": "content-length",
"value": "1036"
},
{
"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": "23564746-397b-44a6-92fe-75349b45a15a"
},
{
"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\": \"OC000035\",\n \"display\": \"Humpty Dumpty Scale\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"957157a2-b6a7-4bbf-8f59-43555f19275e\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"OI000021\",\n \"display\": \"7 - 11 (Risiko rendah)\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ],\n \"text\": \"Risiko rendah\"\n }\n ],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:39:03.417293+00:00\",\n \"versionId\": \"MTY5Mjk3NDM0MzQxNzI5MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 5\n }\n}"
}
]
},
{
"name": "Observation - Humpty Dumpty Scale",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000035\",\n \"display\": \"Humpty Dumpty Scale\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000021\",\n \"display\": \"7 - 11 (Risiko rendah)\"\n }\n ],\n \"text\": \"Risiko rendah\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Humpty Dumpty Scale",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000035\",\n \"display\": \"Humpty Dumpty Scale\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 5,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000021\",\n \"display\": \"7 - 11 (Risiko rendah)\"\n }\n ],\n \"text\": \"Risiko rendah\"\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/957157a2-b6a7-4bbf-8f59-43555f19275e/_history/MTY5Mjk3NDM0MzQxNzI5MzAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:39:03 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDM0MzQxNzI5MzAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:39:03 GMT"
},
{
"key": "content-length",
"value": "1036"
},
{
"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": "23564746-397b-44a6-92fe-75349b45a15a"
},
{
"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\": \"OC000035\",\n \"display\": \"Humpty Dumpty Scale\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"957157a2-b6a7-4bbf-8f59-43555f19275e\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"OI000021\",\n \"display\": \"7 - 11 (Risiko rendah)\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ],\n \"text\": \"Risiko rendah\"\n }\n ],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:39:03.417293+00:00\",\n \"versionId\": \"MTY5Mjk3NDM0MzQxNzI5MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 5\n }\n}"
}
]
}
]
},
{
"name": "Edmonson Psychiatric Fall Risk Assessment",
"item": [
{
"name": "Observation - Edmonson Psychiatric Fall Risk Assessment",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000036\",\n \"display\": \"Edmonson Psychiatric Fall Risk Assessment\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000023\",\n \"display\": \"0 - 89 (Risiko rendah)\"\n }\n ],\n \"text\": \"Risiko rendah\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Edmonson Psychiatric Fall Risk Assessment",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000036\",\n \"display\": \"Edmonson Psychiatric Fall Risk Assessment\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000023\",\n \"display\": \"0 - 89 (Risiko rendah)\"\n }\n ],\n \"text\": \"Risiko rendah\"\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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDM3MDkyMDQ0NTAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:39:30 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/e5d51d1b-fe50-4a1d-b100-c47ccb5339ae/_history/MTY5Mjk3NDM3MDkyMDQ0NTAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:39:30 GMT"
},
{
"key": "content-length",
"value": "1059"
},
{
"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": "f1790f60-607f-47c0-8bcd-3fb628b12152"
},
{
"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\": \"OC000036\",\n \"display\": \"Edmonson Psychiatric Fall Risk Assessment\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"e5d51d1b-fe50-4a1d-b100-c47ccb5339ae\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"OI000023\",\n \"display\": \"0 - 89 (Risiko rendah)\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ],\n \"text\": \"Risiko rendah\"\n }\n ],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:39:30.920445+00:00\",\n \"versionId\": \"MTY5Mjk3NDM3MDkyMDQ0NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 20\n }\n}"
}
]
},
{
"name": "Observation - Edmonson Psychiatric Fall Risk Assessment",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000036\",\n \"display\": \"Edmonson Psychiatric Fall Risk Assessment\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000023\",\n \"display\": \"0 - 89 (Risiko rendah)\"\n }\n ],\n \"text\": \"Risiko rendah\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Edmonson Psychiatric Fall Risk Assessment",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OC000036\",\n \"display\": \"Edmonson Psychiatric Fall Risk Assessment\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 20,\n \"unit\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"{score}\"\n },\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\",\n \"code\": \"OI000023\",\n \"display\": \"0 - 89 (Risiko rendah)\"\n }\n ],\n \"text\": \"Risiko rendah\"\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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDM3MDkyMDQ0NTAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:39:30 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/e5d51d1b-fe50-4a1d-b100-c47ccb5339ae/_history/MTY5Mjk3NDM3MDkyMDQ0NTAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:39:30 GMT"
},
{
"key": "content-length",
"value": "1059"
},
{
"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": "f1790f60-607f-47c0-8bcd-3fb628b12152"
},
{
"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\": \"OC000036\",\n \"display\": \"Edmonson Psychiatric Fall Risk Assessment\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"e5d51d1b-fe50-4a1d-b100-c47ccb5339ae\",\n \"identifier\": [],\n \"interpretation\": [\n {\n \"coding\": [\n {\n \"code\": \"OI000023\",\n \"display\": \"0 - 89 (Risiko rendah)\",\n \"system\": \"http://terminology.kemkes.go.id/CodeSystem/clinical-term\"\n }\n ],\n \"text\": \"Risiko rendah\"\n }\n ],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:39:30.920445+00:00\",\n \"versionId\": \"MTY5Mjk3NDM3MDkyMDQ0NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"{score}\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"{score}\",\n \"value\": 20\n }\n}"
}
]
}
]
}
]
},
{
"name": "Pemeriksaan Fisik",
"item": [
{
"name": "Tingkat Kesadaran",
"item": [
{
"name": "Observation - Tingkat Kesadaran",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67775-7\",\n \"display\": \"Level of responsiveness\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tingkat Kesadaran",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67775-7\",\n \"display\": \"Level of responsiveness\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/fa4e4eec-dd2e-4df8-b41b-6ef7052022a7/_history/MTY5Mjk3NDUwNzkyNzAxMDAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDUwNzkyNzAxMDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:41:47 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:41:47 GMT"
},
{
"key": "content-length",
"value": "840"
},
{
"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": "427bd360-2684-420c-a738-f4ed14cb906f"
},
{
"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\": \"67775-7\",\n \"display\": \"Level of responsiveness\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"fa4e4eec-dd2e-4df8-b41b-6ef7052022a7\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:41:47.927010+00:00\",\n \"versionId\": \"MTY5Mjk3NDUwNzkyNzAxMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Tingkat Kesadaran",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67775-7\",\n \"display\": \"Level of responsiveness\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tingkat Kesadaran",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67775-7\",\n \"display\": \"Level of responsiveness\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/fa4e4eec-dd2e-4df8-b41b-6ef7052022a7/_history/MTY5Mjk3NDUwNzkyNzAxMDAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDUwNzkyNzAxMDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:41:47 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:41:47 GMT"
},
{
"key": "content-length",
"value": "840"
},
{
"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": "427bd360-2684-420c-a738-f4ed14cb906f"
},
{
"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\": \"67775-7\",\n \"display\": \"Level of responsiveness\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"fa4e4eec-dd2e-4df8-b41b-6ef7052022a7\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:41:47.927010+00:00\",\n \"versionId\": \"MTY5Mjk3NDUwNzkyNzAxMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"248234008\",\n \"display\": \"Mentally alert\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Vital Sign",
"item": [
{
"name": "Nadi",
"item": [
{
"name": "Observation - Nadi",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8867-4\",\n \"display\": \"Heart rate\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 65,\n \"unit\": \"beats/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Nadi",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8867-4\",\n \"display\": \"Heart rate\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 65,\n \"unit\": \"beats/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDUyMzU1MzMwMjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/22b46b52-3a58-42b8-bbf6-86da6eca45aa/_history/MTY5Mjk3NDUyMzU1MzMwMjAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:42:03 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:42:03 GMT"
},
{
"key": "content-length",
"value": "824"
},
{
"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": "7b144f49-d36b-4f8e-b57c-76fcee6072c6"
},
{
"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\": \"8867-4\",\n \"display\": \"Heart rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"22b46b52-3a58-42b8-bbf6-86da6eca45aa\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:42:03.553302+00:00\",\n \"versionId\": \"MTY5Mjk3NDUyMzU1MzMwMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"beats/minute\",\n \"value\": 65\n }\n}"
}
]
},
{
"name": "Observation - Nadi",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8867-4\",\n \"display\": \"Heart rate\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 65,\n \"unit\": \"beats/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Nadi",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8867-4\",\n \"display\": \"Heart rate\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 65,\n \"unit\": \"beats/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDUyMzU1MzMwMjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/22b46b52-3a58-42b8-bbf6-86da6eca45aa/_history/MTY5Mjk3NDUyMzU1MzMwMjAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:42:03 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:42:03 GMT"
},
{
"key": "content-length",
"value": "824"
},
{
"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": "7b144f49-d36b-4f8e-b57c-76fcee6072c6"
},
{
"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\": \"8867-4\",\n \"display\": \"Heart rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"22b46b52-3a58-42b8-bbf6-86da6eca45aa\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:42:03.553302+00:00\",\n \"versionId\": \"MTY5Mjk3NDUyMzU1MzMwMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"beats/minute\",\n \"value\": 65\n }\n}"
}
]
}
]
},
{
"name": "Pernapasan",
"item": [
{
"name": "Observation - Pernapasan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9279-1\",\n \"display\": \"Respiratory rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 16,\n \"unit\": \"breaths/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Pernapasan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9279-1\",\n \"display\": \"Respiratory rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 16,\n \"unit\": \"breaths/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"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/1e4072e5-6e27-429a-a6da-96a081931d34/_history/MTY5Mjk3NDU0NDc1Mzc0OTAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDU0NDc1Mzc0OTAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:42:24 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:42:24 GMT"
},
{
"key": "content-length",
"value": "832"
},
{
"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": "6f10d8aa-9e74-4985-90a4-8d8a41bbd6cf"
},
{
"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\": \"9279-1\",\n \"display\": \"Respiratory rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"1e4072e5-6e27-429a-a6da-96a081931d34\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:42:24.753749+00:00\",\n \"versionId\": \"MTY5Mjk3NDU0NDc1Mzc0OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"breaths/minute\",\n \"value\": 16\n }\n}"
}
]
},
{
"name": "Observation - Pernapasan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9279-1\",\n \"display\": \"Respiratory rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 16,\n \"unit\": \"breaths/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Pernapasan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"9279-1\",\n \"display\": \"Respiratory rate\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 16,\n \"unit\": \"breaths/minute\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"/min\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"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/1e4072e5-6e27-429a-a6da-96a081931d34/_history/MTY5Mjk3NDU0NDc1Mzc0OTAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDU0NDc1Mzc0OTAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:42:24 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:42:24 GMT"
},
{
"key": "content-length",
"value": "832"
},
{
"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": "6f10d8aa-9e74-4985-90a4-8d8a41bbd6cf"
},
{
"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\": \"9279-1\",\n \"display\": \"Respiratory rate\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"1e4072e5-6e27-429a-a6da-96a081931d34\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:42:24.753749+00:00\",\n \"versionId\": \"MTY5Mjk3NDU0NDc1Mzc0OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"/min\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"breaths/minute\",\n \"value\": 16\n }\n}"
}
]
}
]
},
{
"name": "Tekanan Darah - Sistole",
"item": [
{
"name": "Observation - Sistole",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 85,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Sistole",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 85,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\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": "Fri, 25 Aug 2023 14:42:44 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/Observation/9b764890-d499-413b-8e5b-3e85ef591cb4/_history/MTY5Mjk3NDU2NDM5ODU4NzAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDU2NDM5ODU4NzAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:42:44 GMT"
},
{
"key": "content-length",
"value": "934"
},
{
"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": "08afb0f7-34e2-414e-ad03-31c47b71890d"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"368209003\",\n \"display\": \"Right arm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"8480-6\",\n \"display\": \"Systolic blood pressure\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"9b764890-d499-413b-8e5b-3e85ef591cb4\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:42:44.398587+00:00\",\n \"versionId\": \"MTY5Mjk3NDU2NDM5ODU4NzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mm[Hg]\",\n \"value\": 85\n }\n}"
}
]
},
{
"name": "Observation - Sistole",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 85,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Sistole",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8480-6\",\n \"display\": \"Systolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 85,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\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": "Fri, 25 Aug 2023 14:42:44 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/Observation/9b764890-d499-413b-8e5b-3e85ef591cb4/_history/MTY5Mjk3NDU2NDM5ODU4NzAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDU2NDM5ODU4NzAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:42:44 GMT"
},
{
"key": "content-length",
"value": "934"
},
{
"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": "08afb0f7-34e2-414e-ad03-31c47b71890d"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"368209003\",\n \"display\": \"Right arm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"8480-6\",\n \"display\": \"Systolic blood pressure\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"9b764890-d499-413b-8e5b-3e85ef591cb4\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:42:44.398587+00:00\",\n \"versionId\": \"MTY5Mjk3NDU2NDM5ODU4NzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mm[Hg]\",\n \"value\": 85\n }\n}"
}
]
}
]
},
{
"name": "Tekanan Darah - Diastole",
"item": [
{
"name": "Observation - Diastole",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 55,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Diastole",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 55,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\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/e2541b17-54f6-4b59-91a4-1a76c567d25d/_history/MTY5Mjk3NDU5NzYwMDkzNjAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDU5NzYwMDkzNjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:43:17 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:43:17 GMT"
},
{
"key": "content-length",
"value": "935"
},
{
"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": "7e762233-32df-40c7-b830-abc54de3e73d"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"368209003\",\n \"display\": \"Right arm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"e2541b17-54f6-4b59-91a4-1a76c567d25d\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:43:17.600936+00:00\",\n \"versionId\": \"MTY5Mjk3NDU5NzYwMDkzNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mm[Hg]\",\n \"value\": 55\n }\n}"
}
]
},
{
"name": "Observation - Diastole",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 55,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Diastole",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"368209003\",\n \"display\": \"Right arm\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 55,\n \"unit\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mm[Hg]\"\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/e2541b17-54f6-4b59-91a4-1a76c567d25d/_history/MTY5Mjk3NDU5NzYwMDkzNjAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDU5NzYwMDkzNjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:43:17 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:43:17 GMT"
},
{
"key": "content-length",
"value": "935"
},
{
"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": "7e762233-32df-40c7-b830-abc54de3e73d"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"368209003\",\n \"display\": \"Right arm\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"8462-4\",\n \"display\": \"Diastolic blood pressure\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"e2541b17-54f6-4b59-91a4-1a76c567d25d\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:43:17.600936+00:00\",\n \"versionId\": \"MTY5Mjk3NDU5NzYwMDkzNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"mm[Hg]\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mm[Hg]\",\n \"value\": 55\n }\n}"
}
]
}
]
},
{
"name": "Suhu",
"item": [
{
"name": "Observation - Suhu",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8310-5\",\n \"display\": \"Body temperature\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 35.5,\n \"unit\": \"C\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"Cel\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Suhu",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8310-5\",\n \"display\": \"Body temperature\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 35.5,\n \"unit\": \"C\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"Cel\"\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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDcwMjI4NTI5MzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/e8766839-1adb-40a6-abfc-b57f7ed774fc/_history/MTY5Mjk3NDcwMjI4NTI5MzAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:45:02 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:45:02 GMT"
},
{
"key": "content-length",
"value": "820"
},
{
"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": "231a0dc0-df92-4fd0-9723-caf6c662093e"
},
{
"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\": \"8310-5\",\n \"display\": \"Body temperature\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"e8766839-1adb-40a6-abfc-b57f7ed774fc\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:45:02.285293+00:00\",\n \"versionId\": \"MTY5Mjk3NDcwMjI4NTI5MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"Cel\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"C\",\n \"value\": 35.5\n }\n}"
}
]
},
{
"name": "Observation - Suhu",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8310-5\",\n \"display\": \"Body temperature\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 35.5,\n \"unit\": \"C\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"Cel\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Suhu",
"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\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8310-5\",\n \"display\": \"Body temperature\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"valueQuantity\": {\n \"value\": 35.5,\n \"unit\": \"C\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"Cel\"\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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDcwMjI4NTI5MzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/e8766839-1adb-40a6-abfc-b57f7ed774fc/_history/MTY5Mjk3NDcwMjI4NTI5MzAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:45:02 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:45:02 GMT"
},
{
"key": "content-length",
"value": "820"
},
{
"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": "231a0dc0-df92-4fd0-9723-caf6c662093e"
},
{
"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\": \"8310-5\",\n \"display\": \"Body temperature\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"e8766839-1adb-40a6-abfc-b57f7ed774fc\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:45:02.285293+00:00\",\n \"versionId\": \"MTY5Mjk3NDcwMjI4NTI5MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueQuantity\": {\n \"code\": \"Cel\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"C\",\n \"value\": 35.5\n }\n}"
}
]
}
]
}
]
},
{
"name": "Pemeriksaan Fisik Head to Toe",
"item": [
{
"name": "Kepala",
"item": [
{
"name": "Observation - Kepala",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Bentuk kepala simetris\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kepala",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Bentuk kepala simetris\"\n}",
"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/\"MTY5Mjk3NDc1NjEzNDEzNzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/dcedf502-29d4-4255-8dcb-9deff51a7dd0/_history/MTY5Mjk3NDc1NjEzNDEzNzAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:45:56 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:45:56 GMT"
},
{
"key": "content-length",
"value": "773"
},
{
"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": "637e179f-6689-4f37-a9d6-e5d30bc8359a"
},
{
"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\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"dcedf502-29d4-4255-8dcb-9deff51a7dd0\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:45:56.134137+00:00\",\n \"versionId\": \"MTY5Mjk3NDc1NjEzNDEzNzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Bentuk kepala simetris\"\n}"
}
]
},
{
"name": "Observation - Kepala",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Bentuk kepala simetris\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kepala",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Bentuk kepala simetris\"\n}",
"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/\"MTY5Mjk3NDc1NjEzNDEzNzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/dcedf502-29d4-4255-8dcb-9deff51a7dd0/_history/MTY5Mjk3NDc1NjEzNDEzNzAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:45:56 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:45:56 GMT"
},
{
"key": "content-length",
"value": "773"
},
{
"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": "637e179f-6689-4f37-a9d6-e5d30bc8359a"
},
{
"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\": \"10199-8\",\n \"display\": \"Physical findings of Head Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"dcedf502-29d4-4255-8dcb-9deff51a7dd0\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:45:56.134137+00:00\",\n \"versionId\": \"MTY5Mjk3NDc1NjEzNDEzNzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Bentuk kepala simetris\"\n}"
}
]
}
]
},
{
"name": "Mata",
"item": [
{
"name": "Observation - Mata",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Mata",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\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/41feb8f3-7509-427a-9da9-bcc38f52a759/_history/MTY5Mjk3NDc3MDYwMjgxMjAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDc3MDYwMjgxMjAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:46:10 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:46:10 GMT"
},
{
"key": "content-length",
"value": "792"
},
{
"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": "504a7b38-f259-456e-810b-ee3cfd4cfbc1"
},
{
"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\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"41feb8f3-7509-427a-9da9-bcc38f52a759\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:46:10.602812+00:00\",\n \"versionId\": \"MTY5Mjk3NDc3MDYwMjgxMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}"
}
]
},
{
"name": "Observation - Mata",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Mata",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\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/41feb8f3-7509-427a-9da9-bcc38f52a759/_history/MTY5Mjk3NDc3MDYwMjgxMjAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDc3MDYwMjgxMjAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:46:10 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:46:10 GMT"
},
{
"key": "content-length",
"value": "792"
},
{
"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": "504a7b38-f259-456e-810b-ee3cfd4cfbc1"
},
{
"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\": \"10197-2\",\n \"display\": \"Physical findings of Eye Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"41feb8f3-7509-427a-9da9-bcc38f52a759\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:46:10.602812+00:00\",\n \"versionId\": \"MTY5Mjk3NDc3MDYwMjgxMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Mata tampak sehat, konjungtiva tidak pucat\"\n}"
}
]
}
]
},
{
"name": "Telinga",
"item": [
{
"name": "Observation - Telinga",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Telinga",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\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/a0830e3a-a6f2-4809-89fa-63ec8955e98b/_history/MTY5Mjk3NDc4NDY5NjcyNDAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDc4NDY5NjcyNDAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:46:24 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:46:24 GMT"
},
{
"key": "content-length",
"value": "822"
},
{
"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": "57fff20e-feba-4725-ac17-fdeb33c83737"
},
{
"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\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"a0830e3a-a6f2-4809-89fa-63ec8955e98b\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:46:24.696724+00:00\",\n \"versionId\": \"MTY5Mjk3NDc4NDY5NjcyNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}"
}
]
},
{
"name": "Observation - Telinga",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Telinga",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\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/a0830e3a-a6f2-4809-89fa-63ec8955e98b/_history/MTY5Mjk3NDc4NDY5NjcyNDAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDc4NDY5NjcyNDAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:46:24 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:46:24 GMT"
},
{
"key": "content-length",
"value": "822"
},
{
"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": "57fff20e-feba-4725-ac17-fdeb33c83737"
},
{
"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\": \"10195-6\",\n \"display\": \"Physical findings of Ear Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"a0830e3a-a6f2-4809-89fa-63ec8955e98b\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:46:24.696724+00:00\",\n \"versionId\": \"MTY5Mjk3NDc4NDY5NjcyNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Bentuk telinga simetris, liang telinga ada serumen, membran timpani utuh\"\n}"
}
]
}
]
},
{
"name": "Hidung",
"item": [
{
"name": "Observation - Hidung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Hidung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\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": "Fri, 25 Aug 2023 14:47:26 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/4ad4ef84-05e1-41cd-8143-7d27c0f2a3d9/_history/MTY5Mjk3NDg0Njg3MjEwMDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDg0Njg3MjEwMDAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:47:26 GMT"
},
{
"key": "content-length",
"value": "834"
},
{
"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": "9982b102-2bb9-4038-b9e4-c11de299088b"
},
{
"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\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"4ad4ef84-05e1-41cd-8143-7d27c0f2a3d9\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:47:26.872100+00:00\",\n \"versionId\": \"MTY5Mjk3NDg0Njg3MjEwMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Hidung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Hidung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\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": "Fri, 25 Aug 2023 14:47:26 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/4ad4ef84-05e1-41cd-8143-7d27c0f2a3d9/_history/MTY5Mjk3NDg0Njg3MjEwMDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDg0Njg3MjEwMDAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:47:26 GMT"
},
{
"key": "content-length",
"value": "834"
},
{
"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": "9982b102-2bb9-4038-b9e4-c11de299088b"
},
{
"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\": \"10203-8\",\n \"display\": \"Physical findings of Nose Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"4ad4ef84-05e1-41cd-8143-7d27c0f2a3d9\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:47:26.872100+00:00\",\n \"versionId\": \"MTY5Mjk3NDg0Njg3MjEwMDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Septum nasi simetris, lubang hidung tidak ada sekret, dan tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Rambut",
"item": [
{
"name": "Observation - Rambut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32436-8\",\n \"display\": \"Physical findings of Hair\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Rambut dalam batas normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Rambut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32436-8\",\n \"display\": \"Physical findings of Hair\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Rambut dalam batas normal\"\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/d75274ca-1013-42de-aeb5-19e327348e05/_history/MTY5Mjk3NDkyOTcwMTc4NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDkyOTcwMTc4NTAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:48:49 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:48:49 GMT"
},
{
"key": "content-length",
"value": "766"
},
{
"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": "e7629f7b-b7cb-4a74-997c-85bfa57760f7"
},
{
"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\": \"32436-8\",\n \"display\": \"Physical findings of Hair\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"d75274ca-1013-42de-aeb5-19e327348e05\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:48:49.701785+00:00\",\n \"versionId\": \"MTY5Mjk3NDkyOTcwMTc4NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Rambut dalam batas normal\"\n}"
}
]
},
{
"name": "Observation - Rambut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32436-8\",\n \"display\": \"Physical findings of Hair\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Rambut dalam batas normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Rambut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32436-8\",\n \"display\": \"Physical findings of Hair\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Rambut dalam batas normal\"\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/d75274ca-1013-42de-aeb5-19e327348e05/_history/MTY5Mjk3NDkyOTcwMTc4NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDkyOTcwMTc4NTAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:48:49 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:48:49 GMT"
},
{
"key": "content-length",
"value": "766"
},
{
"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": "e7629f7b-b7cb-4a74-997c-85bfa57760f7"
},
{
"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\": \"32436-8\",\n \"display\": \"Physical findings of Hair\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"d75274ca-1013-42de-aeb5-19e327348e05\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:48:49.701785+00:00\",\n \"versionId\": \"MTY5Mjk3NDkyOTcwMTc4NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Rambut dalam batas normal\"\n}"
}
]
}
]
},
{
"name": "Bibir",
"item": [
{
"name": "Observation - Bibir",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32446-7\",\n \"display\": \"Physical findings of Lip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Bibir",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32446-7\",\n \"display\": \"Physical findings of Lip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\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": "Fri, 25 Aug 2023 14:49:06 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDk0NjE3NDU3NDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/f26f9747-daef-4176-a739-383ab01e1642/_history/MTY5Mjk3NDk0NjE3NDU3NDAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:49:06 GMT"
},
{
"key": "content-length",
"value": "789"
},
{
"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": "9ad0d7d2-6c41-4dcb-ac34-c153a7e916e4"
},
{
"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\": \"32446-7\",\n \"display\": \"Physical findings of Lip\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"f26f9747-daef-4176-a739-383ab01e1642\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:49:06.174574+00:00\",\n \"versionId\": \"MTY5Mjk3NDk0NjE3NDU3NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
},
{
"name": "Observation - Bibir",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32446-7\",\n \"display\": \"Physical findings of Lip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Bibir",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32446-7\",\n \"display\": \"Physical findings of Lip\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\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": "Fri, 25 Aug 2023 14:49:06 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDk0NjE3NDU3NDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/f26f9747-daef-4176-a739-383ab01e1642/_history/MTY5Mjk3NDk0NjE3NDU3NDAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:49:06 GMT"
},
{
"key": "content-length",
"value": "789"
},
{
"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": "9ad0d7d2-6c41-4dcb-ac34-c153a7e916e4"
},
{
"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\": \"32446-7\",\n \"display\": \"Physical findings of Lip\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"f26f9747-daef-4176-a739-383ab01e1642\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:49:06.174574+00:00\",\n \"versionId\": \"MTY5Mjk3NDk0NjE3NDU3NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Bibir dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
}
]
},
{
"name": "Gigi geligi",
"item": [
{
"name": "Observation - Gigi Geligi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gigi Geligi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\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/07e96d55-486b-49e5-b029-98900808f17f/_history/MTY5Mjk3NDk2OTAwNTkzNjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDk2OTAwNTkzNjAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:49:29 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:49:29 GMT"
},
{
"key": "content-length",
"value": "798"
},
{
"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": "cfc99b2f-5331-494d-a469-b2969e306e0b"
},
{
"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\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"07e96d55-486b-49e5-b029-98900808f17f\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:49:29.005936+00:00\",\n \"versionId\": \"MTY5Mjk3NDk2OTAwNTkzNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}"
}
]
},
{
"name": "Observation - Gigi Geligi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gigi Geligi",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\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/07e96d55-486b-49e5-b029-98900808f17f/_history/MTY5Mjk3NDk2OTAwNTkzNjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDk2OTAwNTkzNjAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:49:29 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:49:29 GMT"
},
{
"key": "content-length",
"value": "798"
},
{
"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": "cfc99b2f-5331-494d-a469-b2969e306e0b"
},
{
"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\": \"85910-8\",\n \"display\": \"Physical findings of Teeth and gum Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"07e96d55-486b-49e5-b029-98900808f17f\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:49:29.005936+00:00\",\n \"versionId\": \"MTY5Mjk3NDk2OTAwNTkzNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Tidak ada karies, tidak ada perdarahan\"\n}"
}
]
}
]
},
{
"name": "Lidah",
"item": [
{
"name": "Observation - Lidah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lidah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\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/adb47444-2a35-4a64-a71f-40667e3966e8/_history/MTY5Mjk3NDk5MzU2OTg4OTAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:49:53 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDk5MzU2OTg4OTAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:49:53 GMT"
},
{
"key": "content-length",
"value": "791"
},
{
"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": "c1d31a5c-ba18-44b4-82bc-19819f6de8b5"
},
{
"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\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"adb47444-2a35-4a64-a71f-40667e3966e8\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:49:53.569889+00:00\",\n \"versionId\": \"MTY5Mjk3NDk5MzU2OTg4OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}"
}
]
},
{
"name": "Observation - Lidah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lidah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\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/adb47444-2a35-4a64-a71f-40667e3966e8/_history/MTY5Mjk3NDk5MzU2OTg4OTAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:49:53 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NDk5MzU2OTg4OTAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:49:53 GMT"
},
{
"key": "content-length",
"value": "791"
},
{
"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": "c1d31a5c-ba18-44b4-82bc-19819f6de8b5"
},
{
"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\": \"32483-0\",\n \"display\": \"Physical findings of Tongue\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"adb47444-2a35-4a64-a71f-40667e3966e8\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:49:53.569889+00:00\",\n \"versionId\": \"MTY5Mjk3NDk5MzU2OTg4OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Lidah dalam batas normal, tidak ada bercak putih\"\n}"
}
]
}
]
},
{
"name": "Langit-langit",
"item": [
{
"name": "Observation - Langit-Langit",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Langit-Langit",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}",
"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/272c997b-b4ba-4990-a438-337decb27ba3/_history/MTY5Mjk3NTAxMTY4ODI1MDAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:50:11 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTAxMTY4ODI1MDAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:50:11 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": "93f5cca8-33e4-4943-8c36-189d6164b9cf"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"272c997b-b4ba-4990-a438-337decb27ba3\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:50:11.688250+00:00\",\n \"versionId\": \"MTY5Mjk3NTAxMTY4ODI1MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}"
}
]
},
{
"name": "Observation - Langit-Langit",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Langit-Langit",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}",
"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/272c997b-b4ba-4990-a438-337decb27ba3/_history/MTY5Mjk3NTAxMTY4ODI1MDAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:50:11 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTAxMTY4ODI1MDAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:50:11 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": "93f5cca8-33e4-4943-8c36-189d6164b9cf"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"72914001\",\n \"display\": \"Palatal structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"272c997b-b4ba-4990-a438-337decb27ba3\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:50:11.688250+00:00\",\n \"versionId\": \"MTY5Mjk3NTAxMTY4ODI1MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Tidak ada tanda bercak keputihan pada langit- langit mulut\"\n}"
}
]
}
]
},
{
"name": "Leher",
"item": [
{
"name": "Observation - Leher",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Leher",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\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": "Fri, 25 Aug 2023 14:50:26 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/Observation/e76d64de-a909-4712-bc59-b21850a833c4/_history/MTY5Mjk3NTAyNjgxNDM0NDAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTAyNjgxNDM0NDAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:50:26 GMT"
},
{
"key": "content-length",
"value": "861"
},
{
"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": "fda0addf-1248-4a35-9532-c128a3ccdc4f"
},
{
"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\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"e76d64de-a909-4712-bc59-b21850a833c4\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:50:26.814344+00:00\",\n \"versionId\": \"MTY5Mjk3NTAyNjgxNDM0NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}"
}
]
},
{
"name": "Observation - Leher",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Leher",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\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": "Fri, 25 Aug 2023 14:50:26 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/Observation/e76d64de-a909-4712-bc59-b21850a833c4/_history/MTY5Mjk3NTAyNjgxNDM0NDAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTAyNjgxNDM0NDAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:50:26 GMT"
},
{
"key": "content-length",
"value": "861"
},
{
"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": "fda0addf-1248-4a35-9532-c128a3ccdc4f"
},
{
"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\": \"11411-6\",\n \"display\": \"Physical findings of Neck Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"e76d64de-a909-4712-bc59-b21850a833c4\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:50:26.814344+00:00\",\n \"versionId\": \"MTY5Mjk3NTAyNjgxNDM0NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Tidak ada pembesaran kelenjar limfe, tidak ada pembesaran kelenjar tiroid, tidak ada pembesaran vena jugularis \"\n}"
}
]
}
]
},
{
"name": "Tenggorokan",
"item": [
{
"name": "Observation - Tenggorokan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tenggorokan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\n}",
"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/41b0c555-fe26-4767-83a7-38ec265fb048/_history/MTY5Mjk3NTA0NTkxOTc5NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTA0NTkxOTc5NTAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:50:45 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:50:45 GMT"
},
{
"key": "content-length",
"value": "796"
},
{
"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": "150b4907-e333-4505-8a00-cfa76a331770"
},
{
"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\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"41b0c555-fe26-4767-83a7-38ec265fb048\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:50:45.919795+00:00\",\n \"versionId\": \"MTY5Mjk3NTA0NTkxOTc5NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Tenggorokan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tenggorokan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\n}",
"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/41b0c555-fe26-4767-83a7-38ec265fb048/_history/MTY5Mjk3NTA0NTkxOTc5NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTA0NTkxOTc5NTAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:50:45 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:50:45 GMT"
},
{
"key": "content-length",
"value": "796"
},
{
"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": "150b4907-e333-4505-8a00-cfa76a331770"
},
{
"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\": \"56867-5\",\n \"display\": \"Physical findings of Throat Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"41b0c555-fe26-4767-83a7-38ec265fb048\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:50:45.919795+00:00\",\n \"versionId\": \"MTY5Mjk3NTA0NTkxOTc5NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Tidak ada kripta, tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Tonsil",
"item": [
{
"name": "Observation - Tonsil",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tonsil",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\n}",
"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": "last-modified",
"value": "Fri, 25 Aug 2023 14:51:05 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTA2NTcxMDAzNjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/b64eb531-90d3-4597-8f73-cc7dbcd3c205/_history/MTY5Mjk3NTA2NTcxMDAzNjAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:51:05 GMT"
},
{
"key": "content-length",
"value": "929"
},
{
"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": "a7452ea7-eb6a-408a-9117-d1efff0d16c1"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"b64eb531-90d3-4597-8f73-cc7dbcd3c205\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:51:05.710036+00:00\",\n \"versionId\": \"MTY5Mjk3NTA2NTcxMDAzNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Tonsil",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tonsil",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\n}",
"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": "last-modified",
"value": "Fri, 25 Aug 2023 14:51:05 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTA2NTcxMDAzNjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/b64eb531-90d3-4597-8f73-cc7dbcd3c205/_history/MTY5Mjk3NTA2NTcxMDAzNjAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:51:05 GMT"
},
{
"key": "content-length",
"value": "929"
},
{
"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": "a7452ea7-eb6a-408a-9117-d1efff0d16c1"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"91636008\",\n \"display\": \"Bilateral palatine tonsils\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"10201-2\",\n \"display\": \"Physical findings of Mouth and Throat and Teeth Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"b64eb531-90d3-4597-8f73-cc7dbcd3c205\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:51:05.710036+00:00\",\n \"versionId\": \"MTY5Mjk3NTA2NTcxMDAzNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Tonsil T1-T1, tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Dada",
"item": [
{
"name": "Observation - Dada",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dada",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\n}",
"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/\"MTY5Mjk3NTEzNzIxMTE2MjAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:52:17 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/ff25cca8-032a-4e33-9673-efb523808cd1/_history/MTY5Mjk3NTEzNzIxMTE2MjAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:52:17 GMT"
},
{
"key": "content-length",
"value": "836"
},
{
"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": "92a53b69-56e4-4e4e-be2b-4e5cc670d08c"
},
{
"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\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"ff25cca8-032a-4e33-9673-efb523808cd1\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:52:17.211162+00:00\",\n \"versionId\": \"MTY5Mjk3NTEzNzIxMTE2MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\n}"
}
]
},
{
"name": "Observation - Dada",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Dada",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\n}",
"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/\"MTY5Mjk3NTEzNzIxMTE2MjAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:52:17 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/ff25cca8-032a-4e33-9673-efb523808cd1/_history/MTY5Mjk3NTEzNzIxMTE2MjAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:52:17 GMT"
},
{
"key": "content-length",
"value": "836"
},
{
"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": "92a53b69-56e4-4e4e-be2b-4e5cc670d08c"
},
{
"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\": \"11391-0\",\n \"display\": \"Physical findings of Chest Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"ff25cca8-032a-4e33-9673-efb523808cd1\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:52:17.211162+00:00\",\n \"versionId\": \"MTY5Mjk3NTEzNzIxMTE2MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Pergerakan dada simetris, suara napas vesikuler, tidak ada ronkhi, tidak ada wheezing\"\n}"
}
]
}
]
},
{
"name": "Payudara",
"item": [
{
"name": "Observation - Payudara",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Payudara",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\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/8485919e-aba3-4a4d-a53a-07d9c1e6d9c4/_history/MTY5Mjk3NjU2NTQzMTM4NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:16:05 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NjU2NTQzMTM4NjAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:16:05 GMT"
},
{
"key": "content-length",
"value": "854"
},
{
"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": "154c471d-ed47-40c4-be44-f9a4fec557a6"
},
{
"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\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"8485919e-aba3-4a4d-a53a-07d9c1e6d9c4\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:16:05.431386+00:00\",\n \"versionId\": \"MTY5Mjk3NjU2NTQzMTM4NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Payudara",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Payudara",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\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/8485919e-aba3-4a4d-a53a-07d9c1e6d9c4/_history/MTY5Mjk3NjU2NTQzMTM4NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:16:05 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NjU2NTQzMTM4NjAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:16:05 GMT"
},
{
"key": "content-length",
"value": "854"
},
{
"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": "154c471d-ed47-40c4-be44-f9a4fec557a6"
},
{
"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\": \"10193-1\",\n \"display\": \"Physical findings of Breasts Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"8485919e-aba3-4a4d-a53a-07d9c1e6d9c4\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:16:05.431386+00:00\",\n \"versionId\": \"MTY5Mjk3NjU2NTQzMTM4NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Payudara simetris, areola dalam batas normal, tidak ada keluar cairan, dan tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Punggung",
"item": [
{
"name": "Observation - Punggung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Punggung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\n}",
"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/\"MTY5Mjk3NTE3Njg0NDk5MjAwMA\""
},
{
"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/3943c704-c519-41bc-8980-1155882a0959/_history/MTY5Mjk3NTE3Njg0NDk5MjAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:52:56 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:52:56 GMT"
},
{
"key": "content-length",
"value": "795"
},
{
"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": "b66757c2-8463-43ca-b18f-82883e623589"
},
{
"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\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"3943c704-c519-41bc-8980-1155882a0959\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:52:56.844992+00:00\",\n \"versionId\": \"MTY5Mjk3NTE3Njg0NDk5MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\n}"
}
]
},
{
"name": "Observation - Punggung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Punggung",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\n}",
"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/\"MTY5Mjk3NTE3Njg0NDk5MjAwMA\""
},
{
"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/3943c704-c519-41bc-8980-1155882a0959/_history/MTY5Mjk3NTE3Njg0NDk5MjAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:52:56 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:52:56 GMT"
},
{
"key": "content-length",
"value": "795"
},
{
"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": "b66757c2-8463-43ca-b18f-82883e623589"
},
{
"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\": \"10192-3\",\n \"display\": \"Physical findings of Back Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"3943c704-c519-41bc-8980-1155882a0959\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:52:56.844992+00:00\",\n \"versionId\": \"MTY5Mjk3NTE3Njg0NDk5MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Punggung simetris, tidak tampak ada kelainan\"\n}"
}
]
}
]
},
{
"name": "Perut",
"item": [
{
"name": "Observation - Perut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Perut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}",
"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": "last-modified",
"value": "Fri, 25 Aug 2023 14:53:14 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/b87bade6-6e1b-4fba-89b0-38decc5c4bfe/_history/MTY5Mjk3NTE5NDQyNDgzNzAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTE5NDQyNDgzNzAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:53:14 GMT"
},
{
"key": "content-length",
"value": "945"
},
{
"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": "ba429d0c-1c31-4326-8bac-94713032cf2a"
},
{
"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\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"b87bade6-6e1b-4fba-89b0-38decc5c4bfe\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:53:14.424837+00:00\",\n \"versionId\": \"MTY5Mjk3NTE5NDQyNDgzNzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}"
}
]
},
{
"name": "Observation - Perut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Perut",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}",
"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": "last-modified",
"value": "Fri, 25 Aug 2023 14:53:14 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/b87bade6-6e1b-4fba-89b0-38decc5c4bfe/_history/MTY5Mjk3NTE5NDQyNDgzNzAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTE5NDQyNDgzNzAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:53:14 GMT"
},
{
"key": "content-length",
"value": "945"
},
{
"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": "ba429d0c-1c31-4326-8bac-94713032cf2a"
},
{
"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\": \"10191-5\",\n \"display\": \"Physical findings of Abdomen Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"b87bade6-6e1b-4fba-89b0-38decc5c4bfe\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:53:14.424837+00:00\",\n \"versionId\": \"MTY5Mjk3NTE5NDQyNDgzNzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Gerakan dinding perut saat ekspirasi dan insipirasi dalam batas normal, pada auskultasi terdengar suara peristaltik usus dalam batas normal, pada perkusi terdapat timpani seluruh lapang perut\"\n}"
}
]
}
]
},
{
"name": "Genital",
"item": [
{
"name": "Observation - Genital",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Genital",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}",
"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/9002faf2-5233-4798-ba05-16c8e7676f8d/_history/MTY5Mjk3NTIxMTUwMDgxNzAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTIxMTUwMDgxNzAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:53:31 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:53:31 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": "210eda06-1e11-413b-a501-17972cb68341"
},
{
"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\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"9002faf2-5233-4798-ba05-16c8e7676f8d\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:53:31.500817+00:00\",\n \"versionId\": \"MTY5Mjk3NTIxMTUwMDgxNzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}"
}
]
},
{
"name": "Observation - Genital",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Genital",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}",
"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/9002faf2-5233-4798-ba05-16c8e7676f8d/_history/MTY5Mjk3NTIxMTUwMDgxNzAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTIxMTUwMDgxNzAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:53:31 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:53:31 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": "210eda06-1e11-413b-a501-17972cb68341"
},
{
"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\": \"11400-9\",\n \"display\": \"Physical findings of Genitalia Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"9002faf2-5233-4798-ba05-16c8e7676f8d\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:53:31.500817+00:00\",\n \"versionId\": \"MTY5Mjk3NTIxMTUwMDgxNzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Pada vagina tidak ada jaringan parut, tanda inflamasi, atau keretakan kulit, tidak ada benjolan. Pada pemeriksaan dalam terdapat darah segar dan gumpalan darah di saluran vagina dan sebagian janin masuk ke peritoneum\"\n}"
}
]
}
]
},
{
"name": "Anus/Dubur",
"item": [
{
"name": "Observation - Anus/Dubur",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"53505006\",\n \"display\": \"Anal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Anus/Dubur",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"53505006\",\n \"display\": \"Anal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}",
"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/\"MTY5Mjk3NTIzMjEwODg2OTAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:53: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/36c2435a-4194-4a85-bad6-7a5b071bf00c/_history/MTY5Mjk3NTIzMjEwODg2OTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:53:52 GMT"
},
{
"key": "content-length",
"value": "909"
},
{
"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": "72e2614e-ceb1-432e-b0ed-8b0a03b011fd"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"53505006\",\n \"display\": \"Anal structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"36c2435a-4194-4a85-bad6-7a5b071bf00c\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:53:52.108869+00:00\",\n \"versionId\": \"MTY5Mjk3NTIzMjEwODg2OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Anus/Dubur",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"53505006\",\n \"display\": \"Anal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Anus/Dubur",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"53505006\",\n \"display\": \"Anal structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}",
"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/\"MTY5Mjk3NTIzMjEwODg2OTAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 14:53: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/36c2435a-4194-4a85-bad6-7a5b071bf00c/_history/MTY5Mjk3NTIzMjEwODg2OTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 14:53:52 GMT"
},
{
"key": "content-length",
"value": "909"
},
{
"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": "72e2614e-ceb1-432e-b0ed-8b0a03b011fd"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"53505006\",\n \"display\": \"Anal structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11388-6\",\n \"display\": \"Physical findings of Buttocks Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"36c2435a-4194-4a85-bad6-7a5b071bf00c\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T14:53:52.108869+00:00\",\n \"versionId\": \"MTY5Mjk3NTIzMjEwODg2OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Anus dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Lengan Atas",
"item": [
{
"name": "Observation - Lengan Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lengan Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"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": "last-modified",
"value": "Fri, 25 Aug 2023 15:03: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/Observation/8b0a2635-620b-42b2-9db6-1d258f8d4028/_history/MTY5Mjk3NTgzNDk2OTE2NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTgzNDk2OTE2NTAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:03:54 GMT"
},
{
"key": "content-length",
"value": "828"
},
{
"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": "a661423d-8cd3-4262-882f-d5c8c2ff4a36"
},
{
"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\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"8b0a2635-620b-42b2-9db6-1d258f8d4028\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:03:54.969165+00:00\",\n \"versionId\": \"MTY5Mjk3NTgzNDk2OTE2NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}"
}
]
},
{
"name": "Observation - Lengan Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lengan Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"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": "last-modified",
"value": "Fri, 25 Aug 2023 15:03: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/Observation/8b0a2635-620b-42b2-9db6-1d258f8d4028/_history/MTY5Mjk3NTgzNDk2OTE2NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTgzNDk2OTE2NTAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:03:54 GMT"
},
{
"key": "content-length",
"value": "828"
},
{
"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": "a661423d-8cd3-4262-882f-d5c8c2ff4a36"
},
{
"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\": \"11386-0\",\n \"display\": \"Physical findings of Upper Arm Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"8b0a2635-620b-42b2-9db6-1d258f8d4028\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:03:54.969165+00:00\",\n \"versionId\": \"MTY5Mjk3NTgzNDk2OTE2NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Lengan atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}"
}
]
}
]
},
{
"name": "Lengan Bawah",
"item": [
{
"name": "Observation - Lengan Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lengan Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\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": "Fri, 25 Aug 2023 15:04:22 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTg2MjM5MTMzNjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/e3182d95-5416-4fbb-889b-51c8dbe1110b/_history/MTY5Mjk3NTg2MjM5MTMzNjAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:04:22 GMT"
},
{
"key": "content-length",
"value": "826"
},
{
"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": "0c03d72e-b7a6-4213-8d21-77c4059fe423"
},
{
"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\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"e3182d95-5416-4fbb-889b-51c8dbe1110b\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:04:22.391336+00:00\",\n \"versionId\": \"MTY5Mjk3NTg2MjM5MTMzNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}"
}
]
},
{
"name": "Observation - Lengan Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Lengan Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\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": "Fri, 25 Aug 2023 15:04:22 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTg2MjM5MTMzNjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/e3182d95-5416-4fbb-889b-51c8dbe1110b/_history/MTY5Mjk3NTg2MjM5MTMzNjAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:04:22 GMT"
},
{
"key": "content-length",
"value": "826"
},
{
"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": "0c03d72e-b7a6-4213-8d21-77c4059fe423"
},
{
"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\": \"11398-5\",\n \"display\": \"Physical findings of Forearm Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"e3182d95-5416-4fbb-889b-51c8dbe1110b\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:04:22.391336+00:00\",\n \"versionId\": \"MTY5Mjk3NTg2MjM5MTMzNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Lengan bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot normal\"\n}"
}
]
}
]
},
{
"name": "Jari Tangan",
"item": [
{
"name": "Observation - Jari Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"7569003\",\n \"display\": \"Finger structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jari Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"7569003\",\n \"display\": \"Finger structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}",
"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/\"MTY5Mjk3NTg4NTAzMTczODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/414ecf67-e753-49e0-88ef-2fcc087499c1/_history/MTY5Mjk3NTg4NTAzMTczODAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:04:45 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:04:45 GMT"
},
{
"key": "content-length",
"value": "914"
},
{
"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": "995a85f3-58f9-48d7-aecf-3d37d9f282ae"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"7569003\",\n \"display\": \"Finger structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"414ecf67-e753-49e0-88ef-2fcc087499c1\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:04:45.031738+00:00\",\n \"versionId\": \"MTY5Mjk3NTg4NTAzMTczODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Jari Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"7569003\",\n \"display\": \"Finger structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jari Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"7569003\",\n \"display\": \"Finger structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}",
"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/\"MTY5Mjk3NTg4NTAzMTczODAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/414ecf67-e753-49e0-88ef-2fcc087499c1/_history/MTY5Mjk3NTg4NTAzMTczODAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:04:45 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:04:45 GMT"
},
{
"key": "content-length",
"value": "914"
},
{
"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": "995a85f3-58f9-48d7-aecf-3d37d9f282ae"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"7569003\",\n \"display\": \"Finger structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11404-1\",\n \"display\": \"Physical findings of Hand Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"414ecf67-e753-49e0-88ef-2fcc087499c1\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:04:45.031738+00:00\",\n \"versionId\": \"MTY5Mjk3NTg4NTAzMTczODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Jari tangan dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Kuku Tangan",
"item": [
{
"name": "Observation - Kuku Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kuku Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\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/313d10a1-bf51-468b-b62c-2a909be2a1f8/_history/MTY5Mjk3NTkxMjA1NDQ0NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTkxMjA1NDQ0NTAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:05:12 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:05:12 GMT"
},
{
"key": "content-length",
"value": "915"
},
{
"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": "0b73e264-698e-4111-aad3-dc60d1cad626"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"32456-6\",\n \"display\": \"Physical findings of Nail\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"313d10a1-bf51-468b-b62c-2a909be2a1f8\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:05:12.054445+00:00\",\n \"versionId\": \"MTY5Mjk3NTkxMjA1NDQ0NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
},
{
"name": "Observation - Kuku Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kuku Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\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/313d10a1-bf51-468b-b62c-2a909be2a1f8/_history/MTY5Mjk3NTkxMjA1NDQ0NTAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NTkxMjA1NDQ0NTAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:05:12 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:05:12 GMT"
},
{
"key": "content-length",
"value": "915"
},
{
"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": "0b73e264-698e-4111-aad3-dc60d1cad626"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"770812000\",\n \"display\": \"Entire nail unit of finger\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"32456-6\",\n \"display\": \"Physical findings of Nail\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"313d10a1-bf51-468b-b62c-2a909be2a1f8\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:05:12.054445+00:00\",\n \"versionId\": \"MTY5Mjk3NTkxMjA1NDQ0NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Kuku tangan dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
}
]
},
{
"name": "Persendian Tangan",
"item": [
{
"name": "Observation - Persendian Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Persendian Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\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/0890951f-709c-4a2d-8d24-d0d1c1b86f79/_history/MTY5Mjk3NjMwMTY5MjE3MjAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NjMwMTY5MjE3MjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:11:41 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:11:41 GMT"
},
{
"key": "content-length",
"value": "808"
},
{
"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": "5b9e1bdd-66f7-428d-987b-e79956ef7fa2"
},
{
"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\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"0890951f-709c-4a2d-8d24-d0d1c1b86f79\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:11:41.692172+00:00\",\n \"versionId\": \"MTY5Mjk3NjMwMTY5MjE3MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}"
}
]
},
{
"name": "Observation - Persendian Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Persendian Tangan",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\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/0890951f-709c-4a2d-8d24-d0d1c1b86f79/_history/MTY5Mjk3NjMwMTY5MjE3MjAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NjMwMTY5MjE3MjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:11:41 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:11:41 GMT"
},
{
"key": "content-length",
"value": "808"
},
{
"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": "5b9e1bdd-66f7-428d-987b-e79956ef7fa2"
},
{
"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\": \"11415-7\",\n \"display\": \"Physical findings of Wrist Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"0890951f-709c-4a2d-8d24-d0d1c1b86f79\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:11:41.692172+00:00\",\n \"versionId\": \"MTY5Mjk3NjMwMTY5MjE3MjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Persendian tangan tidak ada fraktur, tidak ada krepitasi\"\n}"
}
]
}
]
},
{
"name": "Tungkai Atas",
"item": [
{
"name": "Observation - Tungkai Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tungkai Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"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/1591974c-fd06-4366-a283-fea471232768/_history/MTY5Mjk3NjMxODgwNjQ2ODAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:11:58 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NjMxODgwNjQ2ODAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:11:58 GMT"
},
{
"key": "content-length",
"value": "823"
},
{
"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": "3a298eb2-e8ea-4985-a025-e26b9d2c34d8"
},
{
"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\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"1591974c-fd06-4366-a283-fea471232768\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:11:58.806468+00:00\",\n \"versionId\": \"MTY5Mjk3NjMxODgwNjQ2ODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}"
}
]
},
{
"name": "Observation - Tungkai Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tungkai Atas",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"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/1591974c-fd06-4366-a283-fea471232768/_history/MTY5Mjk3NjMxODgwNjQ2ODAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:11:58 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NjMxODgwNjQ2ODAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:11:58 GMT"
},
{
"key": "content-length",
"value": "823"
},
{
"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": "3a298eb2-e8ea-4985-a025-e26b9d2c34d8"
},
{
"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\": \"11414-0\",\n \"display\": \"Physical findings of Thigh Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"1591974c-fd06-4366-a283-fea471232768\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:11:58.806468+00:00\",\n \"versionId\": \"MTY5Mjk3NjMxODgwNjQ2ODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Tungkai atas tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}"
}
]
}
]
},
{
"name": "Tungkai Bawah",
"item": [
{
"name": "Observation - Tungkai Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tungkai Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\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/fcf09b82-ba66-4ef8-9dc8-4c21dc474919/_history/MTY5Mjk3NjMzOTY5ODYzNDAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NjMzOTY5ODYzNDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:12:19 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:12:19 GMT"
},
{
"key": "content-length",
"value": "822"
},
{
"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": "49800c10-db25-409f-bbed-3e0c769d8cde"
},
{
"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\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"fcf09b82-ba66-4ef8-9dc8-4c21dc474919\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:12:19.698634+00:00\",\n \"versionId\": \"MTY5Mjk3NjMzOTY5ODYzNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}"
}
]
},
{
"name": "Observation - Tungkai Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Tungkai Bawah",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\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/fcf09b82-ba66-4ef8-9dc8-4c21dc474919/_history/MTY5Mjk3NjMzOTY5ODYzNDAwMA"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NjMzOTY5ODYzNDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:12:19 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:12:19 GMT"
},
{
"key": "content-length",
"value": "822"
},
{
"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": "49800c10-db25-409f-bbed-3e0c769d8cde"
},
{
"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\": \"11389-4\",\n \"display\": \"Physical findings of Calf Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"fcf09b82-ba66-4ef8-9dc8-4c21dc474919\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:12:19.698634+00:00\",\n \"versionId\": \"MTY5Mjk3NjMzOTY5ODYzNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Tungkai bawah tidak ada fraktur, tidak ada krepitasi, kekuatan otot baik\"\n}"
}
]
}
]
},
{
"name": "Jari Kaki",
"item": [
{
"name": "Observation - Jari Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"29707007\",\n \"display\": \"Toe structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jari Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"29707007\",\n \"display\": \"Toe structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\n}",
"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/\"MTY5Mjk3NjM1OTEzMDY2MzAwMA\""
},
{
"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/7c98f82a-d9e3-43d8-ae5f-2bd0571fa72b/_history/MTY5Mjk3NjM1OTEzMDY2MzAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:12:39 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:12:39 GMT"
},
{
"key": "content-length",
"value": "910"
},
{
"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": "65241100-c169-42e8-9e2c-9d2c4e8458c3"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"29707007\",\n \"display\": \"Toe structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"7c98f82a-d9e3-43d8-ae5f-2bd0571fa72b\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:12:39.130663+00:00\",\n \"versionId\": \"MTY5Mjk3NjM1OTEzMDY2MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
},
{
"name": "Observation - Jari Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"29707007\",\n \"display\": \"Toe structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Jari Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"29707007\",\n \"display\": \"Toe structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\n}",
"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/\"MTY5Mjk3NjM1OTEzMDY2MzAwMA\""
},
{
"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/7c98f82a-d9e3-43d8-ae5f-2bd0571fa72b/_history/MTY5Mjk3NjM1OTEzMDY2MzAwMA"
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:12:39 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:12:39 GMT"
},
{
"key": "content-length",
"value": "910"
},
{
"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": "65241100-c169-42e8-9e2c-9d2c4e8458c3"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"29707007\",\n \"display\": \"Toe structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11397-7\",\n \"display\": \"Physical findings of Foot Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"7c98f82a-d9e3-43d8-ae5f-2bd0571fa72b\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:12:39.130663+00:00\",\n \"versionId\": \"MTY5Mjk3NjM1OTEzMDY2MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Jari kaki dalam batas normal, tidak ada tanda inflamasi\"\n}"
}
]
}
]
},
{
"name": "Kuku Kaki",
"item": [
{
"name": "Observation - Kuku Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kuku Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\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": "Fri, 25 Aug 2023 15:14:02 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NjQ0MjczODU2OTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/22456562-b356-4942-8a86-4954744fd5f9/_history/MTY5Mjk3NjQ0MjczODU2OTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:14:02 GMT"
},
{
"key": "content-length",
"value": "916"
},
{
"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": "bb1feaca-cc84-4363-9481-f8fe9fa7807a"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"32456-6\",\n \"display\": \"Physical findings of Nail\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"22456562-b356-4942-8a86-4954744fd5f9\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:14:02.738569+00:00\",\n \"versionId\": \"MTY5Mjk3NjQ0MjczODU2OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
},
{
"name": "Observation - Kuku Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Kuku Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"32456-6\",\n \"display\": \"Physical findings of Nail\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\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": "Fri, 25 Aug 2023 15:14:02 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NjQ0MjczODU2OTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/22456562-b356-4942-8a86-4954744fd5f9/_history/MTY5Mjk3NjQ0MjczODU2OTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:14:02 GMT"
},
{
"key": "content-length",
"value": "916"
},
{
"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": "bb1feaca-cc84-4363-9481-f8fe9fa7807a"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"770805009\",\n \"display\": \"Structure of nail unit of toe\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"32456-6\",\n \"display\": \"Physical findings of Nail\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"22456562-b356-4942-8a86-4954744fd5f9\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:14:02.738569+00:00\",\n \"versionId\": \"MTY5Mjk3NjQ0MjczODU2OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Kuku kaki dalam batas normal, tidak ada tanda sianosis\"\n}"
}
]
}
]
},
{
"name": "Persendian Kaki",
"item": [
{
"name": "Observation - Persendian Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Persendian Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\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/2f90d546-7504-40d8-8ffb-bf0896fa916d/_history/MTY5Mjk3NjQ2MDQwMDc2MzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NjQ2MDQwMDc2MzAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:14:20 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:14:20 GMT"
},
{
"key": "content-length",
"value": "917"
},
{
"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": "c68659a3-4418-46a2-8004-3fd5afbfc916"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"2f90d546-7504-40d8-8ffb-bf0896fa916d\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:14:20.400763+00:00\",\n \"versionId\": \"MTY5Mjk3NjQ2MDQwMDc2MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\n}"
}
]
},
{
"name": "Observation - Persendian Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Persendian Kaki",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\"\n }\n ]\n },\n \"bodySite\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\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/2f90d546-7504-40d8-8ffb-bf0896fa916d/_history/MTY5Mjk3NjQ2MDQwMDc2MzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5Mjk3NjQ2MDQwMDc2MzAwMA\""
},
{
"key": "last-modified",
"value": "Fri, 25 Aug 2023 15:14:20 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 25 Aug 2023 15:14:20 GMT"
},
{
"key": "content-length",
"value": "917"
},
{
"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": "c68659a3-4418-46a2-8004-3fd5afbfc916"
},
{
"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 \"bodySite\": {\n \"coding\": [\n {\n \"code\": \"26552008\",\n \"display\": \"Foot joint structure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\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\": \"11385-2\",\n \"display\": \"Physical findings of Ankle Narrative\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:45:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"2f90d546-7504-40d8-8ffb-bf0896fa916d\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:45:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-25T15:14:20.400763+00:00\",\n \"versionId\": \"MTY5Mjk3NjQ2MDQwMDc2MzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueString\": \"Persendian kaki tidak ada fraktur, tidak ada krepitasi\"\n}"
}
]
}
]
}
]
}
]
}
]
},
{
"name": "06. Skrining",
"item": [
{
"name": "Risiko Luka Decubitus",
"item": [
{
"name": "Ya",
"item": [
{
"name": "Observation - Risiko Decubitus - Ya",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"285304000\",\n \"display\": \"At risk of pressure injury\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:55:00+00:00\",\n \"issued\": \"2023-07-04T08:55:00+00:00\",\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Risiko Decubitus - Ya",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"285304000\",\n \"display\": \"At risk of pressure injury\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:55:00+00:00\",\n \"issued\": \"2023-07-04T08:55:00+00:00\",\n \"valueBoolean\": true\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": "Mon, 28 Aug 2023 03:08:01 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5MzE5MjA4MTA3Mzg4NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/b4bb6d2a-e13d-4f0e-ae4a-f1b26fc9562d/_history/MTY5MzE5MjA4MTA3Mzg4NjAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Mon, 28 Aug 2023 03:08:01 GMT"
},
{
"key": "content-length",
"value": "753"
},
{
"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": "0fcb4d84-a929-4c34-90b4-3362944b0499"
},
{
"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\": \"285304000\",\n \"display\": \"At risk of pressure injury\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:55:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"b4bb6d2a-e13d-4f0e-ae4a-f1b26fc9562d\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-28T03:08:01.073886+00:00\",\n \"versionId\": \"MTY5MzE5MjA4MTA3Mzg4NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueBoolean\": true\n}"
}
]
},
{
"name": "Observation - Risiko Decubitus - Ya",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"285304000\",\n \"display\": \"At risk of pressure injury\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:55:00+00:00\",\n \"issued\": \"2023-07-04T08:55:00+00:00\",\n \"valueBoolean\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Risiko Decubitus - Ya",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"285304000\",\n \"display\": \"At risk of pressure injury\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:55:00+00:00\",\n \"issued\": \"2023-07-04T08:55:00+00:00\",\n \"valueBoolean\": true\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": "Mon, 28 Aug 2023 03:08:01 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5MzE5MjA4MTA3Mzg4NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/b4bb6d2a-e13d-4f0e-ae4a-f1b26fc9562d/_history/MTY5MzE5MjA4MTA3Mzg4NjAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Mon, 28 Aug 2023 03:08:01 GMT"
},
{
"key": "content-length",
"value": "753"
},
{
"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": "0fcb4d84-a929-4c34-90b4-3362944b0499"
},
{
"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\": \"285304000\",\n \"display\": \"At risk of pressure injury\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:55:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"b4bb6d2a-e13d-4f0e-ae4a-f1b26fc9562d\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-28T03:08:01.073886+00:00\",\n \"versionId\": \"MTY5MzE5MjA4MTA3Mzg4NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueBoolean\": true\n}"
}
]
}
]
},
{
"name": "Tidak",
"item": [
{
"name": "Observation - Risiko Decubitus - Tidak",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"285304000\",\n \"display\": \"At risk of pressure injury\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:55:00+00:00\",\n \"issued\": \"2023-07-04T08:55:00+00:00\",\n \"valueBoolean\": false\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Risiko Decubitus - Tidak",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"285304000\",\n \"display\": \"At risk of pressure injury\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:55:00+00:00\",\n \"issued\": \"2023-07-04T08:55:00+00:00\",\n \"valueBoolean\": false\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": "Mon, 28 Aug 2023 03:08:34 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5MzE5MjExNDYwNDQyMzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/bb922939-496b-4417-bdcb-be9950edd82c/_history/MTY5MzE5MjExNDYwNDQyMzAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Mon, 28 Aug 2023 03:08:34 GMT"
},
{
"key": "content-length",
"value": "754"
},
{
"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": "50dcd4a6-ffd8-4675-8a17-63d7b59dfcc3"
},
{
"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\": \"285304000\",\n \"display\": \"At risk of pressure injury\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:55:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"bb922939-496b-4417-bdcb-be9950edd82c\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-28T03:08:34.604423+00:00\",\n \"versionId\": \"MTY5MzE5MjExNDYwNDQyMzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueBoolean\": false\n}"
}
]
},
{
"name": "Observation - Risiko Decubitus - Tidak",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"285304000\",\n \"display\": \"At risk of pressure injury\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:55:00+00:00\",\n \"issued\": \"2023-07-04T08:55:00+00:00\",\n \"valueBoolean\": false\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Risiko Decubitus - Tidak",
"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\": \"exam\",\n \"display\": \"Exam\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"285304000\",\n \"display\": \"At risk of pressure injury\"\n }\n ]\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2023-07-04T08:55:00+00:00\",\n \"issued\": \"2023-07-04T08:55:00+00:00\",\n \"valueBoolean\": false\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": "Mon, 28 Aug 2023 03:08:34 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5MzE5MjExNDYwNDQyMzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/bb922939-496b-4417-bdcb-be9950edd82c/_history/MTY5MzE5MjExNDYwNDQyMzAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Mon, 28 Aug 2023 03:08:34 GMT"
},
{
"key": "content-length",
"value": "754"
},
{
"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": "50dcd4a6-ffd8-4675-8a17-63d7b59dfcc3"
},
{
"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\": \"285304000\",\n \"display\": \"At risk of pressure injury\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"effectiveDateTime\": \"2023-07-04T08:55:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"bb922939-496b-4417-bdcb-be9950edd82c\",\n \"identifier\": [],\n \"issued\": \"2023-07-04T08:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2023-08-28T03:08:34.604423+00:00\",\n \"versionId\": \"MTY5MzE5MjExNDYwNDQyMzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"valueBoolean\": false\n}"
}
]
}
]
}
]
},
{
"name": "Batuk",
"item": [
{
"name": "QuestionnaireResponse - Batuk",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0008\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-07-04T08:55:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Batuk\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah memiliki riwayat demam?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah berkeringat pada malam hari walaupun tanpa aktivitas?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah memiliki riwayat berpergian dari daerah wabah?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah memiliki riwayat pemakaian obat jangka panjang?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"1.5\",\n \"text\": \"Apakah memiliki riwayat BB turun tanpa sebab yang diketahui?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"response": [
{
"name": "QuestionnaireResponse - Batuk",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0008\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-07-04T08:55:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Batuk\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah memiliki riwayat demam?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah berkeringat pada malam hari walaupun tanpa aktivitas?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah memiliki riwayat berpergian dari daerah wabah?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah memiliki riwayat pemakaian obat jangka panjang?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"1.5\",\n \"text\": \"Apakah memiliki riwayat BB turun tanpa sebab yang diketahui?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTY4OTA2MzYwMjgxMjQ4MzAwMA\""
},
{
"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/QuestionnaireResponse/cf13594a-7e16-4c69-a75a-0f0da031ded5/_history/MTY4OTA2MzYwMjgxMjQ4MzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 11 Jul 2023 08:20:02 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Tue, 11 Jul 2023 08:20:02 GMT"
},
{
"key": "content-length",
"value": "1261"
},
{
"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": "81e110cf-36a6-41d3-ab8d-9cb975c3e8fe"
},
{
"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 \"reference\": \"Practitioner/N10000001\"\n },\n \"authored\": \"2023-07-04T08:55:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"cf13594a-7e16-4c69-a75a-0f0da031ded5\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/creator\",\n \"value\": \"10000004\"\n },\n \"item\": [\n {\n \"item\": [\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"1.1\",\n \"text\": \"Apakah memiliki riwayat demam?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"1.2\",\n \"text\": \"Apakah berkeringat pada malam hari walaupun tanpa aktivitas?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"1.3\",\n \"text\": \"Apakah memiliki riwayat berpergian dari daerah wabah?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ],\n \"linkId\": \"1.4\",\n \"text\": \"Apakah memiliki riwayat pemakaian obat jangka panjang?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"1.5\",\n \"text\": \"Apakah memiliki riwayat BB turun tanpa sebab yang diketahui?\"\n }\n ],\n \"linkId\": \"1\",\n \"text\": \"Batuk\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-07-11T08:20:02.812483+00:00\",\n \"versionId\": \"MTY4OTA2MzYwMjgxMjQ4MzAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0008\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n }\n}"
}
]
},
{
"name": "QuestionnaireResponse - Batuk",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0008\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-07-04T08:55:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Batuk\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah memiliki riwayat demam?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah berkeringat pada malam hari walaupun tanpa aktivitas?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah memiliki riwayat berpergian dari daerah wabah?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah memiliki riwayat pemakaian obat jangka panjang?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"1.5\",\n \"text\": \"Apakah memiliki riwayat BB turun tanpa sebab yang diketahui?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"response": [
{
"name": "QuestionnaireResponse - Batuk",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0008\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-07-04T08:55:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"1\",\n \"text\": \"Batuk\",\n \"item\": [\n {\n \"linkId\": \"1.1\",\n \"text\": \"Apakah memiliki riwayat demam?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"1.2\",\n \"text\": \"Apakah berkeringat pada malam hari walaupun tanpa aktivitas?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"1.3\",\n \"text\": \"Apakah memiliki riwayat berpergian dari daerah wabah?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"1.4\",\n \"text\": \"Apakah memiliki riwayat pemakaian obat jangka panjang?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"1.5\",\n \"text\": \"Apakah memiliki riwayat BB turun tanpa sebab yang diketahui?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTY4OTA2MzYwMjgxMjQ4MzAwMA\""
},
{
"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/QuestionnaireResponse/cf13594a-7e16-4c69-a75a-0f0da031ded5/_history/MTY4OTA2MzYwMjgxMjQ4MzAwMA"
},
{
"key": "last-modified",
"value": "Tue, 11 Jul 2023 08:20:02 UTC"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Tue, 11 Jul 2023 08:20:02 GMT"
},
{
"key": "content-length",
"value": "1261"
},
{
"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": "81e110cf-36a6-41d3-ab8d-9cb975c3e8fe"
},
{
"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 \"reference\": \"Practitioner/N10000001\"\n },\n \"authored\": \"2023-07-04T08:55:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"cf13594a-7e16-4c69-a75a-0f0da031ded5\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/creator\",\n \"value\": \"10000004\"\n },\n \"item\": [\n {\n \"item\": [\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"1.1\",\n \"text\": \"Apakah memiliki riwayat demam?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"1.2\",\n \"text\": \"Apakah berkeringat pada malam hari walaupun tanpa aktivitas?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"1.3\",\n \"text\": \"Apakah memiliki riwayat berpergian dari daerah wabah?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ],\n \"linkId\": \"1.4\",\n \"text\": \"Apakah memiliki riwayat pemakaian obat jangka panjang?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"1.5\",\n \"text\": \"Apakah memiliki riwayat BB turun tanpa sebab yang diketahui?\"\n }\n ],\n \"linkId\": \"1\",\n \"text\": \"Batuk\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-07-11T08:20:02.812483+00:00\",\n \"versionId\": \"MTY4OTA2MzYwMjgxMjQ4MzAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0008\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n }\n}"
}
]
}
]
},
{
"name": "Gizi",
"item": [
{
"name": "QuestionnaireResponse - Gizi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0008\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-07-04T08:55:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"2\",\n \"text\": \"Gizi\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah ada penurunan BB dalam waktu 6 bulan terakhir?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah ada penurunan asupan makanan karena nafsu makan berkurang?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah mengalami gejala gastrointestinal (seperti mual, muntah, diare, anorexia)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah memiliki faktor pemberat (komorbid)?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"2.5\",\n \"text\": \"Apakah ada penurunan kapasitas fungsional?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"response": [
{
"name": "QuestionnaireResponse - Gizi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0008\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-07-04T08:55:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"2\",\n \"text\": \"Gizi\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah ada penurunan BB dalam waktu 6 bulan terakhir?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah ada penurunan asupan makanan karena nafsu makan berkurang?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah mengalami gejala gastrointestinal (seperti mual, muntah, diare, anorexia)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah memiliki faktor pemberat (komorbid)?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"2.5\",\n \"text\": \"Apakah ada penurunan kapasitas fungsional?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY4OTA2MzYxMTk1MDc4MTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 11 Jul 2023 08:20:11 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/0e2485a8-591a-4c54-ab01-ce3053643e1e/_history/MTY4OTA2MzYxMTk1MDc4MTAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Tue, 11 Jul 2023 08:20:11 GMT"
},
{
"key": "content-length",
"value": "1288"
},
{
"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": "d0bb02d5-db32-45c2-80f8-5e0c1335b8c7"
},
{
"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 \"reference\": \"Practitioner/N10000001\"\n },\n \"authored\": \"2023-07-04T08:55:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"0e2485a8-591a-4c54-ab01-ce3053643e1e\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/creator\",\n \"value\": \"10000004\"\n },\n \"item\": [\n {\n \"item\": [\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"2.1\",\n \"text\": \"Apakah ada penurunan BB dalam waktu 6 bulan terakhir?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"2.2\",\n \"text\": \"Apakah ada penurunan asupan makanan karena nafsu makan berkurang?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"2.3\",\n \"text\": \"Apakah mengalami gejala gastrointestinal (seperti mual, muntah, diare, anorexia)?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ],\n \"linkId\": \"2.4\",\n \"text\": \"Apakah memiliki faktor pemberat (komorbid)?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"2.5\",\n \"text\": \"Apakah ada penurunan kapasitas fungsional?\"\n }\n ],\n \"linkId\": \"2\",\n \"text\": \"Gizi\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-07-11T08:20:11.950781+00:00\",\n \"versionId\": \"MTY4OTA2MzYxMTk1MDc4MTAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0008\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n }\n}"
}
]
},
{
"name": "QuestionnaireResponse - Gizi",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0008\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-07-04T08:55:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"2\",\n \"text\": \"Gizi\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah ada penurunan BB dalam waktu 6 bulan terakhir?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah ada penurunan asupan makanan karena nafsu makan berkurang?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah mengalami gejala gastrointestinal (seperti mual, muntah, diare, anorexia)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah memiliki faktor pemberat (komorbid)?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"2.5\",\n \"text\": \"Apakah ada penurunan kapasitas fungsional?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"response": [
{
"name": "QuestionnaireResponse - Gizi",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"QuestionnaireResponse\",\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0008\",\n \"status\": \"completed\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"authored\": \"2023-07-04T08:55:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n },\n \"source\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"item\": [\n {\n \"linkId\": \"2\",\n \"text\": \"Gizi\",\n \"item\": [\n {\n \"linkId\": \"2.1\",\n \"text\": \"Apakah ada penurunan BB dalam waktu 6 bulan terakhir?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"2.2\",\n \"text\": \"Apakah ada penurunan asupan makanan karena nafsu makan berkurang?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"2.3\",\n \"text\": \"Apakah mengalami gejala gastrointestinal (seperti mual, muntah, diare, anorexia)?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n },\n {\n \"linkId\": \"2.4\",\n \"text\": \"Apakah memiliki faktor pemberat (komorbid)?\",\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ]\n },\n {\n \"linkId\": \"2.5\",\n \"text\": \"Apakah ada penurunan kapasitas fungsional?\",\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ]\n }\n ]\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/QuestionnaireResponse",
"host": [
"{{base_url}}"
],
"path": [
"QuestionnaireResponse"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY4OTA2MzYxMTk1MDc4MTAwMA\""
},
{
"key": "last-modified",
"value": "Tue, 11 Jul 2023 08:20:11 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/0e2485a8-591a-4c54-ab01-ce3053643e1e/_history/MTY4OTA2MzYxMTk1MDc4MTAwMA"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Tue, 11 Jul 2023 08:20:11 GMT"
},
{
"key": "content-length",
"value": "1288"
},
{
"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": "d0bb02d5-db32-45c2-80f8-5e0c1335b8c7"
},
{
"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 \"reference\": \"Practitioner/N10000001\"\n },\n \"authored\": \"2023-07-04T08:55:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"0e2485a8-591a-4c54-ab01-ce3053643e1e\",\n \"identifier\": {\n \"system\": \"http://sys-ids.kemkes.go.id/creator\",\n \"value\": \"10000004\"\n },\n \"item\": [\n {\n \"item\": [\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"2.1\",\n \"text\": \"Apakah ada penurunan BB dalam waktu 6 bulan terakhir?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"2.2\",\n \"text\": \"Apakah ada penurunan asupan makanan karena nafsu makan berkurang?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"2.3\",\n \"text\": \"Apakah mengalami gejala gastrointestinal (seperti mual, muntah, diare, anorexia)?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": true\n }\n ],\n \"linkId\": \"2.4\",\n \"text\": \"Apakah memiliki faktor pemberat (komorbid)?\"\n },\n {\n \"answer\": [\n {\n \"valueBoolean\": false\n }\n ],\n \"linkId\": \"2.5\",\n \"text\": \"Apakah ada penurunan kapasitas fungsional?\"\n }\n ],\n \"linkId\": \"2\",\n \"text\": \"Gizi\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2023-07-11T08:20:11.950781+00:00\",\n \"versionId\": \"MTY4OTA2MzYxMTk1MDc4MTAwMA\"\n },\n \"questionnaire\": \"https://fhir.kemkes.go.id/Questionnaire/Q0008\",\n \"resourceType\": \"QuestionnaireResponse\",\n \"source\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"status\": \"completed\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "07. Pemeriksaan Psikologis",
"item": [
{
"name": "Status Psikologis",
"item": [
{
"name": "Observation - Status Psikologis",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8693-4\",\n \"display\": \"Mental Status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:33:00+00:00\",\n \"issued\": \"2024-03-18T00:33:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Status Psikologis",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8693-4\",\n \"display\": \"Mental Status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:33:00+00:00\",\n \"issued\": \"2024-03-18T00:33:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/d247377f-e0be-4ab2-9798-b9a213930ddc/_history/MTcxNTY1NDc2ODM0MjkxNTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:46:08 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDc2ODM0MjkxNTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:46:08 GMT"
},
{
"key": "content-length",
"value": "809"
},
{
"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": "1a49914c-1f6a-4e9b-8faf-bf576d69dec1"
},
{
"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\": \"8693-4\",\n \"display\": \"Mental Status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:33:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0\"\n },\n \"id\": \"d247377f-e0be-4ab2-9798-b9a213930ddc\",\n \"identifier\": [],\n \"issued\": \"2024-03-18T00:33:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:46:08.342915+00:00\",\n \"versionId\": \"MTcxNTY1NDc2ODM0MjkxNTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Status Psikologis",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8693-4\",\n \"display\": \"Mental Status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:33:00+00:00\",\n \"issued\": \"2024-03-18T00:33:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Status Psikologis",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"survey\",\n \"display\": \"Survey\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8693-4\",\n \"display\": \"Mental Status\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:33:00+00:00\",\n \"issued\": \"2024-03-18T00:33:00+00:00\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\"\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/d247377f-e0be-4ab2-9798-b9a213930ddc/_history/MTcxNTY1NDc2ODM0MjkxNTAwMA"
},
{
"key": "last-modified",
"value": "Tue, 14 May 2024 02:46:08 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxNTY1NDc2ODM0MjkxNTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Tue, 14 May 2024 02:46:08 GMT"
},
{
"key": "content-length",
"value": "809"
},
{
"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": "1a49914c-1f6a-4e9b-8faf-bf576d69dec1"
},
{
"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\": \"8693-4\",\n \"display\": \"Mental Status\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:33:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/cc62f6cb-acf4-4eb4-b1d8-a848a81f42e0\"\n },\n \"id\": \"d247377f-e0be-4ab2-9798-b9a213930ddc\",\n \"identifier\": [],\n \"issued\": \"2024-03-18T00:33:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-05-14T02:46:08.342915+00:00\",\n \"versionId\": \"MTcxNTY1NDc2ODM0MjkxNTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"48694002\",\n \"display\": \"Feeling anxious\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
}
]
},
{
"name": "08. Rencana Rawat & Instruksi Medik dan Keperawatan",
"item": [
{
"name": "Rencana Rawat",
"item": [
{
"name": "CarePlan - Rencana Rawat",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"CarePlan\",\n \"title\": \"Rencana Rawat\",\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"702779007\",\n \"display\": \"Emergency health care plan agreed\"\n }\n ]\n }\n ],\n \"intent\": \"plan\",\n \"description\": \"Pasien akan melakukan pengecekan darah lengkap, USG kehamilan, tindakan caesar emergensi, dan rencana lama waktu rawat 5 hari\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"created\": \"2023-07-04T09:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/CarePlan",
"host": [
"{{base_url}}"
],
"path": [
"CarePlan"
]
}
},
"response": [
{
"name": "CarePlan - Rencana Rawat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"CarePlan\",\n \"title\": \"Rencana Rawat\",\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"702779007\",\n \"display\": \"Emergency health care plan agreed\"\n }\n ]\n }\n ],\n \"intent\": \"plan\",\n \"description\": \"Pasien akan melakukan pengecekan darah lengkap, USG kehamilan, tindakan caesar emergensi, dan rencana lama waktu rawat 5 hari\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"created\": \"2023-07-04T09:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/CarePlan",
"host": [
"{{base_url}}"
],
"path": [
"CarePlan"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Fri, 03 Nov 2023 06:29: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/CarePlan/6a164cee-cfb9-49d8-821b-f8b5f1657b22/_history/MTY5ODk5Mjk4MzcyMDE0MTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5ODk5Mjk4MzcyMDE0MTAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 03 Nov 2023 06:29:43 GMT"
},
{
"key": "content-length",
"value": "745"
},
{
"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": "a078d5ac-9bd9-4466-a68c-f8d541358215"
},
{
"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 \"reference\": \"Practitioner/N10000001\"\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"702779007\",\n \"display\": \"Emergency health care plan agreed\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"created\": \"2023-07-04T09:00:00+00:00\",\n \"description\": \"Pasien akan melakukan pengecekan darah lengkap, USG kehamilan, tindakan caesar emergensi, dan rencana lama waktu rawat 5 hari\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"6a164cee-cfb9-49d8-821b-f8b5f1657b22\",\n \"identifier\": [],\n \"intent\": \"plan\",\n \"meta\": {\n \"lastUpdated\": \"2023-11-03T06:29:43.720141+00:00\",\n \"versionId\": \"MTY5ODk5Mjk4MzcyMDE0MTAwMA\"\n },\n \"resourceType\": \"CarePlan\",\n \"status\": \"active\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"title\": \"Rencana Rawat\"\n}"
}
]
},
{
"name": "CarePlan - Rencana Rawat",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"CarePlan\",\n \"title\": \"Rencana Rawat\",\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"702779007\",\n \"display\": \"Emergency health care plan agreed\"\n }\n ]\n }\n ],\n \"intent\": \"plan\",\n \"description\": \"Pasien akan melakukan pengecekan darah lengkap, USG kehamilan, tindakan caesar emergensi, dan rencana lama waktu rawat 5 hari\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"created\": \"2023-07-04T09:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/CarePlan",
"host": [
"{{base_url}}"
],
"path": [
"CarePlan"
]
}
},
"response": [
{
"name": "CarePlan - Rencana Rawat",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"CarePlan\",\n \"title\": \"Rencana Rawat\",\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"702779007\",\n \"display\": \"Emergency health care plan agreed\"\n }\n ]\n }\n ],\n \"intent\": \"plan\",\n \"description\": \"Pasien akan melakukan pengecekan darah lengkap, USG kehamilan, tindakan caesar emergensi, dan rencana lama waktu rawat 5 hari\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"created\": \"2023-07-04T09:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/CarePlan",
"host": [
"{{base_url}}"
],
"path": [
"CarePlan"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Fri, 03 Nov 2023 06:29: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/CarePlan/6a164cee-cfb9-49d8-821b-f8b5f1657b22/_history/MTY5ODk5Mjk4MzcyMDE0MTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTY5ODk5Mjk4MzcyMDE0MTAwMA\""
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Fri, 03 Nov 2023 06:29:43 GMT"
},
{
"key": "content-length",
"value": "745"
},
{
"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": "a078d5ac-9bd9-4466-a68c-f8d541358215"
},
{
"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 \"reference\": \"Practitioner/N10000001\"\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"702779007\",\n \"display\": \"Emergency health care plan agreed\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"created\": \"2023-07-04T09:00:00+00:00\",\n \"description\": \"Pasien akan melakukan pengecekan darah lengkap, USG kehamilan, tindakan caesar emergensi, dan rencana lama waktu rawat 5 hari\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"6a164cee-cfb9-49d8-821b-f8b5f1657b22\",\n \"identifier\": [],\n \"intent\": \"plan\",\n \"meta\": {\n \"lastUpdated\": \"2023-11-03T06:29:43.720141+00:00\",\n \"versionId\": \"MTY5ODk5Mjk4MzcyMDE0MTAwMA\"\n },\n \"resourceType\": \"CarePlan\",\n \"status\": \"active\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"title\": \"Rencana Rawat\"\n}"
}
]
}
]
},
{
"name": "Instruksi Medik dan Keperawatan",
"item": [
{
"name": "CarePlan - Instruksi Medik dan Keperawatan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"CarePlan\",\n \"title\": \"Instruksi Medik dan Keperawatan\",\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"702779007\",\n \"display\": \"Emergency health care plan agreed\"\n }\n ]\n }\n ],\n \"intent\": \"plan\",\n \"description\": \"Penanganan operasi caesar emergensi segera dilakukan baik dengan atau tanpa laparotomi eksplorasi. Anastesi endotrakeal, kontraindikasi anastesi neuraksial.Jalur intravena harus dipasang, darah harus dipesan dan dibawa ke ruang operasi.\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"created\": \"2023-07-04T09:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/CarePlan",
"host": [
"{{base_url}}"
],
"path": [
"CarePlan"
]
}
},
"response": [
{
"name": "CarePlan - Instruksi Medik dan Keperawatan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"CarePlan\",\n \"title\": \"Instruksi Medik dan Keperawatan\",\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"702779007\",\n \"display\": \"Emergency health care plan agreed\"\n }\n ]\n }\n ],\n \"intent\": \"plan\",\n \"description\": \"Penanganan operasi caesar emergensi segera dilakukan baik dengan atau tanpa laparotomi eksplorasi. Anastesi endotrakeal, kontraindikasi anastesi neuraksial.Jalur intravena harus dipasang, darah harus dipesan dan dibawa ke ruang operasi.\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"created\": \"2023-07-04T09:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/CarePlan",
"host": [
"{{base_url}}"
],
"path": [
"CarePlan"
]
}
},
"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/CarePlan/e9126b63-298a-4fa8-a51f-7c8c28c635fa/_history/MTY5ODE2ODY0Mzc2MzgyNDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 24 Oct 2023 17:30:43 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5ODE2ODY0Mzc2MzgyNDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Tue, 24 Oct 2023 17:30:43 GMT"
},
{
"key": "content-length",
"value": "881"
},
{
"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": "c8f1f2d7-098d-4368-b9b6-c51a88d0c4c4"
},
{
"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 \"reference\": \"Practitioner/N10000001\"\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"702779007\",\n \"display\": \"Emergency health care plan agreed\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"created\": \"2023-07-04T09:00:00+00:00\",\n \"description\": \"Penanganan operasi caesar emergensi segera dilakukan baik dengan atau tanpa laparotomi eksplorasi. Anastesi endotrakeal, kontraindikasi anastesi neuraksial.Jalur intravena harus dipasang, darah harus dipesan dan dibawa ke ruang operasi.\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"e9126b63-298a-4fa8-a51f-7c8c28c635fa\",\n \"identifier\": [],\n \"intent\": \"plan\",\n \"meta\": {\n \"lastUpdated\": \"2023-10-24T17:30:43.763824+00:00\",\n \"versionId\": \"MTY5ODE2ODY0Mzc2MzgyNDAwMA\"\n },\n \"resourceType\": \"CarePlan\",\n \"status\": \"active\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"title\": \"Instruksi Medik dan Keperawatan\"\n}"
}
]
},
{
"name": "CarePlan - Instruksi Medik dan Keperawatan",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"CarePlan\",\n \"title\": \"Instruksi Medik dan Keperawatan\",\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"702779007\",\n \"display\": \"Emergency health care plan agreed\"\n }\n ]\n }\n ],\n \"intent\": \"plan\",\n \"description\": \"Penanganan operasi caesar emergensi segera dilakukan baik dengan atau tanpa laparotomi eksplorasi. Anastesi endotrakeal, kontraindikasi anastesi neuraksial.Jalur intravena harus dipasang, darah harus dipesan dan dibawa ke ruang operasi.\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"created\": \"2023-07-04T09:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/CarePlan",
"host": [
"{{base_url}}"
],
"path": [
"CarePlan"
]
}
},
"response": [
{
"name": "CarePlan - Instruksi Medik dan Keperawatan",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"resourceType\": \"CarePlan\",\n \"title\": \"Instruksi Medik dan Keperawatan\",\n \"status\": \"active\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"702779007\",\n \"display\": \"Emergency health care plan agreed\"\n }\n ]\n }\n ],\n \"intent\": \"plan\",\n \"description\": \"Penanganan operasi caesar emergensi segera dilakukan baik dengan atau tanpa laparotomi eksplorasi. Anastesi endotrakeal, kontraindikasi anastesi neuraksial.Jalur intravena harus dipasang, darah harus dipesan dan dibawa ke ruang operasi.\",\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Diana Smith\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"created\": \"2023-07-04T09:00:00+00:00\",\n \"author\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/CarePlan",
"host": [
"{{base_url}}"
],
"path": [
"CarePlan"
]
}
},
"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/CarePlan/e9126b63-298a-4fa8-a51f-7c8c28c635fa/_history/MTY5ODE2ODY0Mzc2MzgyNDAwMA"
},
{
"key": "last-modified",
"value": "Tue, 24 Oct 2023 17:30:43 UTC"
},
{
"key": "etag",
"value": "W/\"MTY5ODE2ODY0Mzc2MzgyNDAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "vary",
"value": "X-Origin"
},
{
"key": "vary",
"value": "Referer"
},
{
"key": "date",
"value": "Tue, 24 Oct 2023 17:30:43 GMT"
},
{
"key": "content-length",
"value": "881"
},
{
"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": "c8f1f2d7-098d-4368-b9b6-c51a88d0c4c4"
},
{
"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 \"reference\": \"Practitioner/N10000001\"\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"702779007\",\n \"display\": \"Emergency health care plan agreed\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"created\": \"2023-07-04T09:00:00+00:00\",\n \"description\": \"Penanganan operasi caesar emergensi segera dilakukan baik dengan atau tanpa laparotomi eksplorasi. Anastesi endotrakeal, kontraindikasi anastesi neuraksial.Jalur intravena harus dipasang, darah harus dipesan dan dibawa ke ruang operasi.\",\n \"encounter\": {\n \"reference\": \"Encounter/fb4d1631-ed66-4a89-a9de-0f6c7e66b957\"\n },\n \"id\": \"e9126b63-298a-4fa8-a51f-7c8c28c635fa\",\n \"identifier\": [],\n \"intent\": \"plan\",\n \"meta\": {\n \"lastUpdated\": \"2023-10-24T17:30:43.763824+00:00\",\n \"versionId\": \"MTY5ODE2ODY0Mzc2MzgyNDAwMA\"\n },\n \"resourceType\": \"CarePlan\",\n \"status\": \"active\",\n \"subject\": {\n \"display\": \"Diana Smith\",\n \"reference\": \"Patient/100000030015\"\n },\n \"title\": \"Instruksi Medik dan Keperawatan\"\n}"
}
]
}
]
}
]
},
{
"name": "09. Pemeriksaan Penunjang",
"item": [
{
"name": "Laboratorium",
"item": [
{
"name": "Pemeriksaan Darah Rutin",
"item": [
{
"name": "ServiceRequest - Darah Rutin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"58410-2\",\n \"display\": \"CBC panel - Blood by Automated count\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Darah Rutin Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Darah Rutin",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"58410-2\",\n \"display\": \"CBC panel - Blood by Automated count\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Darah Rutin Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/7cb5fa1c-50f8-4f7d-b021-65bb6bab54d0/_history/MTcxMDk4MTk2NzIwNTA4MzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4MTk2NzIwNTA4MzAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 00:46:07 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 00:46:07 GMT"
},
{
"key": "Content-Length",
"value": "5288"
},
{
"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": "dd642bd1-39b0-479f-abd7-3e1fc1297b89"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"58410-2\",\n \"display\": \"CBC panel - Blood by Automated count\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Darah Rutin Jane Smith di hari Senin, 18 Maret 2024\",\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"7cb5fa1c-50f8-4f7d-b021-65bb6bab54d0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T00:46:07.205083+00:00\",\n \"versionId\": \"MTcxMDk4MTk2NzIwNTA4MzAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy CLone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Darah Rutin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Darah Rutin",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\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/161d2599-aa51-4c2a-b862-409a814e0519/_history/MTcxMDk4MjIzNDM0NjI5MTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4MjIzNDM0NjI5MTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 00:50:34 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 00:50:34 GMT"
},
{
"key": "Content-Length",
"value": "8020"
},
{
"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": "03fef580-cdaf-458d-8f95-4331a579ed78"
},
{
"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\": \"2024-03-18T00:50:00+00:00\",\n \"collector\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"161d2599-aa51-4c2a-b862-409a814e0519\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000002\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000002\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T00:50:34.346291+00:00\",\n \"versionId\": \"MTcxMDk4MjIzNDM0NjI5MTAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/7cb5fa1c-50f8-4f7d-b021-65bb6bab54d0\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Hemoglobin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"718-7\",\n \"display\": \"Hemoglobin [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/{{Observation_Leukosit}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 8,\n \"unit\": \"g/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Hemoglobin",
"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\": \"O000001\"\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\": \"718-7\",\n \"display\": \"Hemoglobin [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/{{Observation_Leukosit}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 8,\n \"unit\": \"g/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/dL\"\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": "etag",
"value": "W/\"MTcxMDk4Mjc3NDY1MjIwODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 00:59:34 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/1b208978-704c-4c84-9563-4458dc5f0198/_history/MTcxMDk4Mjc3NDY1MjIwODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 00:59:34 GMT"
},
{
"key": "Content-Length",
"value": "5284"
},
{
"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": "eacabf04-4169-498e-a62d-88946501f669"
},
{
"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/7cb5fa1c-50f8-4f7d-b021-65bb6bab54d0\"\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\": \"718-7\",\n \"display\": \"Hemoglobin [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"1b208978-704c-4c84-9563-4458dc5f0198\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T00:59:34.652208+00:00\",\n \"versionId\": \"MTcxMDk4Mjc3NDY1MjIwODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/161d2599-aa51-4c2a-b862-409a814e0519\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"g/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"g/dl\",\n \"value\": 8\n }\n}"
}
]
},
{
"name": "Observation - Hematokrit",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"4544-3\",\n \"display\": \"Hematocrit [Volume Fraction] of Blood by Automated count\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/{{Observation_Leukosit}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 25,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Hematokrit",
"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\": \"O000001\"\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\": \"4544-3\",\n \"display\": \"Hematocrit [Volume Fraction] of Blood by Automated count\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/{{Observation_Leukosit}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 25,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\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": "etag",
"value": "W/\"MTcxMDk4MjkwMDkzNzc0NTAwMA\""
},
{
"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/7b181e8c-ea5e-49ba-bb99-9ac6c3c9985b/_history/MTcxMDk4MjkwMDkzNzc0NTAwMA"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:01:40 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:01:40 GMT"
},
{
"key": "Content-Length",
"value": "5360"
},
{
"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": "a36913c7-08b4-4eda-b10a-ba479581ea42"
},
{
"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/7cb5fa1c-50f8-4f7d-b021-65bb6bab54d0\"\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\": \"4544-3\",\n \"display\": \"Hematocrit [Volume Fraction] of Blood by Automated count\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"7b181e8c-ea5e-49ba-bb99-9ac6c3c9985b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:01:40.937745+00:00\",\n \"versionId\": \"MTcxMDk4MjkwMDkzNzc0NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/161d2599-aa51-4c2a-b862-409a814e0519\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"%\",\n \"value\": 25\n }\n}"
}
]
},
{
"name": "Observation - Leukosit",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"6690-2\",\n \"display\": \"Leukocytes [#/volume] in Blood by Automated count\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/{{Observation_Leukosit}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 15000,\n \"unit\": \"10*3/uL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*3/uL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Leukosit",
"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\": \"O000001\"\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\": \"6690-2\",\n \"display\": \"Leukocytes [#/volume] in Blood by Automated count\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/{{Observation_Leukosit}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 15000,\n \"unit\": \"10*3/uL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*3/uL\"\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": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:03:42 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/6f319dcb-cadc-4a9e-a542-c9b44a57bbf3/_history/MTcxMDk4MzAyMjAyNTAzNTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4MzAyMjAyNTAzNTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:03:42 GMT"
},
{
"key": "Content-Length",
"value": "5392"
},
{
"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": "42b7803a-50f9-4218-8fc0-851879f40b49"
},
{
"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/7cb5fa1c-50f8-4f7d-b021-65bb6bab54d0\"\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\": \"6690-2\",\n \"display\": \"Leukocytes [#/volume] in Blood by Automated count\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"6f319dcb-cadc-4a9e-a542-c9b44a57bbf3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:03:42.025035+00:00\",\n \"versionId\": \"MTcxMDk4MzAyMjAyNTAzNTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/161d2599-aa51-4c2a-b862-409a814e0519\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"10*3/uL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"10*3/uL\",\n \"value\": 15000\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Darah Rutin",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"HM\",\n \"display\": \"Hematology\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"58410-2\",\n \"display\": \"CBC panel - Blood by Automated count\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_Hemoglobin}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_Hematokrit}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_Leukosit}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_Leukosit}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan darah rutin menunjukkan peningkatan jumlah leukosit (reaksi peradangan) dan penurunan hematokrit dan hemoglobin (terkait dengan perdarahan internal).\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Darah Rutin",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"HM\",\n \"display\": \"Hematology\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"58410-2\",\n \"display\": \"CBC panel - Blood by Automated count\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_Hemoglobin}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_Hematokrit}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_Leukosit}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_Leukosit}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan darah rutin menunjukkan peningkatan jumlah leukosit (reaksi peradangan) dan penurunan hematokrit dan hemoglobin (terkait dengan perdarahan internal).\"\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, 21 Mar 2024 01:11:28 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/DiagnosticReport/6189397c-4b25-45c8-8ce1-f186fc86c057/_history/MTcxMDk4MzQ4ODQzNzkxNDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4MzQ4ODQzNzkxNDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:11:28 GMT"
},
{
"key": "Content-Length",
"value": "6698"
},
{
"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": "4d54b137-7b27-4b78-8443-516800dff731"
},
{
"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/7cb5fa1c-50f8-4f7d-b021-65bb6bab54d0\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"HM\",\n \"display\": \"Hematology\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"58410-2\",\n \"display\": \"CBC panel - Blood by Automated count\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"conclusion\": \"Hasil pemeriksaan darah rutin menunjukkan peningkatan jumlah leukosit (reaksi peradangan) dan penurunan hematokrit dan hemoglobin (terkait dengan perdarahan internal).\",\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"6189397c-4b25-45c8-8ce1-f186fc86c057\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:11:28.437914+00:00\",\n \"versionId\": \"MTcxMDk4MzQ4ODQzNzkxNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/1b208978-704c-4c84-9563-4458dc5f0198\"\n },\n {\n \"reference\": \"Observation/7b181e8c-ea5e-49ba-bb99-9ac6c3c9985b\"\n },\n {\n \"reference\": \"Observation/6f319dcb-cadc-4a9e-a542-c9b44a57bbf3\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/161d2599-aa51-4c2a-b862-409a814e0519\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Darah Rutin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"58410-2\",\n \"display\": \"CBC panel - Blood by Automated count\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Darah Rutin Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Darah Rutin",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"58410-2\",\n \"display\": \"CBC panel - Blood by Automated count\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Darah Rutin Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/7cb5fa1c-50f8-4f7d-b021-65bb6bab54d0/_history/MTcxMDk4MTk2NzIwNTA4MzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4MTk2NzIwNTA4MzAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 00:46:07 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 00:46:07 GMT"
},
{
"key": "Content-Length",
"value": "5288"
},
{
"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": "dd642bd1-39b0-479f-abd7-3e1fc1297b89"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"58410-2\",\n \"display\": \"CBC panel - Blood by Automated count\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Darah Rutin Jane Smith di hari Senin, 18 Maret 2024\",\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"7cb5fa1c-50f8-4f7d-b021-65bb6bab54d0\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T00:46:07.205083+00:00\",\n \"versionId\": \"MTcxMDk4MTk2NzIwNTA4MzAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy CLone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Darah Rutin",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"HM\",\n \"display\": \"Hematology\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"58410-2\",\n \"display\": \"CBC panel - Blood by Automated count\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_Hemoglobin}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_Hematokrit}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_Leukosit}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_Leukosit}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan darah rutin menunjukkan peningkatan jumlah leukosit (reaksi peradangan) dan penurunan hematokrit dan hemoglobin (terkait dengan perdarahan internal).\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Darah Rutin",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"HM\",\n \"display\": \"Hematology\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"58410-2\",\n \"display\": \"CBC panel - Blood by Automated count\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_Hemoglobin}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_Hematokrit}}\"\n },\n {\n \"reference\": \"Observation/{{Observation_Leukosit}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_Leukosit}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan darah rutin menunjukkan peningkatan jumlah leukosit (reaksi peradangan) dan penurunan hematokrit dan hemoglobin (terkait dengan perdarahan internal).\"\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, 21 Mar 2024 01:11:28 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/DiagnosticReport/6189397c-4b25-45c8-8ce1-f186fc86c057/_history/MTcxMDk4MzQ4ODQzNzkxNDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4MzQ4ODQzNzkxNDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:11:28 GMT"
},
{
"key": "Content-Length",
"value": "6698"
},
{
"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": "4d54b137-7b27-4b78-8443-516800dff731"
},
{
"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/7cb5fa1c-50f8-4f7d-b021-65bb6bab54d0\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"HM\",\n \"display\": \"Hematology\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"58410-2\",\n \"display\": \"CBC panel - Blood by Automated count\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"conclusion\": \"Hasil pemeriksaan darah rutin menunjukkan peningkatan jumlah leukosit (reaksi peradangan) dan penurunan hematokrit dan hemoglobin (terkait dengan perdarahan internal).\",\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"6189397c-4b25-45c8-8ce1-f186fc86c057\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:11:28.437914+00:00\",\n \"versionId\": \"MTcxMDk4MzQ4ODQzNzkxNDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/1b208978-704c-4c84-9563-4458dc5f0198\"\n },\n {\n \"reference\": \"Observation/7b181e8c-ea5e-49ba-bb99-9ac6c3c9985b\"\n },\n {\n \"reference\": \"Observation/6f319dcb-cadc-4a9e-a542-c9b44a57bbf3\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/161d2599-aa51-4c2a-b862-409a814e0519\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Hemoglobin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"718-7\",\n \"display\": \"Hemoglobin [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/{{Observation_Leukosit}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 8,\n \"unit\": \"g/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Hemoglobin",
"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\": \"O000001\"\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\": \"718-7\",\n \"display\": \"Hemoglobin [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/{{Observation_Leukosit}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 8,\n \"unit\": \"g/dl\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"g/dL\"\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": "etag",
"value": "W/\"MTcxMDk4Mjc3NDY1MjIwODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 00:59:34 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/1b208978-704c-4c84-9563-4458dc5f0198/_history/MTcxMDk4Mjc3NDY1MjIwODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 00:59:34 GMT"
},
{
"key": "Content-Length",
"value": "5284"
},
{
"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": "eacabf04-4169-498e-a62d-88946501f669"
},
{
"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/7cb5fa1c-50f8-4f7d-b021-65bb6bab54d0\"\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\": \"718-7\",\n \"display\": \"Hemoglobin [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"1b208978-704c-4c84-9563-4458dc5f0198\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T00:59:34.652208+00:00\",\n \"versionId\": \"MTcxMDk4Mjc3NDY1MjIwODAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/161d2599-aa51-4c2a-b862-409a814e0519\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"g/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"g/dl\",\n \"value\": 8\n }\n}"
}
]
},
{
"name": "Observation - Leukosit",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"6690-2\",\n \"display\": \"Leukocytes [#/volume] in Blood by Automated count\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/{{Observation_Leukosit}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 15000,\n \"unit\": \"10*3/uL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*3/uL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Leukosit",
"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\": \"O000001\"\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\": \"6690-2\",\n \"display\": \"Leukocytes [#/volume] in Blood by Automated count\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/{{Observation_Leukosit}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 15000,\n \"unit\": \"10*3/uL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"10*3/uL\"\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": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:03:42 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/6f319dcb-cadc-4a9e-a542-c9b44a57bbf3/_history/MTcxMDk4MzAyMjAyNTAzNTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4MzAyMjAyNTAzNTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:03:42 GMT"
},
{
"key": "Content-Length",
"value": "5392"
},
{
"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": "42b7803a-50f9-4218-8fc0-851879f40b49"
},
{
"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/7cb5fa1c-50f8-4f7d-b021-65bb6bab54d0\"\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\": \"6690-2\",\n \"display\": \"Leukocytes [#/volume] in Blood by Automated count\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"6f319dcb-cadc-4a9e-a542-c9b44a57bbf3\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:03:42.025035+00:00\",\n \"versionId\": \"MTcxMDk4MzAyMjAyNTAzNTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/161d2599-aa51-4c2a-b862-409a814e0519\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"10*3/uL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"10*3/uL\",\n \"value\": 15000\n }\n}"
}
]
},
{
"name": "Observation - Hematokrit",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"4544-3\",\n \"display\": \"Hematocrit [Volume Fraction] of Blood by Automated count\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/{{Observation_Leukosit}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 25,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Hematokrit",
"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\": \"O000001\"\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\": \"4544-3\",\n \"display\": \"Hematocrit [Volume Fraction] of Blood by Automated count\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/{{Observation_Leukosit}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 25,\n \"unit\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"%\"\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": "etag",
"value": "W/\"MTcxMDk4MjkwMDkzNzc0NTAwMA\""
},
{
"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/7b181e8c-ea5e-49ba-bb99-9ac6c3c9985b/_history/MTcxMDk4MjkwMDkzNzc0NTAwMA"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:01:40 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:01:40 GMT"
},
{
"key": "Content-Length",
"value": "5360"
},
{
"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": "a36913c7-08b4-4eda-b10a-ba479581ea42"
},
{
"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/7cb5fa1c-50f8-4f7d-b021-65bb6bab54d0\"\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\": \"4544-3\",\n \"display\": \"Hematocrit [Volume Fraction] of Blood by Automated count\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"7b181e8c-ea5e-49ba-bb99-9ac6c3c9985b\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:01:40.937745+00:00\",\n \"versionId\": \"MTcxMDk4MjkwMDkzNzc0NTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/161d2599-aa51-4c2a-b862-409a814e0519\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"%\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"%\",\n \"value\": 25\n }\n}"
}
]
},
{
"name": "Specimen - Darah Rutin",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Darah Rutin",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_DarahRutin}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\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/161d2599-aa51-4c2a-b862-409a814e0519/_history/MTcxMDk4MjIzNDM0NjI5MTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4MjIzNDM0NjI5MTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 00:50:34 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 00:50:34 GMT"
},
{
"key": "Content-Length",
"value": "8020"
},
{
"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": "03fef580-cdaf-458d-8f95-4331a579ed78"
},
{
"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\": \"2024-03-18T00:50:00+00:00\",\n \"collector\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"161d2599-aa51-4c2a-b862-409a814e0519\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000002\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000002\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T00:50:34.346291+00:00\",\n \"versionId\": \"MTcxMDk4MjIzNDM0NjI5MTAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/7cb5fa1c-50f8-4f7d-b021-65bb6bab54d0\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Biomarker Jantung",
"item": [
{
"name": "Pemeriksaan CKMB",
"item": [
{
"name": "ServiceRequest - CKMB",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan CKMB\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan CKMB Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - CKMB",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan CKMB\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan CKMB Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "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/{{ServiceRequest_CKMB}}/_history/MTcxMDk4NDA5NzkwMjE4MTAwMA"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:21:37 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4NDA5NzkwMjE4MTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:21:37 GMT"
},
{
"key": "Content-Length",
"value": "5292"
},
{
"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": "f4e806b4-f606-4475-b542-16253dab27db"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan CKMB\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan CKMB Jane Smith di hari Senin, 18 Maret 2024\",\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"87240e67-582e-4603-bf40-5a668ed9bc73\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:21:37.902181+00:00\",\n \"versionId\": \"MTcxMDk4NDA5NzkwMjE4MTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy CLone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - CKMB",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CKMB}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - CKMB",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CKMB}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk4NDM1MDQyODg0MzAwMA\""
},
{
"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/Specimen/e0a5f350-d392-469a-89c8-6ec053424083/_history/MTcxMDk4NDM1MDQyODg0MzAwMA"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:25:50 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:25:50 GMT"
},
{
"key": "Content-Length",
"value": "8020"
},
{
"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": "09b12815-03a3-4cb3-84b1-df407139733e"
},
{
"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\": \"2024-03-18T00:50:00+00:00\",\n \"collector\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"e0a5f350-d392-469a-89c8-6ec053424083\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000002\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000002\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:25:50.428843+00:00\",\n \"versionId\": \"MTcxMDk4NDM1MDQyODg0MzAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/87240e67-582e-4603-bf40-5a668ed9bc73\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - CKMB",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/e0a5f350-d392-469a-89c8-6ec053424083\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CKMB}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"ng/mL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/mL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - CKMB",
"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\": \"O000001\"\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\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/e0a5f350-d392-469a-89c8-6ec053424083\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CKMB}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"ng/mL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/mL\"\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": "etag",
"value": "W/\"MTcxMDk4NDUxMDU4MjkxNTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/358bba6d-ad59-42ab-a57c-483b6970e9de/_history/MTcxMDk4NDUxMDU4MjkxNTAwMA"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:28:30 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:28:30 GMT"
},
{
"key": "Content-Length",
"value": "5376"
},
{
"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": "3dff0eb3-1bbf-469b-b7ad-a5b59777fbcc"
},
{
"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/87240e67-582e-4603-bf40-5a668ed9bc73\"\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\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"358bba6d-ad59-42ab-a57c-483b6970e9de\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:28:30.582915+00:00\",\n \"versionId\": \"MTcxMDk4NDUxMDU4MjkxNTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/e0a5f350-d392-469a-89c8-6ec053424083\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"ng/mL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"ng/mL\",\n \"value\": 40\n }\n}"
}
]
},
{
"name": "DiagnosticReport - CKMB",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan CKMB\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_CKMB}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_Leukosit}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CKMB}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan CKMB menunjukkan nilai yang tinggi, kemungkinan terjadi setelah adanya onset STEMI \"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - CKMB",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan CKMB\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_CKMB}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_Leukosit}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CKMB}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan CKMB menunjukkan nilai yang tinggi, kemungkinan terjadi setelah adanya onset STEMI \"\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/58e4bd3b-d69f-431d-8469-4ab547c147c2/_history/MTcxMDk4NTQ4NzgyOTExMjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4NTQ4NzgyOTExMjAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:44:47 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:44:47 GMT"
},
{
"key": "Content-Length",
"value": "5898"
},
{
"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": "b169e9c1-65e1-4206-9557-2422a35465a9"
},
{
"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/87240e67-582e-4603-bf40-5a668ed9bc73\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan CKMB\"\n },\n \"conclusion\": \"Hasil pemeriksaan CKMB menunjukkan nilai yang tinggi, kemungkinan terjadi setelah adanya onset STEMI \",\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"58e4bd3b-d69f-431d-8469-4ab547c147c2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:44:47.829112+00:00\",\n \"versionId\": \"MTcxMDk4NTQ4NzgyOTExMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/358bba6d-ad59-42ab-a57c-483b6970e9de\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/161d2599-aa51-4c2a-b862-409a814e0519\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "DiagnosticReport - CKMB",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan CKMB\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_CKMB}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_Leukosit}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CKMB}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan CKMB menunjukkan nilai yang tinggi, kemungkinan terjadi setelah adanya onset STEMI \"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - CKMB",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan CKMB\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_CKMB}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Observation_Leukosit}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CKMB}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan CKMB menunjukkan nilai yang tinggi, kemungkinan terjadi setelah adanya onset STEMI \"\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/58e4bd3b-d69f-431d-8469-4ab547c147c2/_history/MTcxMDk4NTQ4NzgyOTExMjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4NTQ4NzgyOTExMjAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:44:47 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:44:47 GMT"
},
{
"key": "Content-Length",
"value": "5898"
},
{
"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": "b169e9c1-65e1-4206-9557-2422a35465a9"
},
{
"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/87240e67-582e-4603-bf40-5a668ed9bc73\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan CKMB\"\n },\n \"conclusion\": \"Hasil pemeriksaan CKMB menunjukkan nilai yang tinggi, kemungkinan terjadi setelah adanya onset STEMI \",\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"58e4bd3b-d69f-431d-8469-4ab547c147c2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:44:47.829112+00:00\",\n \"versionId\": \"MTcxMDk4NTQ4NzgyOTExMjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/358bba6d-ad59-42ab-a57c-483b6970e9de\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/161d2599-aa51-4c2a-b862-409a814e0519\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - CKMB",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/e0a5f350-d392-469a-89c8-6ec053424083\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CKMB}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"ng/mL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/mL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - CKMB",
"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\": \"O000001\"\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\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/e0a5f350-d392-469a-89c8-6ec053424083\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CKMB}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 40,\n \"unit\": \"ng/mL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/mL\"\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": "etag",
"value": "W/\"MTcxMDk4NDUxMDU4MjkxNTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/358bba6d-ad59-42ab-a57c-483b6970e9de/_history/MTcxMDk4NDUxMDU4MjkxNTAwMA"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:28:30 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:28:30 GMT"
},
{
"key": "Content-Length",
"value": "5376"
},
{
"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": "3dff0eb3-1bbf-469b-b7ad-a5b59777fbcc"
},
{
"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/87240e67-582e-4603-bf40-5a668ed9bc73\"\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\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"358bba6d-ad59-42ab-a57c-483b6970e9de\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:28:30.582915+00:00\",\n \"versionId\": \"MTcxMDk4NDUxMDU4MjkxNTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/e0a5f350-d392-469a-89c8-6ec053424083\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"ng/mL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"ng/mL\",\n \"value\": 40\n }\n}"
}
]
},
{
"name": "Specimen - CKMB",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CKMB}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - CKMB",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_CKMB}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk4NDM1MDQyODg0MzAwMA\""
},
{
"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/Specimen/e0a5f350-d392-469a-89c8-6ec053424083/_history/MTcxMDk4NDM1MDQyODg0MzAwMA"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:25:50 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:25:50 GMT"
},
{
"key": "Content-Length",
"value": "8020"
},
{
"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": "09b12815-03a3-4cb3-84b1-df407139733e"
},
{
"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\": \"2024-03-18T00:50:00+00:00\",\n \"collector\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"e0a5f350-d392-469a-89c8-6ec053424083\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000002\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000002\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:25:50.428843+00:00\",\n \"versionId\": \"MTcxMDk4NDM1MDQyODg0MzAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/87240e67-582e-4603-bf40-5a668ed9bc73\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "ServiceRequest - CKMB",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan CKMB\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan CKMB Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - CKMB",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\"\n }\n ],\n \"text\": \"Pemeriksaan CKMB\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan CKMB Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "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/{{ServiceRequest_CKMB}}/_history/MTcxMDk4NDA5NzkwMjE4MTAwMA"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:21:37 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4NDA5NzkwMjE4MTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:21:37 GMT"
},
{
"key": "Content-Length",
"value": "5292"
},
{
"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": "f4e806b4-f606-4475-b542-16253dab27db"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"13969-1\",\n \"display\": \"Creatine kinase.MB [Mass/volume] in Serum or Plasma\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan CKMB\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan CKMB Jane Smith di hari Senin, 18 Maret 2024\",\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"87240e67-582e-4603-bf40-5a668ed9bc73\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:21:37.902181+00:00\",\n \"versionId\": \"MTcxMDk4NDA5NzkwMjE4MTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy CLone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Troponin I",
"item": [
{
"name": "ServiceRequest - Troponin I",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin I\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Troponin I Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Troponin I",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin I\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Troponin I Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "etag",
"value": "W/\"MTcxMDk4NTAwMjY4NDAxMDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/85aaafb0-69bb-4afa-a60e-4c97cf0300e2/_history/MTcxMDk4NTAwMjY4NDAxMDAwMA"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:36:42 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:36:42 GMT"
},
{
"key": "Content-Length",
"value": "5300"
},
{
"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": "66d44b0b-ac76-4c2f-ad96-2662d5e03ff5"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin I\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Troponin I Jane Smith di hari Senin, 18 Maret 2024\",\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"85aaafb0-69bb-4afa-a60e-4c97cf0300e2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:36:42.684010+00:00\",\n \"versionId\": \"MTcxMDk4NTAwMjY4NDAxMDAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy CLone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Troponin I",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinI}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Troponin I",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinI}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk4NTA5ODc3NTcwNTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:38:18 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/51721b81-02cb-46bc-9f6d-ef2e6a1f10f7/_history/MTcxMDk4NTA5ODc3NTcwNTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:38:18 GMT"
},
{
"key": "Content-Length",
"value": "8020"
},
{
"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": "99fb8bab-5214-49e3-b337-eb779fac71bc"
},
{
"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\": \"2024-03-18T00:50:00+00:00\",\n \"collector\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"51721b81-02cb-46bc-9f6d-ef2e6a1f10f7\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000002\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000002\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:38:18.775705+00:00\",\n \"versionId\": \"MTcxMDk4NTA5ODc3NTcwNTAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/85aaafb0-69bb-4afa-a60e-4c97cf0300e2\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Troponin I",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinI}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinI}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.06,\n \"unit\": \"ng/mL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/mL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Troponin I",
"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\": \"O000001\"\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\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinI}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinI}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.06,\n \"unit\": \"ng/mL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/mL\"\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, 21 Mar 2024 01:42:42 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4NTM2MjI0NzIxMzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/6ba80757-254d-4f99-b926-07503957aaf1/_history/MTcxMDk4NTM2MjI0NzIxMzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:42:42 GMT"
},
{
"key": "Content-Length",
"value": "5344"
},
{
"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": "a7aed61a-7d0d-43db-8192-029357bf4ff4"
},
{
"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/85aaafb0-69bb-4afa-a60e-4c97cf0300e2\"\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\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"6ba80757-254d-4f99-b926-07503957aaf1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:42:42.247213+00:00\",\n \"versionId\": \"MTcxMDk4NTM2MjI0NzIxMzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/51721b81-02cb-46bc-9f6d-ef2e6a1f10f7\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"ng/mL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"ng/mL\",\n \"value\": 0.06\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Troponin I",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinI}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_TroponinI}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinI}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan troponin I termasukdalam kategori tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Troponin I",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinI}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_TroponinI}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinI}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan troponin I termasukdalam kategori tinggi\"\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, 21 Mar 2024 01:47:04 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/DiagnosticReport/d87cc764-01bd-4d6b-bd5b-cb1f1ee6374c/_history/MTcxMDk4NTYyNDQxNDkwNjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4NTYyNDQxNDkwNjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:47:04 GMT"
},
{
"key": "Content-Length",
"value": "5714"
},
{
"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": "81724cf8-4f33-4304-9f75-6d37a8b02b2b"
},
{
"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/85aaafb0-69bb-4afa-a60e-4c97cf0300e2\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"conclusion\": \"Hasil pemeriksaan troponin I termasukdalam kategori tinggi\",\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"d87cc764-01bd-4d6b-bd5b-cb1f1ee6374c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:47:04.414906+00:00\",\n \"versionId\": \"MTcxMDk4NTYyNDQxNDkwNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/6ba80757-254d-4f99-b926-07503957aaf1\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/51721b81-02cb-46bc-9f6d-ef2e6a1f10f7\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Troponin I",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinI}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinI}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.06,\n \"unit\": \"ng/mL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/mL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Troponin I",
"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\": \"O000001\"\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\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinI}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinI}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.06,\n \"unit\": \"ng/mL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/mL\"\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, 21 Mar 2024 01:42:42 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4NTM2MjI0NzIxMzAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/6ba80757-254d-4f99-b926-07503957aaf1/_history/MTcxMDk4NTM2MjI0NzIxMzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:42:42 GMT"
},
{
"key": "Content-Length",
"value": "5344"
},
{
"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": "a7aed61a-7d0d-43db-8192-029357bf4ff4"
},
{
"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/85aaafb0-69bb-4afa-a60e-4c97cf0300e2\"\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\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"6ba80757-254d-4f99-b926-07503957aaf1\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:42:42.247213+00:00\",\n \"versionId\": \"MTcxMDk4NTM2MjI0NzIxMzAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/51721b81-02cb-46bc-9f6d-ef2e6a1f10f7\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"ng/mL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"ng/mL\",\n \"value\": 0.06\n }\n}"
}
]
},
{
"name": "Specimen - Troponin I",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinI}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Troponin I",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinI}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk4NTA5ODc3NTcwNTAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:38:18 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/51721b81-02cb-46bc-9f6d-ef2e6a1f10f7/_history/MTcxMDk4NTA5ODc3NTcwNTAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:38:18 GMT"
},
{
"key": "Content-Length",
"value": "8020"
},
{
"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": "99fb8bab-5214-49e3-b337-eb779fac71bc"
},
{
"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\": \"2024-03-18T00:50:00+00:00\",\n \"collector\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"51721b81-02cb-46bc-9f6d-ef2e6a1f10f7\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000002\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000002\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:38:18.775705+00:00\",\n \"versionId\": \"MTcxMDk4NTA5ODc3NTcwNTAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/85aaafb0-69bb-4afa-a60e-4c97cf0300e2\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "ServiceRequest - Troponin I",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin I\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Troponin I Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Troponin I",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin I\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Troponin I Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "etag",
"value": "W/\"MTcxMDk4NTAwMjY4NDAxMDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/85aaafb0-69bb-4afa-a60e-4c97cf0300e2/_history/MTcxMDk4NTAwMjY4NDAxMDAwMA"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:36:42 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:36:42 GMT"
},
{
"key": "Content-Length",
"value": "5300"
},
{
"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": "66d44b0b-ac76-4c2f-ad96-2662d5e03ff5"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin I\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Troponin I Jane Smith di hari Senin, 18 Maret 2024\",\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"85aaafb0-69bb-4afa-a60e-4c97cf0300e2\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:36:42.684010+00:00\",\n \"versionId\": \"MTcxMDk4NTAwMjY4NDAxMDAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy CLone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Troponin I",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinI}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_TroponinI}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinI}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan troponin I termasukdalam kategori tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Troponin I",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinI}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_TroponinI}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinI}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan troponin I termasukdalam kategori tinggi\"\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, 21 Mar 2024 01:47:04 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/DiagnosticReport/d87cc764-01bd-4d6b-bd5b-cb1f1ee6374c/_history/MTcxMDk4NTYyNDQxNDkwNjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4NTYyNDQxNDkwNjAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:47:04 GMT"
},
{
"key": "Content-Length",
"value": "5714"
},
{
"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": "81724cf8-4f33-4304-9f75-6d37a8b02b2b"
},
{
"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/85aaafb0-69bb-4afa-a60e-4c97cf0300e2\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"42757-5\",\n \"display\": \"Troponin I.cardiac [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Darah Rutin\"\n },\n \"conclusion\": \"Hasil pemeriksaan troponin I termasukdalam kategori tinggi\",\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"d87cc764-01bd-4d6b-bd5b-cb1f1ee6374c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:47:04.414906+00:00\",\n \"versionId\": \"MTcxMDk4NTYyNDQxNDkwNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/6ba80757-254d-4f99-b926-07503957aaf1\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/51721b81-02cb-46bc-9f6d-ef2e6a1f10f7\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Troponin T",
"item": [
{
"name": "ServiceRequest - Troponin T",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Troponin T Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - CKMB",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Troponin T Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/f02d123c-1d5b-4d68-8667-d5587161d97a/_history/MTcxMDk4NTc2MTQ3MzgyMDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:49:21 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4NTc2MTQ3MzgyMDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:49:21 GMT"
},
{
"key": "Content-Length",
"value": "5448"
},
{
"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": "52333b81-8f97-4138-b007-f9df553497bf"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Troponin T Jane Smith di hari Senin, 18 Maret 2024\",\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"f02d123c-1d5b-4d68-8667-d5587161d97a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:49:21.473820+00:00\",\n \"versionId\": \"MTcxMDk4NTc2MTQ3MzgyMDAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy CLone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Troponin T",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinT}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Troponin T",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinT}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk4NTgwNTU1MjE2NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/989b966a-919a-4937-9131-d80717572a21/_history/MTcxMDk4NTgwNTU1MjE2NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:50:05 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:50:05 GMT"
},
{
"key": "Content-Length",
"value": "8020"
},
{
"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": "ed887320-6b44-4a65-b614-c724531da2d1"
},
{
"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\": \"2024-03-18T00:50:00+00:00\",\n \"collector\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"989b966a-919a-4937-9131-d80717572a21\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000002\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000002\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:50:05.552166+00:00\",\n \"versionId\": \"MTcxMDk4NTgwNTU1MjE2NjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/f02d123c-1d5b-4d68-8667-d5587161d97a\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Troponin T",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinT}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinT}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.06,\n \"unit\": \"ng/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/L\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Troponin T",
"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\": \"O000001\"\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\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinT}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinT}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.06,\n \"unit\": \"ng/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/L\"\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/aaaf3c87-249d-40f5-98ed-78f6752ec37f/_history/MTcxMDk4NjIyNjM2Nzg1NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4NjIyNjM2Nzg1NjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:57:06 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:57:06 GMT"
},
{
"key": "Content-Length",
"value": "5484"
},
{
"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": "daa11ee9-f099-4734-ac80-7125302be9b4"
},
{
"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/f02d123c-1d5b-4d68-8667-d5587161d97a\"\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\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"aaaf3c87-249d-40f5-98ed-78f6752ec37f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:57:06.367856+00:00\",\n \"versionId\": \"MTcxMDk4NjIyNjM2Nzg1NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/989b966a-919a-4937-9131-d80717572a21\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"ng/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"ng/L\",\n \"value\": 0.06\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Troponin T",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinT}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_TroponinT}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinT}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan Troponin T termasuk ke dalam kategori tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Troponin T",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinT}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_TroponinT}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinT}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan Troponin T termasuk ke dalam kategori tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk4NjI4MDcyNTUxNjAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:58:00 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/DiagnosticReport/be7021ef-ab51-49e9-b324-d7be4eadbb59/_history/MTcxMDk4NjI4MDcyNTUxNjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:58:00 GMT"
},
{
"key": "Content-Length",
"value": "5874"
},
{
"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": "5140e429-5700-4993-8e52-79afa9c91d8e"
},
{
"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/f02d123c-1d5b-4d68-8667-d5587161d97a\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"conclusion\": \"Hasil pemeriksaan Troponin T termasuk ke dalam kategori tinggi\",\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"be7021ef-ab51-49e9-b324-d7be4eadbb59\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:58:00.725516+00:00\",\n \"versionId\": \"MTcxMDk4NjI4MDcyNTUxNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/aaaf3c87-249d-40f5-98ed-78f6752ec37f\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/989b966a-919a-4937-9131-d80717572a21\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Troponin T",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Troponin T Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - CKMB",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Troponin T Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/f02d123c-1d5b-4d68-8667-d5587161d97a/_history/MTcxMDk4NTc2MTQ3MzgyMDAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:49:21 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4NTc2MTQ3MzgyMDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:49:21 GMT"
},
{
"key": "Content-Length",
"value": "5448"
},
{
"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": "52333b81-8f97-4138-b007-f9df553497bf"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Troponin T Jane Smith di hari Senin, 18 Maret 2024\",\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"f02d123c-1d5b-4d68-8667-d5587161d97a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:49:21.473820+00:00\",\n \"versionId\": \"MTcxMDk4NTc2MTQ3MzgyMDAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy CLone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Troponin T",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinT}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Troponin T",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinT}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk4NTgwNTU1MjE2NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/989b966a-919a-4937-9131-d80717572a21/_history/MTcxMDk4NTgwNTU1MjE2NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:50:05 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:50:05 GMT"
},
{
"key": "Content-Length",
"value": "8020"
},
{
"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": "ed887320-6b44-4a65-b614-c724531da2d1"
},
{
"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\": \"2024-03-18T00:50:00+00:00\",\n \"collector\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"989b966a-919a-4937-9131-d80717572a21\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000002\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000002\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:50:05.552166+00:00\",\n \"versionId\": \"MTcxMDk4NTgwNTU1MjE2NjAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/f02d123c-1d5b-4d68-8667-d5587161d97a\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Troponin T",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinT}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinT}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.06,\n \"unit\": \"ng/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/L\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Troponin T",
"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\": \"O000001\"\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\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinT}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinT}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 0.06,\n \"unit\": \"ng/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/L\"\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/aaaf3c87-249d-40f5-98ed-78f6752ec37f/_history/MTcxMDk4NjIyNjM2Nzg1NjAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4NjIyNjM2Nzg1NjAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:57:06 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:57:06 GMT"
},
{
"key": "Content-Length",
"value": "5484"
},
{
"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": "daa11ee9-f099-4734-ac80-7125302be9b4"
},
{
"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/f02d123c-1d5b-4d68-8667-d5587161d97a\"\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\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"aaaf3c87-249d-40f5-98ed-78f6752ec37f\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:57:06.367856+00:00\",\n \"versionId\": \"MTcxMDk4NjIyNjM2Nzg1NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/989b966a-919a-4937-9131-d80717572a21\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"ng/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"ng/L\",\n \"value\": 0.06\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Troponin T",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinT}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_TroponinT}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinT}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan Troponin T termasuk ke dalam kategori tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Troponin T",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinT}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_TroponinT}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_TroponinT}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan Troponin T termasuk ke dalam kategori tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk4NjI4MDcyNTUxNjAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 01:58:00 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/DiagnosticReport/be7021ef-ab51-49e9-b324-d7be4eadbb59/_history/MTcxMDk4NjI4MDcyNTUxNjAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 01:58:00 GMT"
},
{
"key": "Content-Length",
"value": "5874"
},
{
"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": "5140e429-5700-4993-8e52-79afa9c91d8e"
},
{
"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/f02d123c-1d5b-4d68-8667-d5587161d97a\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"conclusion\": \"Hasil pemeriksaan Troponin T termasuk ke dalam kategori tinggi\",\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"be7021ef-ab51-49e9-b324-d7be4eadbb59\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T01:58:00.725516+00:00\",\n \"versionId\": \"MTcxMDk4NjI4MDcyNTUxNjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/aaaf3c87-249d-40f5-98ed-78f6752ec37f\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/989b966a-919a-4937-9131-d80717572a21\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Hs-Troponin T",
"item": [
{
"name": "ServiceRequest - Hs-Troponin T",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Hs-Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Hs-Troponin T Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Hs-Troponin T",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Hs-Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Hs-Troponin T Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/91a1d21c-788a-4abd-9faa-7f99485aaea8/_history/MTcxMDk5MDYwNDcxOTgxNzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 03:10:04 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk5MDYwNDcxOTgxNzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 03:10:04 GMT"
},
{
"key": "Content-Length",
"value": "5472"
},
{
"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": "c42c748a-1efe-4324-a467-8188ede028a1"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Hs-Troponin T\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Hs-Troponin T Jane Smith di hari Senin, 18 Maret 2024\",\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"91a1d21c-788a-4abd-9faa-7f99485aaea8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:10:04.719817+00:00\",\n \"versionId\": \"MTcxMDk5MDYwNDcxOTgxNzAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy CLone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Hs-Troponin T",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Hs-TroponinT}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Hs-Troponin T",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Hs-TroponinT}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk5MDY2MTAxODM5ODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 03:11:01 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/1f87d85f-74d2-48d0-a954-5649d15087e1/_history/MTcxMDk5MDY2MTAxODM5ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 03:11:01 GMT"
},
{
"key": "Content-Length",
"value": "8020"
},
{
"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": "40996bb4-412e-4e9f-a74a-356d0a06f592"
},
{
"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\": \"2024-03-18T00:50:00+00:00\",\n \"collector\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"1f87d85f-74d2-48d0-a954-5649d15087e1\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000002\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000002\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:11:01.018398+00:00\",\n \"versionId\": \"MTcxMDk5MDY2MTAxODM5ODAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/91a1d21c-788a-4abd-9faa-7f99485aaea8\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Hs-Troponin T",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/1f87d85f-74d2-48d0-a954-5649d15087e1\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Hs-TroponinT}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 17,\n \"unit\": \"ng/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/L\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Hs-Troponin T",
"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\": \"O000001\"\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\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/1f87d85f-74d2-48d0-a954-5649d15087e1\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Hs-TroponinT}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 17,\n \"unit\": \"ng/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/L\"\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": "etag",
"value": "W/\"MTcxMDk5MDc1MTAyMDg5NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/f7a07b3f-d047-4c8c-819f-fb47b2faed1a/_history/MTcxMDk5MDc1MTAyMDg5NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 03:12:31 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 03:12:31 GMT"
},
{
"key": "Content-Length",
"value": "5476"
},
{
"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": "4c4758dc-3f78-4638-b8d2-bb99ae7f4c68"
},
{
"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/91a1d21c-788a-4abd-9faa-7f99485aaea8\"\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\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"f7a07b3f-d047-4c8c-819f-fb47b2faed1a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:12:31.020896+00:00\",\n \"versionId\": \"MTcxMDk5MDc1MTAyMDg5NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/1f87d85f-74d2-48d0-a954-5649d15087e1\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"ng/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"ng/L\",\n \"value\": 17\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Hs-Troponin T",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Hs-Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_HsTroponinT}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_TroponinT}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Hs-TroponinT}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan Hs-Troponin T termasuk ke dalam kategori tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Hs-Troponin T",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Hs-Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_HsTroponinT}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_TroponinT}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Hs-TroponinT}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan Hs-Troponin T termasuk ke dalam kategori tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"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/DiagnosticReport/ee02e1ff-c50e-48c4-ac29-bd1a5788c090/_history/MTcxMDk5MDc5Njg5NzU4MDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk5MDc5Njg5NzU4MDAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 03:13:16 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 03:13:16 GMT"
},
{
"key": "Content-Length",
"value": "5898"
},
{
"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": "fb08f0b3-0bfb-4659-b394-64a4d69e00e8"
},
{
"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/91a1d21c-788a-4abd-9faa-7f99485aaea8\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Hs-Troponin T\"\n },\n \"conclusion\": \"Hasil pemeriksaan Hs-Troponin T termasuk ke dalam kategori tinggi\",\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"ee02e1ff-c50e-48c4-ac29-bd1a5788c090\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:13:16.897580+00:00\",\n \"versionId\": \"MTcxMDk5MDc5Njg5NzU4MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/f7a07b3f-d047-4c8c-819f-fb47b2faed1a\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/989b966a-919a-4937-9131-d80717572a21\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Hs-Troponin T",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Hs-TroponinT}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Hs-Troponin T",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Hs-TroponinT}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "etag",
"value": "W/\"MTcxMDk5MDY2MTAxODM5ODAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 03:11:01 UTC"
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/1f87d85f-74d2-48d0-a954-5649d15087e1/_history/MTcxMDk5MDY2MTAxODM5ODAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 03:11:01 GMT"
},
{
"key": "Content-Length",
"value": "8020"
},
{
"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": "40996bb4-412e-4e9f-a74a-356d0a06f592"
},
{
"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\": \"2024-03-18T00:50:00+00:00\",\n \"collector\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"1f87d85f-74d2-48d0-a954-5649d15087e1\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000002\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000002\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:11:01.018398+00:00\",\n \"versionId\": \"MTcxMDk5MDY2MTAxODM5ODAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/91a1d21c-788a-4abd-9faa-7f99485aaea8\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Hs-Troponin T",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Hs-Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_HsTroponinT}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_TroponinT}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Hs-TroponinT}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan Hs-Troponin T termasuk ke dalam kategori tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Hs-Troponin T",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Hs-Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_HsTroponinT}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_TroponinT}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Hs-TroponinT}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan Hs-Troponin T termasuk ke dalam kategori tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"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/DiagnosticReport/ee02e1ff-c50e-48c4-ac29-bd1a5788c090/_history/MTcxMDk5MDc5Njg5NzU4MDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk5MDc5Njg5NzU4MDAwMA\""
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 03:13:16 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 03:13:16 GMT"
},
{
"key": "Content-Length",
"value": "5898"
},
{
"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": "fb08f0b3-0bfb-4659-b394-64a4d69e00e8"
},
{
"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/91a1d21c-788a-4abd-9faa-7f99485aaea8\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Hs-Troponin T\"\n },\n \"conclusion\": \"Hasil pemeriksaan Hs-Troponin T termasuk ke dalam kategori tinggi\",\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"ee02e1ff-c50e-48c4-ac29-bd1a5788c090\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:13:16.897580+00:00\",\n \"versionId\": \"MTcxMDk5MDc5Njg5NzU4MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/f7a07b3f-d047-4c8c-819f-fb47b2faed1a\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/989b966a-919a-4937-9131-d80717572a21\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Hs-Troponin T",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/1f87d85f-74d2-48d0-a954-5649d15087e1\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Hs-TroponinT}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 17,\n \"unit\": \"ng/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/L\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Hs-Troponin T",
"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\": \"O000001\"\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\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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/1f87d85f-74d2-48d0-a954-5649d15087e1\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_Hs-TroponinT}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 17,\n \"unit\": \"ng/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"ng/L\"\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": "etag",
"value": "W/\"MTcxMDk5MDc1MTAyMDg5NjAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Observation/f7a07b3f-d047-4c8c-819f-fb47b2faed1a/_history/MTcxMDk5MDc1MTAyMDg5NjAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 03:12:31 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 03:12:31 GMT"
},
{
"key": "Content-Length",
"value": "5476"
},
{
"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": "4c4758dc-3f78-4638-b8d2-bb99ae7f4c68"
},
{
"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/91a1d21c-788a-4abd-9faa-7f99485aaea8\"\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\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"f7a07b3f-d047-4c8c-819f-fb47b2faed1a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:12:31.020896+00:00\",\n \"versionId\": \"MTcxMDk5MDc1MTAyMDg5NjAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/1f87d85f-74d2-48d0-a954-5649d15087e1\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"ng/L\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"ng/L\",\n \"value\": 17\n }\n}"
}
]
},
{
"name": "ServiceRequest - Hs-Troponin T",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Hs-Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Hs-Troponin T Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Hs-Troponin T",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\"\n }\n ],\n \"text\": \"Pemeriksaan Hs-Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Hs-Troponin T Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/91a1d21c-788a-4abd-9faa-7f99485aaea8/_history/MTcxMDk5MDYwNDcxOTgxNzAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 03:10:04 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk5MDYwNDcxOTgxNzAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 03:10:04 GMT"
},
{
"key": "Content-Length",
"value": "5472"
},
{
"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": "c42c748a-1efe-4324-a467-8188ede028a1"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"67151-1\",\n \"display\": \"Troponin T.cardiac [Mass/volume] in Serum or Plasma by High sensitivity method\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Hs-Troponin T\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Hs-Troponin T Jane Smith di hari Senin, 18 Maret 2024\",\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"91a1d21c-788a-4abd-9faa-7f99485aaea8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T03:10:04.719817+00:00\",\n \"versionId\": \"MTcxMDk5MDYwNDcxOTgxNzAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy CLone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
}
]
},
{
"name": "Pemeriksaan Gula Darah Sewaktu",
"item": [
{
"name": "ServiceRequest Gula Darah Sewaktu",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Sewaktu\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Hs- Troponin T Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest Gula Darah Sewaktu",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Sewaktu\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Hs- Troponin T Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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, 21 Mar 2024 02:23:00 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/ServiceRequest/1f0a0adf-0fa2-4a34-aaa2-b9c6c3ed799a/_history/MTcxMDk4Nzc4MDU4OTA2MTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4Nzc4MDU4OTA2MTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 02:23:00 GMT"
},
{
"key": "Content-Length",
"value": "5300"
},
{
"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": "3d80860f-d5e2-42da-bd2c-0bdf7f8de37f"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Sewaktu\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Hs- Troponin T Jane Smith di hari Senin, 18 Maret 2024\",\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"1f0a0adf-0fa2-4a34-aaa2-b9c6c3ed799a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T02:23:00.589061+00:00\",\n \"versionId\": \"MTcxMDk4Nzc4MDU4OTA2MTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy CLone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Gula Darah Sewaktu",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GDS}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Gula Darah Sewaktu",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GDS}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 02:23: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/Specimen/a57abd90-5364-4ab1-8419-f300f46510ff/_history/MTcxMDk4NzgzMDI3ODI5NzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4NzgzMDI3ODI5NzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 02:23:50 GMT"
},
{
"key": "Content-Length",
"value": "8020"
},
{
"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": "e40f5188-ebdd-4564-be7e-0edcfec1c3bf"
},
{
"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\": \"2024-03-18T00:50:00+00:00\",\n \"collector\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"a57abd90-5364-4ab1-8419-f300f46510ff\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000002\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000002\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T02:23:50.278297+00:00\",\n \"versionId\": \"MTcxMDk4NzgzMDI3ODI5NzAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/1f0a0adf-0fa2-4a34-aaa2-b9c6c3ed799a\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Gula Darah Sewaktu",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_GDS}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GDS}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 120,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gula Darah Sewaktu",
"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\": \"O000001\"\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\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_GDS}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GDS}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 120,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 02:34:41 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/ba01d4b8-03a4-4db6-8abd-26d76ddc0371/_history/MTcxMDk4ODQ4MTU1MTk3MDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4ODQ4MTU1MTk3MDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 02:34:41 GMT"
},
{
"key": "Content-Length",
"value": "5292"
},
{
"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": "e5b5d867-451c-4845-a31c-ef15d495dfb6"
},
{
"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/1f0a0adf-0fa2-4a34-aaa2-b9c6c3ed799a\"\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\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"ba01d4b8-03a4-4db6-8abd-26d76ddc0371\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T02:34:41.551970+00:00\",\n \"versionId\": \"MTcxMDk4ODQ4MTU1MTk3MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/a57abd90-5364-4ab1-8419-f300f46510ff\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 120\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Gula Darah Sewaktu",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_GDS}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GDS}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GDS}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan Gula Darah Sewaktu termasuk ke dalam kategori tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Gula Darah Sewaktu",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_GDS}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GDS}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GDS}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan Gula Darah Sewaktu termasuk ke dalam kategori tinggi\"\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/a940fc75-b90e-4a9e-8d01-75f8cad34dca/_history/MTcxMDk4ODUzMjc3MzM5OTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 02:35:32 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4ODUzMjc3MzM5OTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 02:35:32 GMT"
},
{
"key": "Content-Length",
"value": "5710"
},
{
"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": "e0c6cd9a-f2c0-4bf3-a9cc-8b537a9d798b"
},
{
"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/1f0a0adf-0fa2-4a34-aaa2-b9c6c3ed799a\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"conclusion\": \"Hasil pemeriksaan Gula Darah Sewaktu termasuk ke dalam kategori tinggi\",\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"a940fc75-b90e-4a9e-8d01-75f8cad34dca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T02:35:32.773399+00:00\",\n \"versionId\": \"MTcxMDk4ODUzMjc3MzM5OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/ba01d4b8-03a4-4db6-8abd-26d76ddc0371\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/a57abd90-5364-4ab1-8419-f300f46510ff\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Observation - Gula Darah Sewaktu",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_GDS}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GDS}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 120,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Gula Darah Sewaktu",
"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\": \"O000001\"\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\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_GDS}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GDS}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 120,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 02:34:41 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/ba01d4b8-03a4-4db6-8abd-26d76ddc0371/_history/MTcxMDk4ODQ4MTU1MTk3MDAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4ODQ4MTU1MTk3MDAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 02:34:41 GMT"
},
{
"key": "Content-Length",
"value": "5292"
},
{
"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": "e5b5d867-451c-4845-a31c-ef15d495dfb6"
},
{
"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/1f0a0adf-0fa2-4a34-aaa2-b9c6c3ed799a\"\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\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"ba01d4b8-03a4-4db6-8abd-26d76ddc0371\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T02:34:41.551970+00:00\",\n \"versionId\": \"MTcxMDk4ODQ4MTU1MTk3MDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/a57abd90-5364-4ab1-8419-f300f46510ff\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 120\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Gula Darah Sewaktu",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_GDS}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GDS}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GDS}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan Gula Darah Sewaktu termasuk ke dalam kategori tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Gula Darah Sewaktu",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_GDS}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_GDS}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GDS}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan Gula Darah Sewaktu termasuk ke dalam kategori tinggi\"\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/a940fc75-b90e-4a9e-8d01-75f8cad34dca/_history/MTcxMDk4ODUzMjc3MzM5OTAwMA"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 02:35:32 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4ODUzMjc3MzM5OTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 02:35:32 GMT"
},
{
"key": "Content-Length",
"value": "5710"
},
{
"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": "e0c6cd9a-f2c0-4bf3-a9cc-8b537a9d798b"
},
{
"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/1f0a0adf-0fa2-4a34-aaa2-b9c6c3ed799a\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"conclusion\": \"Hasil pemeriksaan Gula Darah Sewaktu termasuk ke dalam kategori tinggi\",\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"a940fc75-b90e-4a9e-8d01-75f8cad34dca\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T02:35:32.773399+00:00\",\n \"versionId\": \"MTcxMDk4ODUzMjc3MzM5OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/ba01d4b8-03a4-4db6-8abd-26d76ddc0371\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/a57abd90-5364-4ab1-8419-f300f46510ff\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Gula Darah Sewaktu",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GDS}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Gula Darah Sewaktu",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_GDS}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 02:23: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/Specimen/a57abd90-5364-4ab1-8419-f300f46510ff/_history/MTcxMDk4NzgzMDI3ODI5NzAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4NzgzMDI3ODI5NzAwMA\""
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 02:23:50 GMT"
},
{
"key": "Content-Length",
"value": "8020"
},
{
"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": "e40f5188-ebdd-4564-be7e-0edcfec1c3bf"
},
{
"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\": \"2024-03-18T00:50:00+00:00\",\n \"collector\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"a57abd90-5364-4ab1-8419-f300f46510ff\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000002\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000002\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T02:23:50.278297+00:00\",\n \"versionId\": \"MTcxMDk4NzgzMDI3ODI5NzAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/1f0a0adf-0fa2-4a34-aaa2-b9c6c3ed799a\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "ServiceRequest Gula Darah Sewaktu",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Sewaktu\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Hs- Troponin T Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest Gula Darah Sewaktu",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Sewaktu\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Hs- Troponin T Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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, 21 Mar 2024 02:23:00 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/ServiceRequest/1f0a0adf-0fa2-4a34-aaa2-b9c6c3ed799a/_history/MTcxMDk4Nzc4MDU4OTA2MTAwMA"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4Nzc4MDU4OTA2MTAwMA\""
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 02:23:00 GMT"
},
{
"key": "Content-Length",
"value": "5300"
},
{
"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": "3d80860f-d5e2-42da-bd2c-0bdf7f8de37f"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"2339-0\",\n \"display\": \"Glucose [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Gula Darah Sewaktu\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Hs- Troponin T Jane Smith di hari Senin, 18 Maret 2024\",\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"1f0a0adf-0fa2-4a34-aaa2-b9c6c3ed799a\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T02:23:00.589061+00:00\",\n \"versionId\": \"MTcxMDk4Nzc4MDU4OTA2MTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy CLone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
}
]
},
{
"name": "Pemeriksaan Asam Urat",
"item": [
{
"name": "ServiceRequest - Asam Urat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98981-4\",\n \"display\": \"Urate [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Asam Urat\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Asam Urat Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Asam Urat",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98981-4\",\n \"display\": \"Urate [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Asam Urat\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Asam Urat Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\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": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4ODYxMzY2OTM4NTAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/ServiceRequest/ae5733df-dbd8-4f97-9354-64fe5de8b690/_history/MTcxMDk4ODYxMzY2OTM4NTAwMA"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 02:36:53 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 02:36:53 GMT"
},
{
"key": "Content-Length",
"value": "5240"
},
{
"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": "51f1251a-ac02-4af2-9e07-ece9bd69738a"
},
{
"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\": \"108252007\",\n \"display\": \"Laboratory procedure\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"98981-4\",\n \"display\": \"Urate [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Asam Urat\"\n },\n \"encounter\": {\n \"display\": \"Permintaan Pemeriksaan Asam Urat Jane Smith di hari Senin, 18 Maret 2024\",\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"ae5733df-dbd8-4f97-9354-64fe5de8b690\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/servicerequest/10000005\",\n \"value\": \"0000001\"\n }\n ],\n \"intent\": \"original-order\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T02:36:53.669385+00:00\",\n \"versionId\": \"MTcxMDk4ODYxMzY2OTM4NTAwMA\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"performer\": [\n {\n \"display\": \"Dorothy CLone\",\n \"reference\": \"Practitioner/N10000008\"\n }\n ],\n \"priority\": \"routine\",\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ],\n \"requester\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"resourceType\": \"ServiceRequest\",\n \"status\": \"active\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "Specimen - Asam Urat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Specimen_Lab\", 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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_AsamUrat}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"response": [
{
"name": "Specimen - Asam Urat",
"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\": \"0000001\",\n \"assigner\": {\n \"reference\": \"Organization/{{Org_id}}\"\n }\n }\n ],\n \"status\": \"available\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\"\n }\n ]\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"collection\": {\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\"\n }\n ]\n },\n \"collectedDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"quantity\": {\n \"value\": 6,\n \"unit\": \"mL\"\n },\n \"collector\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\",\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\"\n }\n ]\n }\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\",\n \"display\": \"Jane Smith\"\n },\n \"request\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_AsamUrat}}\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dr. John Doe\"\n }\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Specimen",
"host": [
"{{base_url}}"
],
"path": [
"Specimen"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 02:38:11 UTC"
},
{
"key": "content-type",
"value": "application/json"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4ODY5MTQzMTc1MDAwMA\""
},
{
"key": "location",
"value": "https://healthcare.googleapis.com/v1/projects/dto-ihs-dev/locations/asia-southeast2/datasets/dev/fhirStores/fhir-v4-dev-ver2/fhir/Specimen/f975a601-b234-4260-b925-3c7b3ec0f8cb/_history/MTcxMDk4ODY5MTQzMTc1MDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 02:38:11 GMT"
},
{
"key": "Content-Length",
"value": "8020"
},
{
"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": "fb52e17e-12b7-41e3-8b7c-3a8b56a6593b"
},
{
"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\": \"2024-03-18T00:50:00+00:00\",\n \"collector\": {\n \"display\": \"Rus, MD\",\n \"reference\": \"Practitioner/N10000006\"\n },\n \"fastingStatusCodeableConcept\": {\n \"coding\": [\n {\n \"code\": \"NF\",\n \"display\": \"The patient indicated they did not fast prior to the procedure.\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0916\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"code\": \"82078001\",\n \"display\": \"Collection of blood specimen for laboratory\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n },\n \"quantity\": {\n \"unit\": \"mL\",\n \"value\": 6\n }\n },\n \"condition\": [\n {\n \"text\": \"Kondisi Spesimen Baik\"\n }\n ],\n \"extension\": [\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedTime\",\n \"valueDateTime\": \"2024-03-18T00:50:00+00:00\"\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/TransportedPerson\",\n \"valueContactDetail\": {\n \"name\": \"Burhan\",\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"021-5375162\"\n }\n ]\n }\n },\n {\n \"url\": \"https://fhir.kemkes.go.id/r4/StructureDefinition/ReceivedPerson\",\n \"valueReference\": {\n \"display\": \"Dr. John Doe\",\n \"reference\": \"Practitioner/10006926841\"\n }\n }\n ],\n \"id\": \"f975a601-b234-4260-b925-3c7b3ec0f8cb\",\n \"identifier\": [\n {\n \"assigner\": {\n \"reference\": \"Organization/10000002\"\n },\n \"system\": \"http://sys-ids.kemkes.go.id/specimen/10000002\",\n \"value\": \"0000001\"\n }\n ],\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T02:38:11.431750+00:00\",\n \"versionId\": \"MTcxMDk4ODY5MTQzMTc1MDAwMA\"\n },\n \"processing\": [\n {\n \"timeDateTime\": \"2024-03-18T00:53:00+00:00\"\n }\n ],\n \"receivedTime\": \"2024-03-18T00:52:00+00:00\",\n \"request\": [\n {\n \"reference\": \"ServiceRequest/ae5733df-dbd8-4f97-9354-64fe5de8b690\"\n }\n ],\n \"resourceType\": \"Specimen\",\n \"status\": \"available\",\n \"subject\": {\n \"display\": \"Jane Smith\",\n \"reference\": \"Patient/100000030006\"\n },\n \"type\": {\n \"coding\": [\n {\n \"code\": \"119297000\",\n \"display\": \"Blood specimen\",\n \"system\": \"http://snomed.info/sct\"\n }\n ]\n }\n}"
}
]
},
{
"name": "Observation - Asam Urat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"Observation_Lab\", 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\": \"O000001\"\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\": \"98981-4\",\n \"display\": \"Urate [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinT}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_AsamUrat}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 10,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/Observation",
"host": [
"{{base_url}}"
],
"path": [
"Observation"
]
}
},
"response": [
{
"name": "Observation - Asam Urat",
"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\": \"O000001\"\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\": \"98981-4\",\n \"display\": \"Urate [Mass/volume] in Blood\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_TroponinT}}\"\n },\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_AsamUrat}}\"\n }\n ],\n \"valueQuantity\": {\n \"value\": 10,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\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": "etag",
"value": "W/\"MTcxMDk4ODk4NjU2MjA0OTAwMA\""
},
{
"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/8cca0a40-30ce-44e0-b52d-e9bc31d02a9c/_history/MTcxMDk4ODk4NjU2MjA0OTAwMA"
},
{
"key": "last-modified",
"value": "Thu, 21 Mar 2024 02:43:06 UTC"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 02:43:06 GMT"
},
{
"key": "Content-Length",
"value": "5284"
},
{
"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": "1cbcdb6b-ec8d-4d2e-ba6c-86cee33d9c6e"
},
{
"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/ae5733df-dbd8-4f97-9354-64fe5de8b690\"\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\": \"98981-4\",\n \"display\": \"Urate [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ]\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"8cca0a40-30ce-44e0-b52d-e9bc31d02a9c\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/observation/10000002\",\n \"value\": \"O000001\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T02:43:06.562049+00:00\",\n \"versionId\": \"MTcxMDk4ODk4NjU2MjA0OTAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000006\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"Observation\",\n \"specimen\": {\n \"reference\": \"Specimen/989b966a-919a-4937-9131-d80717572a21\"\n },\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n },\n \"valueQuantity\": {\n \"code\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"unit\": \"mg/dL\",\n \"value\": 10\n }\n}"
}
]
},
{
"name": "DiagnosticReport - Asam Urat",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98981-4\",\n \"display\": \"Urate [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_AsamUrat}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_AsamUrat}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_AsamUrat}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan Asam Urat termasuk ke dalam kategori tinggi\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/DiagnosticReport",
"host": [
"{{base_url}}"
],
"path": [
"DiagnosticReport"
]
}
},
"response": [
{
"name": "DiagnosticReport - Asam Urat",
"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\": \"0000030\"\n }\n ],\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"CH\",\n \"display\": \"Chemistry\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98981-4\",\n \"display\": \"Urate [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\"\n },\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"issued\": \"2024-03-18T00:55: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_AsamUrat}}\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/{{Specimen_AsamUrat}}\"\n }\n ],\n \"basedOn\": [\n {\n \"reference\": \"ServiceRequest/{{ServiceRequest_AsamUrat}}\"\n }\n ],\n \"conclusion\": \"Hasil pemeriksaan Asam Urat termasuk ke dalam kategori tinggi\"\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, 21 Mar 2024 02:43:51 UTC"
},
{
"key": "etag",
"value": "W/\"MTcxMDk4OTAzMTI5NzU4NDAwMA\""
},
{
"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/DiagnosticReport/5895830b-f034-4436-839c-b5e1365e7ab8/_history/MTcxMDk4OTAzMTI5NzU4NDAwMA"
},
{
"key": "vary",
"value": "Origin,X-Origin,Referer"
},
{
"key": "date",
"value": "Thu, 21 Mar 2024 02:43:51 GMT"
},
{
"key": "Content-Length",
"value": "5670"
},
{
"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": "d8d9f398-0c46-4b86-ab52-9c0295c61b3f"
},
{
"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/ae5733df-dbd8-4f97-9354-64fe5de8b690\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"code\": \"CH\",\n \"display\": \"Chemistry\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"code\": \"98981-4\",\n \"display\": \"Urate [Mass/volume] in Blood\",\n \"system\": \"http://loinc.org\"\n }\n ],\n \"text\": \"Pemeriksaan Troponin T\"\n },\n \"conclusion\": \"Hasil pemeriksaan Asam Urat termasuk ke dalam kategori tinggi\",\n \"effectiveDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"encounter\": {\n \"reference\": \"Encounter/5552cc1c-0aab-438f-9d54-b19b8d055f0e\"\n },\n \"id\": \"5895830b-f034-4436-839c-b5e1365e7ab8\",\n \"identifier\": [\n {\n \"system\": \"http://sys-ids.kemkes.go.id/diagnostic/10000002/lab\",\n \"use\": \"official\",\n \"value\": \"0000030\"\n }\n ],\n \"issued\": \"2024-03-18T00:55:00+00:00\",\n \"meta\": {\n \"lastUpdated\": \"2024-03-21T02:43:51.297584+00:00\",\n \"versionId\": \"MTcxMDk4OTAzMTI5NzU4NDAwMA\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/N10000001\"\n },\n {\n \"reference\": \"Organization/10000002\"\n }\n ],\n \"resourceType\": \"DiagnosticReport\",\n \"result\": [\n {\n \"reference\": \"Observation/8cca0a40-30ce-44e0-b52d-e9bc31d02a9c\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"Specimen/f975a601-b234-4260-b925-3c7b3ec0f8cb\"\n }\n ],\n \"status\": \"final\",\n \"subject\": {\n \"reference\": \"Patient/100000030006\"\n }\n}"
}
]
},
{
"name": "ServiceRequest - Asam Urat",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.json();\r",
"pm.collectionVariables.set(\"ServiceRequest_Lab\", 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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98981-4\",\n \"display\": \"Urate [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Asam Urat\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Asam Urat Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [
"ServiceRequest"
]
}
},
"response": [
{
"name": "ServiceRequest - Asam Urat",
"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\": \"0000001\"\n }\n ],\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108252007\",\n \"display\": \"Laboratory procedure\"\n }\n ]\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"priority\": \"routine\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"98981-4\",\n \"display\": \"Urate [Mass/volume] in Blood\"\n }\n ],\n \"text\": \"Pemeriksaan Asam Urat\"\n },\n \"subject\": {\n \"reference\": \"Patient/{{Patient_id}}\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/{{Encounter_id}}\",\n \"display\": \"Permintaan Pemeriksaan Asam Urat Jane Smith di hari Senin, 18 Maret 2024\"\n },\n \"occurrenceDateTime\": \"2024-03-18T00:50:00+00:00\",\n \"requester\": {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Rus, MD\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/{{Practitioner_id}}\",\n \"display\": \"Dorothy CLone\"\n }\n ],\n \"reasonCode\": [\n {\n \"text\": \"Periksa jika ada kemungkinan Penyakit Jantung\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/ServiceRequest",
"host": [
"{{base_url}}"
],
"path": [