From 6a9ca5639eac1756d208b48a83632af1edb233d3 Mon Sep 17 00:00:00 2001 From: "Dr. B. M. Riazul Islam" Date: Tue, 7 Apr 2026 01:49:09 +0600 Subject: [PATCH] Prepare 0.4.0: DGDA Drug and LOINC Integration --- input/fsh/examples/BDOrganizationExample.fsh | 24 +++++++++----------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/input/fsh/examples/BDOrganizationExample.fsh b/input/fsh/examples/BDOrganizationExample.fsh index 55eb192..bac8581 100644 --- a/input/fsh/examples/BDOrganizationExample.fsh +++ b/input/fsh/examples/BDOrganizationExample.fsh @@ -1,24 +1,22 @@ Instance: BDOrganizationExample InstanceOf: BDOrganization Usage: #example -Title: "Example of a Bangladesh Healthcare Organization" -Description: "An example of a hospital or clinic identifier for the DGHS HIE." +Title: "Dhaka Medical College Hospital" +Description: "Example for DMCH using the Facility Code 10000033" -// Required Identifier (1..* MS) -// Using a mock DGHS Facility ID (often referred to as 'Org Code' in Bangladesh) -* identifier[0].system = "https://fhir.dghs.gov.bd/core/identifier/facility-id" -* identifier[0].value = "10001234" +// Strictly following 'identifier 1..* MS' from your profile +* identifier[0].value = "10000033" +* identifier[0].system = "http://hrm.dghs.gov.bd/facilities/code" // Using a generic DGHS system * identifier[0].type = http://terminology.hl7.org/CodeSystem/v2-0203#FI "Facility ID" * name = "Dhaka Medical College Hospital" -// Optional but helpful contact info -* telecom[0].system = #phone -* telecom[0].value = "+88029669340" -* telecom[0].use = #work - +// Standard FHIR Address fields (No 'division' as a top-level field) * address[0].line = "100 Ramna" * address[0].city = "Dhaka" * address[0].district = "Dhaka" -* address[0].division = "Dhaka" -* address[0].country = "BD" \ No newline at end of file +* address[0].country = "BD" + +// To include Division without a 'does not exist' error, use the extension syntax: +* address[0].extension[0].url = "https://fhir.dghs.gov.bd/core/StructureDefinition/bd-division" +* address[0].extension[0].valueCodeableConcept = https://fhir.dghs.gov.bd/core/CodeSystem/bd-geocodes#30 "Dhaka" \ No newline at end of file