FHIR Chat · Create Coding and Codable Concept inside Structure Map · mapping-framework

Stream: mapping-framework

Topic: Create Coding and Codable Concept inside Structure Map


view this post on Zulip amit bodhwani (May 17 2021 at 06:10):

I have created Structure Map for understanding Coding and Codable Concept for Patient Resource with Codable Concept for identifier.type and jurisdictions.
For identifier.type I have used transform operation as copy and
For jurisdictions I used transform operation as "cc" ( to create the Codable Concept) similar to the example shared by Oliver Egger (once again thanks a lot for the example).
I want to include below scenarios in structure map(json) with Coding and CodableConcept

Input has 3 input fields (code , system and another code) and I want to translate this to Coding[0] with code and system
Coding[1] with another Code.
2 . How to pass display and text as well in codable concept inside structure map example shared by Oliver Egger similar to below example if "transform": "cc" or "transform": "copy"
"valueCodeableConcept": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "260385009",
"display": "Negative"
}, {
"system": "https://acme.lab/resultcodes",
"code": "NEG",
"display": "Negative"
}
],
"text": "Negative for Chlamydia Trachomatis rRNA"
}
also I would like to know
in the below screen shot the system and code are passed in parameters [] array, where system I believe is passed using key "valueString" and "code" is passed using key "valueId":"code" , i would like to know since the code value is not hardcoded and is coming from the source and is passed to key "valueId" , how to map the exact code inside the key "valueId": from the source.
Example : coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v2-0203",
"code": "MR"
}
]

image.png


Last updated: Apr 12 2022 at 19:14 UTC