FHIR Chat · ConceptMap mapping to multiple CodeSystems · implementers

Stream: implementers

Topic: ConceptMap mapping to multiple CodeSystems


view this post on Zulip Shamil Nizamov (Dec 09 2020 at 17:38):

Am I correct that to specify which code system the target concept uses in case the target value set comprises of multiple code systems (in the ConceptMap resource), I can use ConceptMap.element.target.dependsOn.codeSystem?

It would be nice to have an example that shows mapping from the source value set to a target value set where the latter uses concepts from multiple code systems (e.g., codes and NullFlavour values).

view this post on Zulip Grahame Grieve (Dec 09 2020 at 19:27):

you would use multiple groups. dependsOn is something else altogether.

view this post on Zulip Grahame Grieve (Dec 09 2020 at 19:29):

if you have a logical mapping, I can make it into a conceptMap for you

view this post on Zulip Brendan Keeler (May 24 2021 at 22:46):

@Grahame Grieve I'm looking at using ConceptMap for mapping from ICD-10-CM to CCS, where one ICD-10-CM diagnosis may have multiple CCS groups (primary, secondary, etc). Using the group structure, do I repeat the full group? Or the group.target?

view this post on Zulip Brendan Keeler (May 24 2021 at 22:48):

Screen-Shot-2021-05-24-at-3.44.13-PM.png

Here you can see a row, where the first column is an ICD-10 code and then there is a 'Default CCSR CATEGORY IP' column and an optional ''CCSR CATEGORY 2' column.

view this post on Zulip Brendan Keeler (May 24 2021 at 22:49):

          "code": "A000",
          "target": [
            {
              "code": "DIG001",
              "equivalence": "inexact",
              "comment": "primary"
            }
          ]
        },
     {
          "code": "A000",
          "target": [
            {
              "code": "INF003",
              "equivalence": "inexact",
              "comment": "secondary"
            }
          ]
        },```

view this post on Zulip Brendan Keeler (May 24 2021 at 22:50):

vs

view this post on Zulip Brendan Keeler (May 24 2021 at 22:50):

      "code": "A000",
      "target": [
        {
          "code": "DIG001",
          "equivalence": "inexact".
          "comment": "primary"
        }, 
{
          "code": "INF003",
          "equivalence": "inexact",
          "comment": "secondary"
        }
      ]
    },

view this post on Zulip Grahame Grieve (Jun 03 2021 at 00:49):

repeat group.target


Last updated: Apr 12 2022 at 19:14 UTC