Skip to content
Partner Developer Portal

Definition

The MKB Mapping — Ethnicity model provides a standardized reference for ethnicity codes, mapping local codes to SNOMED CT concepts for consistent ethnicity information across healthcare systems.

The model includes deleted status indicators to show when codes are no longer active or have been reclassified from ethnicity codes to other types.

  • The is_deleted column has been added to indicate whether an ethnicity code mapping has been marked as deleted or reclassified
  • The is_deleted column enables more effective data maintenance by allowing customers to identify and manage obsolete ethnicity mappings and codes that are no longer classified as ethnicity types
  • Update your ETL processes to use the is_deleted column to filter out obsolete ethnicity mappings and maintain data quality for ethnicity code classifications
SELECT
code_id,
snomed_concept_id,
snomed_description,
organisation,
transform_datetime
FROM hive.explorer_ipcv.srv_mkb_mapping_ethnicity
WHERE
is_deleted = FALSE
ORDER BY
snomed_description
SELECT
code_id,
snomed_concept_id,
snomed_description,
organisation,
transform_datetime
FROM hive.explorer_ipcv.srv_mkb_mapping_ethnicity
WHERE
is_deleted = FALSE
AND snomed_description LIKE '%Asian%'
ORDER BY
snomed_description
SELECT
code_id,
snomed_concept_id,
snomed_description,
snomed_description_id,
organisation,
transform_datetime
FROM hive.explorer_ipcv.srv_mkb_mapping_ethnicity
WHERE
is_deleted = TRUE
ORDER BY
transform_datetime DESC