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.
Information
Section titled “Information”The model includes deleted status indicators to show when codes are no longer active or have been reclassified from ethnicity codes to other types.
Schema updates for data maintenance
Section titled “Schema updates for data maintenance”- The
is_deletedcolumn has been added to indicate whether an ethnicity code mapping has been marked as deleted or reclassified
Examples
Section titled “Examples”Active ethnicity codes
Section titled “Active ethnicity codes”SELECT code_id, snomed_concept_id, snomed_description, organisation, transform_datetimeFROM hive.explorer_open_safely.mkb_mapping_ethnicityWHERE is_deleted = FALSEORDER BY snomed_descriptionFind specific ethnicity type
Section titled “Find specific ethnicity type”SELECT code_id, snomed_concept_id, snomed_description, organisation, transform_datetimeFROM hive.explorer_open_safely.mkb_mapping_ethnicityWHERE is_deleted = FALSE AND snomed_description LIKE '%Asian%'ORDER BY snomed_descriptionHistorical ethnicity codes
Section titled “Historical ethnicity codes”SELECT code_id, snomed_concept_id, snomed_description, snomed_description_id, organisation, transform_datetimeFROM hive.explorer_open_safely.mkb_mapping_ethnicityWHERE is_deleted = TRUEORDER BY transform_datetime DESC
