Skip to content
Partner Developer Portal byOptum

Definition

The clinical code data model provides a reference to original EMISWeb codes for translating a patients clinical information, like observations, diagnosis’ and treatments.

The clinical code model contains EMISWeb code ids and their category description, mapped SNOMED CT codes, as well as other national codes, a variety of standardised coding systems used for different purposes, defined by the NHS

  • The is_deleted column has been added to indicate whether a clinical code has been marked as deleted
  • The is_deleted column enables more effective data maintenance by allowing customers to identify and manage deleted clinical codes
SELECT
DISTINCT(emis_code_category_description)
FROM hive.explorer_open_safely.clinical_code
ORDER BY emis_code_category_description ASC
SELECT
DISTINCT national_code,
national_description
FROM hive.explorer_open_safely.clinical_code
WHERE national_code_category = 'PREFERRED COMMUNICATION LANGUAGE'