Termbox Docs

SNOMED guide

ConceptMaps

SNOMED CT ships with refsets that describe mappings between SNOMED concepts and other code systems. The FHIR specification covers how these are represented in Using SNOMED CT with HL7 Standards. There are three types:

Simple map refsets map each SNOMED concept to a single target code in another system — for example, ICD-O-3 and CTV3.

Association refsets record historical relationships between active and inactive SNOMED concepts. When a concept is retired, association refsets point to its replacement(s): REPLACED BY, SAME AS, POSSIBLY EQUIVALENT TO, or ALTERNATIVE.

Extended map refsets support complex mapping scenarios such as ICD-10, where a single SNOMED concept may require multiple target codes (map groups), ordered conditional alternatives (map priorities), and IFA rules that depend on patient context such as age or sex.

Implicit ConceptMaps

Each SNOMED CT mapping refset is available as an implicit ConceptMap using the fhir_cm query parameter:

http://snomed.info/sct?fhir_cm={refsetId}

The following ConceptMaps are loaded with SNOMED CT International:

Implicit URLTarget SystemType
http://snomed.info/sct?fhir_cm=446608001http://terminology.hl7.org/CodeSystem/icd-o-3Simple map
http://snomed.info/sct?fhir_cm=447562003http://hl7.org/fhir/sid/icd-10Extended map
http://snomed.info/sct?fhir_cm=900000000000497000http://read.info/ctv3Simple map
http://snomed.info/sct?fhir_cm=900000000000526001http://snomed.info/sctAssociation (REPLACED BY)
http://snomed.info/sct?fhir_cm=900000000000527005http://snomed.info/sctAssociation (SAME AS)
http://snomed.info/sct?fhir_cm=900000000000523009http://snomed.info/sctAssociation (POSSIBLY EQUIVALENT TO)
http://snomed.info/sct?fhir_cm=900000000000530003http://snomed.info/sctAssociation (ALTERNATIVE)

Use the url parameter in $translate to target a specific map:

POST /fhir/ConceptMap/$translate
Content-Type: application/json

{
  "resourceType": "Parameters",
  "parameter": [
    { "name": "url",          "valueUri":  "http://snomed.info/sct?fhir_cm=447562003" },
    { "name": "sourceCode",   "valueCode": "73211009" },
    { "name": "sourceSystem", "valueUri":  "http://snomed.info/sct" }
  ]
}

Omit url and pass only sourceSystem + targetSystem to let the server find the right map automatically:

POST /fhir/ConceptMap/$translate
Content-Type: application/json

{
  "resourceType": "Parameters",
  "parameter": [
    { "name": "sourceCode",   "valueCode": "73211009" },
    { "name": "sourceSystem", "valueUri":  "http://snomed.info/sct" },
    { "name": "targetSystem", "valueUri":  "http://hl7.org/fhir/sid/icd-10" }
  ]
}

Last updated: