CodeSystem $subsumes | Medplum

On this page

The $subsumes operation tests whether one code is a parent (more general) or child (more specific) of another code within a hierarchical code system. This is crucial for clinical decision support, where you need to determine if a specific diagnosis or procedure falls under a broader category.

For example, you can use $subsumes to check if a patient's specific heart condition code is a subtype of "cardiac disease," enabling rule-based alerts and automated clinical workflows that respond to categories of conditions, rather than exhaustive lists of individual codes.

Use Cases

Invoke the $subsumes operation

[baseUrl]/CodeSystem/$subsumes

[baseUrl]/CodeSystem/[id]/$subsumes

Parameters

Name Type Description Required
system string The canonical URL of the code system the codes belong to. No*
version string The version of the code system to search. No
codeA code One of the codes to test. Yes
codeB code The other code to test. Yes

Output

The operation returns a Parameters resource containing the resolved information for the code.

Parameter Name Type Description Required
outcome code A code describing the relationship between codeA and codeB (see below) Yes

The possible outcome values are:

Outcome Description
equivalent The two codes are the same, or mean the same thing
subsumes Code A is the more general parent of more specific code B
subsumed-by Code A is the more specific child of more general code B
not-subsumed Codes A and B are not directly related

Request:

To check whether SNOMED code 364075005 (Heart rate) is a descendant code of 363787002 (Observable entity):

GET https://api.medplum.com/fhir/R4/CodeSystem/$subsumes?system=http://snomed.info/sct&codeA=364075005&codeB=363787002
curl 'https://api.medplum.com/fhir/R4/CodeSystem/$subsumes' \

--get \

-H "Authorization: Bearer $MY_ACCESS_TOKEN" \

-d 'system=http://snomed.info/sct' \

-d 'codeA=364075005' \

-d 'codeB=363787002'

Response (200 OK):

{

"resourceType": "Parameters",

"parameter": [\
\
    { "name": "outcome", "valueCode": "subsumed-by" }\
\
  ]

}