From 9d441b71860861332112e0ef520566eb6613542e Mon Sep 17 00:00:00 2001 From: Maxim Moinat Date: Sat, 15 Aug 2020 14:34:34 +0200 Subject: [PATCH 1/9] bump snapshot version --- pom.xml | 2 +- rabbit-core/pom.xml | 2 +- rabbitinahat/pom.xml | 2 +- whiterabbit/pom.xml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 70f033da..337ae934 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.ohdsi leporidae pom - 0.10.2 + 0.10.3-snapshot rabbitinahat whiterabbit diff --git a/rabbit-core/pom.xml b/rabbit-core/pom.xml index b96bce1f..c120c111 100644 --- a/rabbit-core/pom.xml +++ b/rabbit-core/pom.xml @@ -5,7 +5,7 @@ leporidae org.ohdsi - 0.10.2 + 0.10.3-snapshot 4.0.0 diff --git a/rabbitinahat/pom.xml b/rabbitinahat/pom.xml index fe67c65a..2251598f 100644 --- a/rabbitinahat/pom.xml +++ b/rabbitinahat/pom.xml @@ -5,7 +5,7 @@ leporidae org.ohdsi - 0.10.2 + 0.10.3-snapshot 4.0.0 diff --git a/whiterabbit/pom.xml b/whiterabbit/pom.xml index 439bcfea..a3f15798 100644 --- a/whiterabbit/pom.xml +++ b/whiterabbit/pom.xml @@ -5,7 +5,7 @@ leporidae org.ohdsi - 0.10.2 + 0.10.3-snapshot 4.0.0 From 4769bf1759be5e7572206ece6d07e6ca33d850f1 Mon Sep 17 00:00:00 2001 From: Maxim Moinat Date: Tue, 18 Aug 2020 10:26:29 +0200 Subject: [PATCH 2/9] fixes #267 --- .../org/ohdsi/utilities/StringUtilities.java | 28 +++++++++++++++- .../ohdsi/whiteRabbit/WhiteRabbitMain.java | 33 ++++--------------- .../whiteRabbit/scan/SourceDataScan.java | 8 +++-- 3 files changed, 39 insertions(+), 30 deletions(-) diff --git a/rabbit-core/src/main/java/org/ohdsi/utilities/StringUtilities.java b/rabbit-core/src/main/java/org/ohdsi/utilities/StringUtilities.java index ff2cfeda..70aeb954 100644 --- a/rabbit-core/src/main/java/org/ohdsi/utilities/StringUtilities.java +++ b/rabbit-core/src/main/java/org/ohdsi/utilities/StringUtilities.java @@ -871,5 +871,31 @@ public static boolean isDate(String string) { } return false; } - + + public static int numericOptionToInt(String option) { + switch (option) { + case "100": + case "1 hundred": + return 100; + case "1,000": + case "1 thousand": + return 1000; + case "10,000": + case "10 thousand": + return 10000; + case "100,000": + case "100 thousand": + return 100000; + case "500,000": + case "500 thousand": + return 500000; + case "1,000,000": + case "1 million": + return 1000000; + case "all": + return -1; + default: + return 0; + } + } } diff --git a/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/WhiteRabbitMain.java b/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/WhiteRabbitMain.java index 93c8eb09..84e21543 100644 --- a/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/WhiteRabbitMain.java +++ b/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/WhiteRabbitMain.java @@ -454,7 +454,7 @@ public void actionPerformed(ActionEvent e) { scanOptionsTopPanel.add(Box.createHorizontalGlue()); scanOptionsTopPanel.add(new JLabel("Max distinct values ")); - scanValuesCount = new JComboBox<>(new String[] { "100", "1,000", "10,000" }); + scanValuesCount = new JComboBox<>(new String[] { "100", "1,000", "10,000", "100,000" }); scanValuesCount.setSelectedIndex(1); scanValuesCount.setToolTipText("Maximum number of distinct values per field to be reported"); scanOptionsTopPanel.add(scanValuesCount); @@ -478,7 +478,7 @@ public void actionPerformed(ActionEvent e) { scanOptionsLowerPanel.add(Box.createHorizontalGlue()); scanOptionsLowerPanel.add(new JLabel("Numeric stats reservoir size: ")); - numericStatsSampleSize = new JComboBox<>(new String[] { "100,000", "500,000", "1 million"}); + numericStatsSampleSize = new JComboBox<>(new String[] { "100,000", "500,000", "1 million" }); numericStatsSampleSize.setSelectedIndex(0); numericStatsSampleSize.setToolTipText("Maximum number of rows used to calculate numeric statistics"); scanOptionsLowerPanel.add(numericStatsSampleSize); @@ -971,31 +971,10 @@ private void scanRun() { return; } } - int rowCount = 0; - if (scanRowCount.getSelectedItem().toString().equals("100,000")) - rowCount = 100000; - else if (scanRowCount.getSelectedItem().toString().equals("500,000")) - rowCount = 500000; - else if (scanRowCount.getSelectedItem().toString().equals("1 million")) - rowCount = 1000000; - if (scanRowCount.getSelectedItem().toString().equals("all")) - rowCount = -1; - - int valuesCount = 0; - if (scanValuesCount.getSelectedItem().toString().equals("100")) - valuesCount = 100; - else if (scanValuesCount.getSelectedItem().toString().equals("1,000")) - valuesCount = 1000; - else if (scanValuesCount.getSelectedItem().toString().equals("10,000")) - valuesCount = 10000; - - int numStatsSamplerSize = 0; - if (numericStatsSampleSize.getSelectedItem().toString().equals("100,000")) - numStatsSamplerSize = 100000; - else if (numericStatsSampleSize.getSelectedItem().toString().equals("500,000")) - numStatsSamplerSize = 500000; - else if (numericStatsSampleSize.getSelectedItem().toString().equals("1 million")) - numStatsSamplerSize = 1000000; + + int rowCount = StringUtilities.numericOptionToInt(scanRowCount.getSelectedItem().toString()); + int valuesCount = StringUtilities.numericOptionToInt(scanValuesCount.getSelectedItem().toString()); + int numStatsSamplerSize = StringUtilities.numericOptionToInt(numericStatsSampleSize.getSelectedItem().toString()); ScanThread scanThread = new ScanThread( rowCount, diff --git a/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/scan/SourceDataScan.java b/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/scan/SourceDataScan.java index 2a6358d7..3bfe9637 100644 --- a/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/scan/SourceDataScan.java +++ b/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/scan/SourceDataScan.java @@ -72,6 +72,7 @@ public class SourceDataScan { public void setSampleSize(int sampleSize) { + // -1 if sample size is not restricted this.sampleSize = sampleSize; } @@ -554,7 +555,7 @@ private List processCsvFile(String filename) { } } } - if (lineNr > sampleSize) + if (sampleSize != -1 && lineNr > sampleSize) break; } for (FieldInfo fieldInfo : fieldInfos) @@ -583,7 +584,7 @@ private List processSasFile(SasFileReader sasFileReader) throws IOExc return fieldInfos; } - for (int lineNr = 0; lineNr < sasFileProperties.getRowCount() && lineNr < sampleSize; lineNr++) { + for (int lineNr = 0; lineNr < sasFileProperties.getRowCount(); lineNr++) { Object[] row = sasFileReader.readNext(); if (row.length != fieldInfos.size()) { @@ -594,6 +595,9 @@ private List processSasFile(SasFileReader sasFileReader) throws IOExc for (int i = 0; i < row.length; i++) { fieldInfos.get(i).processValue(row[i] == null ? "" : row[i].toString()); } + + if (sampleSize != -1 && lineNr >= sampleSize) + break; } for (FieldInfo fieldInfo : fieldInfos) { From 683a65781321491544b63bbb90671e3b1a541b2b Mon Sep 17 00:00:00 2001 From: Maxim Moinat Date: Tue, 18 Aug 2020 10:56:10 +0200 Subject: [PATCH 3/9] fixes 253 --- .../ohdsi/whiteRabbit/WhiteRabbitMain.java | 27 ++++++++++++++++--- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/WhiteRabbitMain.java b/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/WhiteRabbitMain.java index 93c8eb09..cfbfb83f 100644 --- a/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/WhiteRabbitMain.java +++ b/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/WhiteRabbitMain.java @@ -29,8 +29,6 @@ import java.awt.Toolkit; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; -import java.awt.event.ItemEvent; -import java.awt.event.ItemListener; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.io.File; @@ -212,9 +210,30 @@ else if (iniFile.get("DATA_TYPE").equalsIgnoreCase("BigQuery")) { dbSettings.domain = dbSettings.database; } } + if (iniFile.get("TABLES_TO_SCAN").equalsIgnoreCase("*")) { - try (RichConnection connection = new RichConnection(dbSettings.server, dbSettings.domain, dbSettings.user, dbSettings.password, dbSettings.dbType)) { - dbSettings.tables.addAll(connection.getTableNames(dbSettings.database)); + if (dbSettings.sourceType == DbSettings.SourceType.DATABASE) { + try (RichConnection connection = new RichConnection(dbSettings.server, dbSettings.domain, dbSettings.user, dbSettings.password, dbSettings.dbType)) { + dbSettings.tables.addAll(connection.getTableNames(dbSettings.database)); + } + } else { + String extension; + if (dbSettings.sourceType == DbSettings.SourceType.CSV_FILES) { + extension = ".csv"; + } else { + extension = ".sas7bdat"; + } + File folder = new File(iniFile.get("WORKING_FOLDER")); + if (folder.isDirectory()) { + for (File file : folder.listFiles()) { + if (file.isFile()) { + String filename = file.getName(); + if (filename.endsWith(extension)) { + dbSettings.tables.add(filename); + } + } + } + } } } else { for (String table : iniFile.get("TABLES_TO_SCAN").split(",")) { From b3f2f91b29a11b93444d959b080802233b7d8270 Mon Sep 17 00:00:00 2001 From: Maxim Moinat Date: Tue, 18 Aug 2020 11:22:56 +0200 Subject: [PATCH 4/9] improve parsing of ini scan settings --- .../org/ohdsi/whiteRabbit/WhiteRabbitMain.java | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/WhiteRabbitMain.java b/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/WhiteRabbitMain.java index cfbfb83f..5913aca9 100644 --- a/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/WhiteRabbitMain.java +++ b/whiterabbit/src/main/java/org/ohdsi/whiteRabbit/WhiteRabbitMain.java @@ -227,7 +227,7 @@ else if (iniFile.get("DATA_TYPE").equalsIgnoreCase("BigQuery")) { if (folder.isDirectory()) { for (File file : folder.listFiles()) { if (file.isFile()) { - String filename = file.getName(); + String filename = file.getAbsolutePath(); if (filename.endsWith(extension)) { dbSettings.tables.add(filename); } @@ -246,10 +246,18 @@ else if (iniFile.get("DATA_TYPE").equalsIgnoreCase("BigQuery")) { SourceDataScan sourceDataScan = new SourceDataScan(); int maxRows = Integer.parseInt(iniFile.get("ROWS_PER_TABLE")); boolean scanValues = iniFile.get("SCAN_FIELD_VALUES").equalsIgnoreCase("yes"); - int minCellCount = Integer.parseInt(iniFile.get("MIN_CELL_COUNT")); - int maxValues = Integer.parseInt(iniFile.get("MAX_DISTINCT_VALUES")); - boolean calculateNumericStats = iniFile.get("CALCULATE_NUMERIC_STATS").equalsIgnoreCase("yes"); - int numericStatsSamplerSize = Integer.parseInt(iniFile.get("NUMERIC_STATS_SAMPLER_SIZE")); + int minCellCount = 0; + int maxValues = 0; + boolean calculateNumericStats = false; + int numericStatsSamplerSize = 0; + if (scanValues) { + minCellCount = Integer.parseInt(iniFile.get("MIN_CELL_COUNT")); + maxValues = Integer.parseInt(iniFile.get("MAX_DISTINCT_VALUES")); + calculateNumericStats = iniFile.get("CALCULATE_NUMERIC_STATS").equalsIgnoreCase("yes"); + if (calculateNumericStats) { + numericStatsSamplerSize = Integer.parseInt(iniFile.get("NUMERIC_STATS_SAMPLER_SIZE")); + } + } sourceDataScan.setSampleSize(maxRows); sourceDataScan.setScanValues(scanValues); From 35908cb57c89174f668d8d0d2eb93ba3efc41131 Mon Sep 17 00:00:00 2001 From: Maxim Moinat Date: Tue, 16 Feb 2021 14:42:50 +0100 Subject: [PATCH 5/9] add consolidated type concepts --- .../rabbitInAHat/dataModel/ConceptsMap.java | 6 +- .../rabbitInAHat/dataModel/Database.java | 6 +- ....0_02-OCT-19.csv => CDMConceptIDHints.csv} | 1702 +++++++++++++---- .../dataModel/concept_id_hint_select.sql | 39 +- 4 files changed, 1350 insertions(+), 403 deletions(-) rename rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/{CDMConceptIDHints_v5.0_02-OCT-19.csv => CDMConceptIDHints.csv} (58%) diff --git a/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/ConceptsMap.java b/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/ConceptsMap.java index c940ff9e..a09184dc 100644 --- a/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/ConceptsMap.java +++ b/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/ConceptsMap.java @@ -20,6 +20,7 @@ import org.apache.commons.csv.CSVFormat; import org.apache.commons.csv.CSVRecord; +import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; @@ -28,6 +29,7 @@ public class ConceptsMap { private Map>> conceptMap; + private String vocabularyVersion; private ConceptsMap() { this.conceptMap = new HashMap<>(); @@ -40,7 +42,9 @@ private ConceptsMap() { private void load(String filename) throws IOException{ try (InputStream conceptStream = Database.class.getResourceAsStream(filename)) { - for (CSVRecord conceptRow : CSVFormat.RFC4180.withHeader().parse(new InputStreamReader(conceptStream))) { + BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(conceptStream)); + vocabularyVersion = bufferedReader.readLine(); + for (CSVRecord conceptRow : CSVFormat.RFC4180.withHeader().parse(bufferedReader)) { String omopTableName = conceptRow.get("omop_cdm_table"); String omopFieldName = conceptRow.get("omop_cdm_field"); diff --git a/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/Database.java b/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/Database.java index 887262c7..2a4673d7 100644 --- a/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/Database.java +++ b/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/Database.java @@ -55,7 +55,7 @@ public enum CDMVersion { private List tables = new ArrayList
(); private static final long serialVersionUID = -3912166654601191039L; private String dbName = ""; - private static String CONCEPT_ID_HINTS_FILE_NAME = "CDMConceptIDHints_v5.0_02-OCT-19.csv"; + private static String CONCEPT_ID_HINTS_FILE_NAME = "CDMConceptIDHints.csv"; public List
getTables() { return tables; @@ -91,7 +91,7 @@ public static Database generateModelFromCSV(InputStream stream, String dbName) { Map nameToTable = new HashMap<>(); try { - ConceptsMap conceptsMap = new ConceptsMap(CONCEPT_ID_HINTS_FILE_NAME); + ConceptsMap conceptIdHintsMap = new ConceptsMap(CONCEPT_ID_HINTS_FILE_NAME); for (CSVRecord row : CSVFormat.RFC4180.withHeader().parse(new InputStreamReader(stream))) { String tableNameColumn; @@ -128,7 +128,7 @@ public static Database generateModelFromCSV(InputStream stream, String dbName) { field.setNullable(row.get(isNullableColumn).equals(nullableValue)); field.setType(row.get(dataTypeColumn)); field.setDescription(row.get(descriptionColumn)); - field.setConceptIdHints(conceptsMap.get(table.getName(), field.getName())); + field.setConceptIdHints(conceptIdHintsMap.get(table.getName(), field.getName())); table.getFields().add(field); } diff --git a/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/CDMConceptIDHints_v5.0_02-OCT-19.csv b/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/CDMConceptIDHints.csv similarity index 58% rename from rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/CDMConceptIDHints_v5.0_02-OCT-19.csv rename to rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/CDMConceptIDHints.csv index b5503776..a7b6dd74 100644 --- a/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/CDMConceptIDHints_v5.0_02-OCT-19.csv +++ b/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/CDMConceptIDHints.csv @@ -1,108 +1,83 @@ +# v5.0 21-DEC-20 omop_cdm_table,omop_cdm_field,concept_id,concept_name,domain_id,vocabulary_id,concept_class_id,standard_concept -condition_occurrence,condition_type_concept_id,45756852,Carrier claim detail - 10th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756853,Carrier claim detail - 11th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756854,Carrier claim detail - 12th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756855,Carrier claim detail - 13th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756843,Carrier claim detail - 1st position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756844,Carrier claim detail - 2nd position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756845,Carrier claim detail - 3rd position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756846,Carrier claim detail - 4th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756847,Carrier claim detail - 5th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756848,Carrier claim detail - 6th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756849,Carrier claim detail - 7th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756850,Carrier claim detail - 8th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756851,Carrier claim detail - 9th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756835,Carrier claim header - 1st position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756836,Carrier claim header - 2nd position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756837,Carrier claim header - 3rd position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756838,Carrier claim header - 4th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756839,Carrier claim header - 5th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756840,Carrier claim header - 6th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756841,Carrier claim header - 7th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45756842,Carrier claim header - 8th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000246,Condition era - 0 days persistence window,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000247,Condition era - 30 days persistence window,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,5086,Condition tested for by diagnostic procedure,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,42894222,EHR Chief Complaint,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45754805,EHR Episode Entry,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,32019,EHR billing diagnosis,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,32020,EHR encounter diagnosis,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000245,EHR problem list entry,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,44786628,First Position Condition,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000193,Inpatient detail - 10th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000194,Inpatient detail - 11th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000195,Inpatient detail - 12th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000196,Inpatient detail - 13th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000197,Inpatient detail - 14th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000198,Inpatient detail - 15th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,44818709,Inpatient detail - 16th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,44818710,Inpatient detail - 17th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,44818711,Inpatient detail - 18th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,44818712,Inpatient detail - 19th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000184,Inpatient detail - 1st position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,44818713,Inpatient detail - 20th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000185,Inpatient detail - 2nd position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000186,Inpatient detail - 3rd position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000187,Inpatient detail - 4th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000188,Inpatient detail - 5th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000189,Inpatient detail - 6th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000190,Inpatient detail - 7th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000191,Inpatient detail - 8th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000192,Inpatient detail - 9th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000183,Inpatient detail - primary,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000209,Inpatient header - 10th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000210,Inpatient header - 11th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000211,Inpatient header - 12th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000212,Inpatient header - 13th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000213,Inpatient header - 14th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000214,Inpatient header - 15th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000200,Inpatient header - 1st position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000201,Inpatient header - 2nd position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000202,Inpatient header - 3rd position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000203,Inpatient header - 4th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000204,Inpatient header - 5th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000205,Inpatient header - 6th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000206,Inpatient header - 7th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000207,Inpatient header - 8th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000208,Inpatient header - 9th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000199,Inpatient header - primary,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,32424,NLP derived,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,43542353,Observation recorded from EHR,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000224,Outpatient detail - 10th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000225,Outpatient detail - 11th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000226,Outpatient detail - 12th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000227,Outpatient detail - 13th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000228,Outpatient detail - 14th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000229,Outpatient detail - 15th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000215,Outpatient detail - 1st position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000216,Outpatient detail - 2nd position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000217,Outpatient detail - 3rd position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000218,Outpatient detail - 4th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000219,Outpatient detail - 5th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000220,Outpatient detail - 6th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000221,Outpatient detail - 7th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000222,Outpatient detail - 8th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000223,Outpatient detail - 9th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000239,Outpatient header - 10th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000240,Outpatient header - 11th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000241,Outpatient header - 12th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000242,Outpatient header - 13th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000243,Outpatient header - 14th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000244,Outpatient header - 15th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000230,Outpatient header - 1st position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000231,Outpatient header - 2nd position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000232,Outpatient header - 3rd position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000233,Outpatient header - 4th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000234,Outpatient header - 5th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000235,Outpatient header - 6th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000236,Outpatient header - 7th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000237,Outpatient header - 8th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,38000238,Outpatient header - 9th position,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,45905770,Patient Self-Reported Condition,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,44786627,Primary Condition,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,42898140,Referral record,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,44786629,Secondary Condition,Type Concept,Condition Type,Condition Type,S -condition_occurrence,condition_type_concept_id,32535,Tumor Registry,Type Concept,Condition Type,Condition Type,S +condition_occurrence,condition_type_concept_id,32809,Case Report Form,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32810,Claim,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32811,Claim authorization,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32812,Claim discharge record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32813,Claim enrolment record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32814,Cost record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32815,Death Certificate,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32816,Dental claim,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32817,EHR,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32835,EHR Pathology report,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32818,EHR administration record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32819,EHR admission note,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32820,EHR ancillary report,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32821,EHR billing record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32822,EHR chief complaint,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32823,EHR discharge record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32824,EHR discharge summary,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32825,EHR dispensing record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32826,EHR emergency room note,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32827,EHR encounter record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32828,EHR episode record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32829,EHR inpatient note,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32830,EHR medication list,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32831,EHR note,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32832,EHR nursing report,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32833,EHR order,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32834,EHR outpatient note,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32836,EHR physical examination,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32837,EHR planned dispensing record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32838,EHR prescription,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32839,EHR prescription issue record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32840,EHR problem list,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32841,EHR radiology report,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32842,EHR referral record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32843,External CDM instance,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32844,Facility claim,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32845,Facility claim detail,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32846,Facility claim header,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32847,Geographic isolation record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32848,Government report,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32849,Health Information Exchange record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32850,Health Risk Assessment,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32851,Healthcare professional filled survey,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32852,Hospital cost,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32853,Inpatient claim,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32854,Inpatient claim detail,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32855,Inpatient claim header,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32856,Lab,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32857,Mail order record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32858,NLP,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32859,Outpatient claim,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32860,Outpatient claim detail,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32861,Outpatient claim header,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32862,Patient filled survey,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32863,Patient or payer paid record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32864,Patient reported cost,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32865,Patient self-report,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32866,Payer system record (paid premium),Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32867,Payer system record (primary payer),Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32868,Payer system record (secondary payer),Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32869,Pharmacy claim,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32870,Pre-qualification time period,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32871,Professional claim,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32872,Professional claim detail,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32873,Professional claim header,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32874,Provider charge list price,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32875,Provider financial system,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32876,Provider incurred cost record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32877,Randomization record,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32878,Reference lab,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32879,Registry,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32880,Standard algorithm,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32882,Standard algorithm from EHR,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32881,Standard algorithm from claims,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32883,Survey,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32885,US Social Security Death Master File,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32884,Urgent lab,Type Concept,Type Concept,Type Concept,S +condition_occurrence,condition_type_concept_id,32886,Vision claim,Type Concept,Type Concept,Type Concept,S cost,cost_concept_id,32017,Accumulated Deductible,Cost,Cost,Summary,S cost,cost_concept_id,32448,Actual acquisition cost,Cost,Cost,Detail,S cost,cost_concept_id,32447,Actual acquisition cost,Cost,Cost,Summary,S @@ -154,87 +129,329 @@ cost,cost_concept_id,31999,Recovered,Cost,Cost,Detail,S cost,cost_concept_id,31977,Recovered,Cost,Cost,Summary,S cost,cost_concept_id,32008,"Usual, customary and reasonable",Cost,Cost,Detail,S cost,cost_concept_id,31986,"Usual, customary and reasonable",Cost,Cost,Summary,S -cost,cost_type_concept_id,31970,Payer system (Paid premium),Type Concept,Cost Type,Cost Type,S -cost,cost_type_concept_id,31968,Payer system (Primary payer),Type Concept,Cost Type,Cost Type,S -cost,cost_type_concept_id,31969,Payer system (Secondary payer),Type Concept,Cost Type,Cost Type,S -cost,cost_type_concept_id,32504,Person (self) reported,Type Concept,Cost Type,Cost Type,S -cost,cost_type_concept_id,32505,Provider System,Type Concept,Cost Type,Cost Type,S -death,death_type_concept_id,38003617,Death Certificate contributory cause,Type Concept,Condition Type,Death Type,S -death,death_type_concept_id,32512,Death Certificate contributory cause,Type Concept,Death Type,Death Type,S -death,death_type_concept_id,32496,Death Certificate contributory cause,Type Concept,Observation Type,Death Type,S -death,death_type_concept_id,38003570,Death Certificate immediate cause,Type Concept,Condition Type,Death Type,S -death,death_type_concept_id,32511,Death Certificate immediate cause,Type Concept,Death Type,Death Type,S -death,death_type_concept_id,32495,Death Certificate immediate cause,Type Concept,Observation Type,Death Type,S -death,death_type_concept_id,38003618,Death Certificate underlying cause,Type Concept,Condition Type,Death Type,S -death,death_type_concept_id,32513,Death Certificate underlying cause,Type Concept,Death Type,Death Type,S -death,death_type_concept_id,32497,Death Certificate underlying cause,Type Concept,Observation Type,Death Type,S -death,death_type_concept_id,255,EHR Record contributory cause of death,Type Concept,Condition Type,Death Type,S -death,death_type_concept_id,32516,EHR Record contributory cause of death,Type Concept,Death Type,Death Type,S -death,death_type_concept_id,32502,EHR Record contributory cause of death,Type Concept,Observation Type,Death Type,S -death,death_type_concept_id,254,EHR Record immediate cause of death,Type Concept,Condition Type,Death Type,S -death,death_type_concept_id,32515,EHR Record immediate cause of death,Type Concept,Death Type,Death Type,S -death,death_type_concept_id,32501,EHR Record immediate cause of death,Type Concept,Observation Type,Death Type,S -death,death_type_concept_id,256,EHR Record underlying cause of death,Type Concept,Condition Type,Death Type,S -death,death_type_concept_id,32517,EHR Record underlying cause of death,Type Concept,Death Type,Death Type,S -death,death_type_concept_id,32503,EHR Record underlying cause of death,Type Concept,Observation Type,Death Type,S -death,death_type_concept_id,44818516,"EHR discharge status ""Expired""",Type Concept,Condition Type,Death Type,S -death,death_type_concept_id,32514,"EHR discharge status ""Expired""",Type Concept,Death Type,Death Type,S -death,death_type_concept_id,32498,"EHR discharge status ""Expired""",Type Concept,Observation Type,Death Type,S -death,death_type_concept_id,38003569,"EHR record patient status ""Deceased""",Type Concept,Condition Type,Death Type,S -death,death_type_concept_id,32510,"EHR record patient status ""Deceased""",Type Concept,Death Type,Death Type,S -death,death_type_concept_id,32494,"EHR record patient status ""Deceased""",Type Concept,Observation Type,Death Type,S -death,death_type_concept_id,38003568,Medical claim DRG code indicating death,Type Concept,Condition Type,Death Type,S -death,death_type_concept_id,32509,Medical claim DRG code indicating death,Type Concept,Death Type,Death Type,S -death,death_type_concept_id,32493,Medical claim DRG code indicating death,Type Concept,Observation Type,Death Type,S -death,death_type_concept_id,38003567,Medical claim diagnostic code indicating death,Type Concept,Condition Type,Death Type,S -death,death_type_concept_id,32508,Medical claim diagnostic code indicating death,Type Concept,Death Type,Death Type,S -death,death_type_concept_id,32492,Medical claim diagnostic code indicating death,Type Concept,Observation Type,Death Type,S -death,death_type_concept_id,38003566,"Medical claim discharge status ""Died""",Type Concept,Condition Type,Death Type,S -death,death_type_concept_id,32507,"Medical claim discharge status ""Died""",Type Concept,Death Type,Death Type,S -death,death_type_concept_id,32491,"Medical claim discharge status ""Died""",Type Concept,Observation Type,Death Type,S -death,death_type_concept_id,242,Other government reported or identified death,Type Concept,Condition Type,Death Type,S -death,death_type_concept_id,32518,Other government reported or identified death,Type Concept,Death Type,Death Type,S -death,death_type_concept_id,32499,Other government reported or identified death,Type Concept,Observation Type,Death Type,S -death,death_type_concept_id,38003565,"Payer enrollment status ""Deceased""",Type Concept,Condition Type,Death Type,S -death,death_type_concept_id,32506,"Payer enrollment status ""Deceased""",Type Concept,Death Type,Death Type,S -death,death_type_concept_id,32490,"Payer enrollment status ""Deceased""",Type Concept,Observation Type,Death Type,S -death,death_type_concept_id,261,US Social Security Death Master File record,Type Concept,Condition Type,Death Type,S -death,death_type_concept_id,32519,US Social Security Death Master File record,Type Concept,Death Type,Death Type,S -death,death_type_concept_id,32500,US Social Security Death Master File record,Type Concept,Observation Type,Death Type,S -device_exposure,device_type_concept_id,44818707,EHR Detail,Type Concept,Device Type,Device Type,S -device_exposure,device_type_concept_id,32465,Inferred from claim,Type Concept,Device Type,Device Type,S -device_exposure,device_type_concept_id,44818705,Inferred from procedure claim,Type Concept,Device Type,Device Type,S -device_exposure,device_type_concept_id,44818706,Patient reported device,Type Concept,Device Type,Device Type,S -drug_exposure,drug_type_concept_id,581452,Dispensed in Outpatient office,Type Concept,Drug Type,Drug Type,S -drug_exposure,drug_type_concept_id,38000181,Drug era - 0 days persistence window,Type Concept,Drug Type,Drug Type,S -drug_exposure,drug_type_concept_id,38000182,Drug era - 30 days persistence window,Type Concept,Drug Type,Drug Type,S -drug_exposure,drug_type_concept_id,38000180,Inpatient administration,Type Concept,Drug Type,Drug Type,S -drug_exposure,drug_type_concept_id,38000178,Medication list entry,Type Concept,Drug Type,Drug Type,S -drug_exposure,drug_type_concept_id,32426,NLP derived,Type Concept,Drug Type,Drug Type,S -drug_exposure,drug_type_concept_id,44787730,Patient Self-Reported Medication,Type Concept,Drug Type,Drug Type,S -drug_exposure,drug_type_concept_id,38000179,Physician administered drug (identified as procedure),Type Concept,Drug Type,Drug Type,S -drug_exposure,drug_type_concept_id,43542358,Physician administered drug (identified from EHR observation),Type Concept,Drug Type,Drug Type,S -drug_exposure,drug_type_concept_id,581373,Physician administered drug (identified from EHR order),Type Concept,Drug Type,Drug Type,S -drug_exposure,drug_type_concept_id,43542356,Physician administered drug (identified from EHR problem list),Type Concept,Drug Type,Drug Type,S -drug_exposure,drug_type_concept_id,43542357,Physician administered drug (identified from referral record),Type Concept,Drug Type,Drug Type,S -drug_exposure,drug_type_concept_id,38000175,Prescription dispensed in pharmacy,Type Concept,Drug Type,Drug Type,S -drug_exposure,drug_type_concept_id,38000176,Prescription dispensed through mail order,Type Concept,Drug Type,Drug Type,S -drug_exposure,drug_type_concept_id,38000177,Prescription written,Type Concept,Drug Type,Drug Type,S -drug_exposure,drug_type_concept_id,44777970,Randomized Drug,Type Concept,Drug Type,Drug Type,S +cost,cost_type_concept_id,32809,Case Report Form,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32810,Claim,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32811,Claim authorization,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32812,Claim discharge record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32813,Claim enrolment record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32814,Cost record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32815,Death Certificate,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32816,Dental claim,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32817,EHR,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32835,EHR Pathology report,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32818,EHR administration record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32819,EHR admission note,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32820,EHR ancillary report,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32821,EHR billing record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32822,EHR chief complaint,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32823,EHR discharge record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32824,EHR discharge summary,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32825,EHR dispensing record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32826,EHR emergency room note,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32827,EHR encounter record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32828,EHR episode record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32829,EHR inpatient note,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32830,EHR medication list,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32831,EHR note,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32832,EHR nursing report,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32833,EHR order,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32834,EHR outpatient note,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32836,EHR physical examination,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32837,EHR planned dispensing record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32838,EHR prescription,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32839,EHR prescription issue record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32840,EHR problem list,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32841,EHR radiology report,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32842,EHR referral record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32843,External CDM instance,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32844,Facility claim,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32845,Facility claim detail,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32846,Facility claim header,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32847,Geographic isolation record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32848,Government report,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32849,Health Information Exchange record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32850,Health Risk Assessment,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32851,Healthcare professional filled survey,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32852,Hospital cost,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32853,Inpatient claim,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32854,Inpatient claim detail,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32855,Inpatient claim header,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32856,Lab,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32857,Mail order record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32858,NLP,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32859,Outpatient claim,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32860,Outpatient claim detail,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32861,Outpatient claim header,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32862,Patient filled survey,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32863,Patient or payer paid record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32864,Patient reported cost,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32865,Patient self-report,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32866,Payer system record (paid premium),Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32867,Payer system record (primary payer),Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32868,Payer system record (secondary payer),Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32869,Pharmacy claim,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32870,Pre-qualification time period,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32871,Professional claim,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32872,Professional claim detail,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32873,Professional claim header,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32874,Provider charge list price,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32875,Provider financial system,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32876,Provider incurred cost record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32877,Randomization record,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32878,Reference lab,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32879,Registry,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32880,Standard algorithm,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32882,Standard algorithm from EHR,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32881,Standard algorithm from claims,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32883,Survey,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32885,US Social Security Death Master File,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32884,Urgent lab,Type Concept,Type Concept,Type Concept,S +cost,cost_type_concept_id,32886,Vision claim,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32809,Case Report Form,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32810,Claim,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32811,Claim authorization,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32812,Claim discharge record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32813,Claim enrolment record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32814,Cost record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32815,Death Certificate,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32816,Dental claim,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32817,EHR,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32835,EHR Pathology report,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32818,EHR administration record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32819,EHR admission note,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32820,EHR ancillary report,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32821,EHR billing record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32822,EHR chief complaint,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32823,EHR discharge record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32824,EHR discharge summary,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32825,EHR dispensing record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32826,EHR emergency room note,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32827,EHR encounter record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32828,EHR episode record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32829,EHR inpatient note,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32830,EHR medication list,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32831,EHR note,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32832,EHR nursing report,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32833,EHR order,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32834,EHR outpatient note,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32836,EHR physical examination,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32837,EHR planned dispensing record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32838,EHR prescription,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32839,EHR prescription issue record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32840,EHR problem list,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32841,EHR radiology report,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32842,EHR referral record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32843,External CDM instance,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32844,Facility claim,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32845,Facility claim detail,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32846,Facility claim header,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32847,Geographic isolation record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32848,Government report,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32849,Health Information Exchange record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32850,Health Risk Assessment,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32851,Healthcare professional filled survey,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32852,Hospital cost,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32853,Inpatient claim,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32854,Inpatient claim detail,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32855,Inpatient claim header,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32856,Lab,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32857,Mail order record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32858,NLP,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32859,Outpatient claim,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32860,Outpatient claim detail,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32861,Outpatient claim header,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32862,Patient filled survey,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32863,Patient or payer paid record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32864,Patient reported cost,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32865,Patient self-report,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32866,Payer system record (paid premium),Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32867,Payer system record (primary payer),Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32868,Payer system record (secondary payer),Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32869,Pharmacy claim,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32870,Pre-qualification time period,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32871,Professional claim,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32872,Professional claim detail,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32873,Professional claim header,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32874,Provider charge list price,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32875,Provider financial system,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32876,Provider incurred cost record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32877,Randomization record,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32878,Reference lab,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32879,Registry,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32880,Standard algorithm,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32882,Standard algorithm from EHR,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32881,Standard algorithm from claims,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32883,Survey,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32885,US Social Security Death Master File,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32884,Urgent lab,Type Concept,Type Concept,Type Concept,S +death,death_type_concept_id,32886,Vision claim,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32809,Case Report Form,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32810,Claim,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32811,Claim authorization,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32812,Claim discharge record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32813,Claim enrolment record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32814,Cost record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32815,Death Certificate,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32816,Dental claim,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32817,EHR,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32835,EHR Pathology report,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32818,EHR administration record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32819,EHR admission note,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32820,EHR ancillary report,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32821,EHR billing record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32822,EHR chief complaint,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32823,EHR discharge record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32824,EHR discharge summary,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32825,EHR dispensing record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32826,EHR emergency room note,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32827,EHR encounter record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32828,EHR episode record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32829,EHR inpatient note,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32830,EHR medication list,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32831,EHR note,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32832,EHR nursing report,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32833,EHR order,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32834,EHR outpatient note,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32836,EHR physical examination,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32837,EHR planned dispensing record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32838,EHR prescription,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32839,EHR prescription issue record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32840,EHR problem list,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32841,EHR radiology report,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32842,EHR referral record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32843,External CDM instance,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32844,Facility claim,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32845,Facility claim detail,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32846,Facility claim header,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32847,Geographic isolation record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32848,Government report,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32849,Health Information Exchange record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32850,Health Risk Assessment,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32851,Healthcare professional filled survey,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32852,Hospital cost,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32853,Inpatient claim,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32854,Inpatient claim detail,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32855,Inpatient claim header,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32856,Lab,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32857,Mail order record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32858,NLP,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32859,Outpatient claim,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32860,Outpatient claim detail,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32861,Outpatient claim header,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32862,Patient filled survey,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32863,Patient or payer paid record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32864,Patient reported cost,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32865,Patient self-report,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32866,Payer system record (paid premium),Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32867,Payer system record (primary payer),Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32868,Payer system record (secondary payer),Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32869,Pharmacy claim,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32870,Pre-qualification time period,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32871,Professional claim,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32872,Professional claim detail,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32873,Professional claim header,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32874,Provider charge list price,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32875,Provider financial system,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32876,Provider incurred cost record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32877,Randomization record,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32878,Reference lab,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32879,Registry,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32880,Standard algorithm,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32882,Standard algorithm from EHR,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32881,Standard algorithm from claims,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32883,Survey,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32885,US Social Security Death Master File,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32884,Urgent lab,Type Concept,Type Concept,Type Concept,S +device_exposure,device_type_concept_id,32886,Vision claim,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32809,Case Report Form,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32810,Claim,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32811,Claim authorization,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32812,Claim discharge record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32813,Claim enrolment record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32814,Cost record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32815,Death Certificate,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32816,Dental claim,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32817,EHR,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32835,EHR Pathology report,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32818,EHR administration record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32819,EHR admission note,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32820,EHR ancillary report,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32821,EHR billing record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32822,EHR chief complaint,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32823,EHR discharge record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32824,EHR discharge summary,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32825,EHR dispensing record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32826,EHR emergency room note,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32827,EHR encounter record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32828,EHR episode record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32829,EHR inpatient note,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32830,EHR medication list,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32831,EHR note,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32832,EHR nursing report,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32833,EHR order,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32834,EHR outpatient note,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32836,EHR physical examination,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32837,EHR planned dispensing record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32838,EHR prescription,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32839,EHR prescription issue record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32840,EHR problem list,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32841,EHR radiology report,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32842,EHR referral record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32843,External CDM instance,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32844,Facility claim,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32845,Facility claim detail,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32846,Facility claim header,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32847,Geographic isolation record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32848,Government report,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32849,Health Information Exchange record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32850,Health Risk Assessment,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32851,Healthcare professional filled survey,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32852,Hospital cost,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32853,Inpatient claim,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32854,Inpatient claim detail,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32855,Inpatient claim header,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32856,Lab,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32857,Mail order record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32858,NLP,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32859,Outpatient claim,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32860,Outpatient claim detail,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32861,Outpatient claim header,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32862,Patient filled survey,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32863,Patient or payer paid record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32864,Patient reported cost,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32865,Patient self-report,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32866,Payer system record (paid premium),Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32867,Payer system record (primary payer),Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32868,Payer system record (secondary payer),Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32869,Pharmacy claim,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32870,Pre-qualification time period,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32871,Professional claim,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32872,Professional claim detail,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32873,Professional claim header,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32874,Provider charge list price,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32875,Provider financial system,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32876,Provider incurred cost record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32877,Randomization record,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32878,Reference lab,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32879,Registry,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32880,Standard algorithm,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32882,Standard algorithm from EHR,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32881,Standard algorithm from claims,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32883,Survey,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32885,US Social Security Death Master File,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32884,Urgent lab,Type Concept,Type Concept,Type Concept,S +drug_exposure,drug_type_concept_id,32886,Vision claim,Type Concept,Type Concept,Type Concept,S drug_exposure,route_concept_id,44783786,Arteriovenous fistula route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,762840,Arteriovenous graft route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4023156,Auricular,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4222254,Body cavity use,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4181897,Buccal,Route,SNOMED,Qualifier Value,S -drug_exposure,route_concept_id,35616201,Cardiovascular route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4220455,Caudal route,Route,SNOMED,Qualifier Value,S -drug_exposure,route_concept_id,35616191,Central nervous system route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4168047,Colostomy route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,40486444,Conjunctival route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,40490507,Cutaneous route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4163765,Dental,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,40487501,Digestive tract route,Route,SNOMED,Qualifier Value,S -drug_exposure,route_concept_id,35616199,Ear and nose route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4186831,Endocervical,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4157756,Endosinusial,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4186832,Endotracheopulmonary,Route,SNOMED,Qualifier Value,S @@ -251,7 +468,6 @@ drug_exposure,route_concept_id,4168665,Gastro-intestinal stoma route,Route,SNOME drug_exposure,route_concept_id,4186834,Gastroenteral,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4132254,Gastrostomy route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,35616193,Genito-urinary route,Route,SNOMED,Qualifier Value,S -drug_exposure,route_concept_id,35616189,Genito-urinary stoma route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4156704,Gingival,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,35627166,Haemodiafiltration,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,44801748,Haemodiafiltration route,Route,SNOMED,Qualifier Value,S @@ -261,6 +477,7 @@ drug_exposure,route_concept_id,4305679,Ileostomy route,Route,SNOMED,Qualifier Va drug_exposure,route_concept_id,37397638,Infiltration route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,45956874,Inhalation,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4327128,Interstitial route,Route,SNOMED,Qualifier Value,S +drug_exposure,route_concept_id,37207459,Intestinal route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,37103746,Intestinal use,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4304882,Intraabdominal route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4163767,Intraamniotic,Route,SNOMED,Qualifier Value,S @@ -275,9 +492,9 @@ drug_exposure,route_concept_id,4303676,Intracartilaginous route,Route,SNOMED,Qua drug_exposure,route_concept_id,35615950,Intracavernosal route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4157757,Intracavernous,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,40488317,Intracerebral route,Route,SNOMED,Qualifier Value,S -drug_exposure,route_concept_id,35616203,Intracerebral ventricle route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4224886,Intracerebroventricular,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,45956872,Intracervical,Route,SNOMED,Qualifier Value,S +drug_exposure,route_concept_id,37207461,Intracholangiopancreatic route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4305993,Intracisternal route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,40489990,Intracolonic route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4305690,Intracorneal route,Route,SNOMED,Qualifier Value,S @@ -295,6 +512,8 @@ drug_exposure,route_concept_id,40487983,Intraepidermal,Route,SNOMED,Qualifier Va drug_exposure,route_concept_id,40492284,Intraesophageal route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,40492301,Intragastric route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,40492286,Intragingival route,Route,SNOMED,Qualifier Value,S +drug_exposure,route_concept_id,703330,Intraglandular,Route,SNOMED,Qualifier Value,S +drug_exposure,route_concept_id,37207460,Intraglandular route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,40493258,Intrahepatic route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,40490837,Intraileal route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,40489989,Intrajejunal route,Route,SNOMED,Qualifier Value,S @@ -315,6 +534,7 @@ drug_exposure,route_concept_id,4306657,Intraovarian route,Route,SNOMED,Qualifier drug_exposure,route_concept_id,40492305,Intrapericardial route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4243022,Intraperitoneal,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4156707,Intrapleural,Route,SNOMED,Qualifier Value,S +drug_exposure,route_concept_id,37207462,Intraportal route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4171725,Intraprostatic route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4169270,Intrapulmonary route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4169440,Intrasinal route,Route,SNOMED,Qualifier Value,S @@ -342,7 +562,6 @@ drug_exposure,route_concept_id,4170440,Laryngeal route,Route,SNOMED,Qualifier Va drug_exposure,route_concept_id,35631981,Line lock,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,40490898,Lower respiratory tract route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4171243,Mucous fistula route,Route,SNOMED,Qualifier Value,S -drug_exposure,route_concept_id,35616198,Musculoskeletal route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4262914,Nasal,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4172316,Nasoduodenal route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4132711,Nasogastric route,Route,SNOMED,Qualifier Value,S @@ -364,17 +583,16 @@ drug_exposure,route_concept_id,4157761,Perineural,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,40490866,Periodontal route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,35611042,Periosseous route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4171893,Periosteal route,Route,SNOMED,Qualifier Value,S -drug_exposure,route_concept_id,35616192,Peripheral nervous system route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4305564,Peritendinous route,Route,SNOMED,Qualifier Value,S +drug_exposure,route_concept_id,37207463,Peritumoral route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4303646,Periurethral route,Route,SNOMED,Qualifier Value,S +drug_exposure,route_concept_id,37207464,Posterior juxtascleral route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4290759,Rectal,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,45956879,Regional perfusion,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,40486069,Respiratory tract route,Route,SNOMED,Qualifier Value,S -drug_exposure,route_concept_id,35616184,Respiratory-thoracic route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4303673,Retrobulbar route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,45956875,Route of administration not applicable,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4106215,Route of administration value,Route,SNOMED,Qualifier Value,S -drug_exposure,route_concept_id,35616200,Skin route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4163770,Subconjunctival,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4142048,Subcutaneous,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,35608653,Subdermal route,Route,SNOMED,Qualifier Value,S @@ -385,6 +603,7 @@ drug_exposure,route_concept_id,45956878,Submucosal rectal,Route,SNOMED,Qualifier drug_exposure,route_concept_id,4169634,Submucosal route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4166865,Suborbital route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,36703536,Subretinal,Route,SNOMED,Qualifier Value,S +drug_exposure,route_concept_id,37207465,Subretinal route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4302493,Subtendinous route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4170771,Surgical cavity route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4304412,Surgical drain route,Route,SNOMED,Qualifier Value,S @@ -403,23 +622,162 @@ drug_exposure,route_concept_id,4304571,Ureteral route,Route,SNOMED,Qualifier Val drug_exposure,route_concept_id,4233974,Urethral,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4170435,Urostomy route,Route,SNOMED,Qualifier Value,S drug_exposure,route_concept_id,4057765,Vaginal,Route,SNOMED,Qualifier Value,S -drug_exposure,route_concept_id,35616190,Wound route,Route,SNOMED,Qualifier Value,S -episode,episode_type_concept_id,32545,Episode algorithmically derived from EHR,Type Concept,Episode Type,Episode Type,S -episode,episode_type_concept_id,32548,Episode algorithmically derived from claim,Type Concept,Episode Type,Episode Type,S -episode,episode_type_concept_id,32544,Episode defined in EHR,Type Concept,Episode Type,Episode Type,S -episode,episode_type_concept_id,32547,Episode derived from claim,Type Concept,Episode Type,Episode Type,S -episode,episode_type_concept_id,32546,Episode derived from registry,Type Concept,Episode Type,Episode Type,S -measurement,measurement_type_concept_id,32489,Accelerated lab result,Type Concept,Meas Type,Meas Type,S -measurement,measurement_type_concept_id,45754907,Derived value,Type Concept,Meas Type,Meas Type,S -measurement,measurement_type_concept_id,44818701,From physical examination,Type Concept,Meas Type,Meas Type,S -measurement,measurement_type_concept_id,32466,Inferred from claim,Type Concept,Meas Type,Meas Type,S -measurement,measurement_type_concept_id,44818702,Lab result,Type Concept,Meas Type,Meas Type,S -measurement,measurement_type_concept_id,32423,NLP derived,Type Concept,Meas Type,Meas Type,S -measurement,measurement_type_concept_id,44818703,Pathology finding,Type Concept,Meas Type,Meas Type,S -measurement,measurement_type_concept_id,44818704,Patient reported value,Type Concept,Meas Type,Meas Type,S -measurement,measurement_type_concept_id,5001,Test ordered through EHR,Type Concept,Meas Type,Meas Type,S -measurement,measurement_type_concept_id,32534,Tumor Registry,Type Concept,Meas Type,Meas Type,S -measurement,measurement_type_concept_id,32488,Urgent lab result,Type Concept,Meas Type,Meas Type,S +episode,episode_type_concept_id,32809,Case Report Form,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32810,Claim,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32811,Claim authorization,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32812,Claim discharge record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32813,Claim enrolment record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32814,Cost record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32815,Death Certificate,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32816,Dental claim,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32817,EHR,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32835,EHR Pathology report,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32818,EHR administration record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32819,EHR admission note,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32820,EHR ancillary report,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32821,EHR billing record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32822,EHR chief complaint,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32823,EHR discharge record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32824,EHR discharge summary,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32825,EHR dispensing record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32826,EHR emergency room note,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32827,EHR encounter record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32828,EHR episode record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32829,EHR inpatient note,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32830,EHR medication list,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32831,EHR note,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32832,EHR nursing report,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32833,EHR order,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32834,EHR outpatient note,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32836,EHR physical examination,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32837,EHR planned dispensing record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32838,EHR prescription,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32839,EHR prescription issue record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32840,EHR problem list,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32841,EHR radiology report,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32842,EHR referral record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32843,External CDM instance,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32844,Facility claim,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32845,Facility claim detail,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32846,Facility claim header,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32847,Geographic isolation record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32848,Government report,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32849,Health Information Exchange record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32850,Health Risk Assessment,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32851,Healthcare professional filled survey,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32852,Hospital cost,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32853,Inpatient claim,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32854,Inpatient claim detail,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32855,Inpatient claim header,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32856,Lab,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32857,Mail order record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32858,NLP,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32859,Outpatient claim,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32860,Outpatient claim detail,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32861,Outpatient claim header,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32862,Patient filled survey,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32863,Patient or payer paid record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32864,Patient reported cost,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32865,Patient self-report,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32866,Payer system record (paid premium),Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32867,Payer system record (primary payer),Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32868,Payer system record (secondary payer),Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32869,Pharmacy claim,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32870,Pre-qualification time period,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32871,Professional claim,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32872,Professional claim detail,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32873,Professional claim header,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32874,Provider charge list price,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32875,Provider financial system,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32876,Provider incurred cost record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32877,Randomization record,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32878,Reference lab,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32879,Registry,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32880,Standard algorithm,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32882,Standard algorithm from EHR,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32881,Standard algorithm from claims,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32883,Survey,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32885,US Social Security Death Master File,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32884,Urgent lab,Type Concept,Type Concept,Type Concept,S +episode,episode_type_concept_id,32886,Vision claim,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32809,Case Report Form,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32810,Claim,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32811,Claim authorization,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32812,Claim discharge record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32813,Claim enrolment record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32814,Cost record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32815,Death Certificate,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32816,Dental claim,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32817,EHR,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32835,EHR Pathology report,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32818,EHR administration record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32819,EHR admission note,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32820,EHR ancillary report,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32821,EHR billing record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32822,EHR chief complaint,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32823,EHR discharge record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32824,EHR discharge summary,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32825,EHR dispensing record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32826,EHR emergency room note,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32827,EHR encounter record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32828,EHR episode record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32829,EHR inpatient note,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32830,EHR medication list,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32831,EHR note,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32832,EHR nursing report,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32833,EHR order,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32834,EHR outpatient note,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32836,EHR physical examination,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32837,EHR planned dispensing record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32838,EHR prescription,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32839,EHR prescription issue record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32840,EHR problem list,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32841,EHR radiology report,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32842,EHR referral record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32843,External CDM instance,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32844,Facility claim,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32845,Facility claim detail,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32846,Facility claim header,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32847,Geographic isolation record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32848,Government report,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32849,Health Information Exchange record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32850,Health Risk Assessment,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32851,Healthcare professional filled survey,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32852,Hospital cost,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32853,Inpatient claim,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32854,Inpatient claim detail,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32855,Inpatient claim header,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32856,Lab,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32857,Mail order record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32858,NLP,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32859,Outpatient claim,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32860,Outpatient claim detail,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32861,Outpatient claim header,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32862,Patient filled survey,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32863,Patient or payer paid record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32864,Patient reported cost,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32865,Patient self-report,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32866,Payer system record (paid premium),Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32867,Payer system record (primary payer),Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32868,Payer system record (secondary payer),Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32869,Pharmacy claim,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32870,Pre-qualification time period,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32871,Professional claim,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32872,Professional claim detail,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32873,Professional claim header,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32874,Provider charge list price,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32875,Provider financial system,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32876,Provider incurred cost record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32877,Randomization record,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32878,Reference lab,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32879,Registry,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32880,Standard algorithm,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32882,Standard algorithm from EHR,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32881,Standard algorithm from claims,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32883,Survey,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32885,US Social Security Death Master File,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32884,Urgent lab,Type Concept,Type Concept,Type Concept,S +measurement,measurement_type_concept_id,32886,Vision claim,Type Concept,Type Concept,Type Concept,S measurement,operator_concept_id,4171756,<,Meas Value Operator,SNOMED,Qualifier Value,S measurement,operator_concept_id,4171754,<=,Meas Value Operator,SNOMED,Qualifier Value,S measurement,operator_concept_id,4172703,=,Meas Value Operator,SNOMED,Qualifier Value,S @@ -587,10 +945,10 @@ note,language_concept_id,4232095,Corsican language,Observation,SNOMED,Qualifier note,language_concept_id,45767268,Costa Rican sign language,Observation,SNOMED,Qualifier Value,S note,language_concept_id,4180367,Cree language,Observation,SNOMED,Qualifier Value,S note,language_concept_id,4177439,Creek language,Observation,SNOMED,Qualifier Value,S +note,language_concept_id,4193700,Créole language,Observation,SNOMED,Qualifier Value,S note,language_concept_id,40481973,Croatian language,Observation,SNOMED,Qualifier Value,S note,language_concept_id,45772738,Croatian sign language,Observation,SNOMED,Qualifier Value,S note,language_concept_id,4177445,Crow language,Observation,SNOMED,Qualifier Value,S -note,language_concept_id,4193700,Créole language,Observation,SNOMED,Qualifier Value,S note,language_concept_id,45767269,Cuba sign language,Observation,SNOMED,Qualifier Value,S note,language_concept_id,4181396,Cuna language,Observation,SNOMED,Qualifier Value,S note,language_concept_id,4178557,Cushitic language,Observation,SNOMED,Qualifier Value,S @@ -1260,37 +1618,240 @@ note,language_concept_id,4182938,Zoquean language,Observation,SNOMED,Qualifier V note,language_concept_id,4181699,Zulu language,Observation,SNOMED,Qualifier Value,S note,language_concept_id,4177456,Zuni language,Observation,SNOMED,Qualifier Value,S note,language_concept_id,4177455,Zunian language,Observation,SNOMED,Qualifier Value,S -note,note_type_concept_id,44814638,Admission note,Type Concept,Note Type,Note Type,S -note,note_type_concept_id,44814643,Ancillary report,Type Concept,Note Type,Note Type,S -note,note_type_concept_id,44814637,Discharge summary,Type Concept,Note Type,Note Type,S -note,note_type_concept_id,44814646,Emergency department note,Type Concept,Note Type,Note Type,S -note,note_type_concept_id,44814639,Inpatient note,Type Concept,Note Type,Note Type,S -note,note_type_concept_id,44814645,Note,Type Concept,Note Type,Note Type,S -note,note_type_concept_id,44814644,Nursing report,Type Concept,Note Type,Note Type,S -note,note_type_concept_id,44814640,Outpatient note,Type Concept,Note Type,Note Type,S -note,note_type_concept_id,44814642,Pathology report,Type Concept,Note Type,Note Type,S -note,note_type_concept_id,44814641,Radiology report,Type Concept,Note Type,Note Type,S -observation,observation_type_concept_id,38000282,Chief complaint,Type Concept,Observation Type,Observation Type,S -observation,observation_type_concept_id,44786633,HRA Observation Numeric Result,Type Concept,Observation Type,Observation Type,S -observation,observation_type_concept_id,44786634,HRA Observation Text,Type Concept,Observation Type,Observation Type,S -observation,observation_type_concept_id,32467,Inferred from claim,Type Concept,Observation Type,Observation Type,S -observation,observation_type_concept_id,38000279,Lab observation concept code result,Type Concept,Observation Type,Observation Type,S -observation,observation_type_concept_id,38000277,Lab observation numeric result,Type Concept,Observation Type,Observation Type,S -observation,observation_type_concept_id,38000278,Lab observation text,Type Concept,Observation Type,Observation Type,S -observation,observation_type_concept_id,32445,NLP derived,Type Concept,Observation Type,Observation Type,S -observation,observation_type_concept_id,45905771,Observation Recorded from a Survey,Type Concept,Observation Type,Observation Type,S -observation,observation_type_concept_id,581413,Observation from Measurement,Type Concept,Observation Type,Observation Type,S -observation,observation_type_concept_id,38000280,Observation recorded from EHR,Type Concept,Observation Type,Observation Type,S -observation,observation_type_concept_id,38000281,Observation recorded from EHR with text result,Type Concept,Observation Type,Observation Type,S -observation,observation_type_concept_id,44814721,Patient reported,Type Concept,Observation Type,Observation Type,S -observation,observation_type_concept_id,38000276,Problem list from EHR,Type Concept,Observation Type,Observation Type,S -observation,observation_type_concept_id,43542355,Referral Record,Type Concept,Observation Type,Observation Type,S -observation_period,period_type_concept_id,44814724,Period covering healthcare encounters,Type Concept,Obs Period Type,Obs Period Type,S -observation_period,period_type_concept_id,44814725,Period inferred by algorithm,Type Concept,Obs Period Type,Obs Period Type,S -observation_period,period_type_concept_id,45890994,Period of complete data capture based on geographic isolation,Type Concept,Obs Period Type,Obs Period Type,S -observation_period,period_type_concept_id,44814722,Period while enrolled in insurance,Type Concept,Obs Period Type,Obs Period Type,S -observation_period,period_type_concept_id,44814723,Period while enrolled in study,Type Concept,Obs Period Type,Obs Period Type,S -observation_period,period_type_concept_id,45747656,Pre-qualification time period,Type Concept,Obs Period Type,Obs Period Type,S +note,note_type_concept_id,32809,Case Report Form,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32810,Claim,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32811,Claim authorization,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32812,Claim discharge record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32813,Claim enrolment record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32814,Cost record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32815,Death Certificate,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32816,Dental claim,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32817,EHR,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32835,EHR Pathology report,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32818,EHR administration record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32819,EHR admission note,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32820,EHR ancillary report,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32821,EHR billing record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32822,EHR chief complaint,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32823,EHR discharge record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32824,EHR discharge summary,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32825,EHR dispensing record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32826,EHR emergency room note,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32827,EHR encounter record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32828,EHR episode record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32829,EHR inpatient note,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32830,EHR medication list,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32831,EHR note,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32832,EHR nursing report,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32833,EHR order,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32834,EHR outpatient note,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32836,EHR physical examination,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32837,EHR planned dispensing record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32838,EHR prescription,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32839,EHR prescription issue record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32840,EHR problem list,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32841,EHR radiology report,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32842,EHR referral record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32843,External CDM instance,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32844,Facility claim,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32845,Facility claim detail,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32846,Facility claim header,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32847,Geographic isolation record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32848,Government report,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32849,Health Information Exchange record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32850,Health Risk Assessment,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32851,Healthcare professional filled survey,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32852,Hospital cost,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32853,Inpatient claim,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32854,Inpatient claim detail,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32855,Inpatient claim header,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32856,Lab,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32857,Mail order record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32858,NLP,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32859,Outpatient claim,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32860,Outpatient claim detail,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32861,Outpatient claim header,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32862,Patient filled survey,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32863,Patient or payer paid record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32864,Patient reported cost,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32865,Patient self-report,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32866,Payer system record (paid premium),Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32867,Payer system record (primary payer),Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32868,Payer system record (secondary payer),Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32869,Pharmacy claim,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32870,Pre-qualification time period,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32871,Professional claim,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32872,Professional claim detail,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32873,Professional claim header,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32874,Provider charge list price,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32875,Provider financial system,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32876,Provider incurred cost record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32877,Randomization record,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32878,Reference lab,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32879,Registry,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32880,Standard algorithm,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32882,Standard algorithm from EHR,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32881,Standard algorithm from claims,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32883,Survey,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32885,US Social Security Death Master File,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32884,Urgent lab,Type Concept,Type Concept,Type Concept,S +note,note_type_concept_id,32886,Vision claim,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32809,Case Report Form,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32810,Claim,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32811,Claim authorization,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32812,Claim discharge record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32813,Claim enrolment record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32814,Cost record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32815,Death Certificate,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32816,Dental claim,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32817,EHR,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32835,EHR Pathology report,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32818,EHR administration record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32819,EHR admission note,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32820,EHR ancillary report,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32821,EHR billing record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32822,EHR chief complaint,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32823,EHR discharge record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32824,EHR discharge summary,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32825,EHR dispensing record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32826,EHR emergency room note,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32827,EHR encounter record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32828,EHR episode record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32829,EHR inpatient note,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32830,EHR medication list,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32831,EHR note,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32832,EHR nursing report,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32833,EHR order,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32834,EHR outpatient note,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32836,EHR physical examination,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32837,EHR planned dispensing record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32838,EHR prescription,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32839,EHR prescription issue record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32840,EHR problem list,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32841,EHR radiology report,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32842,EHR referral record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32843,External CDM instance,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32844,Facility claim,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32845,Facility claim detail,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32846,Facility claim header,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32847,Geographic isolation record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32848,Government report,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32849,Health Information Exchange record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32850,Health Risk Assessment,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32851,Healthcare professional filled survey,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32852,Hospital cost,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32853,Inpatient claim,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32854,Inpatient claim detail,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32855,Inpatient claim header,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32856,Lab,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32857,Mail order record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32858,NLP,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32859,Outpatient claim,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32860,Outpatient claim detail,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32861,Outpatient claim header,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32862,Patient filled survey,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32863,Patient or payer paid record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32864,Patient reported cost,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32865,Patient self-report,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32866,Payer system record (paid premium),Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32867,Payer system record (primary payer),Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32868,Payer system record (secondary payer),Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32869,Pharmacy claim,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32870,Pre-qualification time period,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32871,Professional claim,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32872,Professional claim detail,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32873,Professional claim header,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32874,Provider charge list price,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32875,Provider financial system,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32876,Provider incurred cost record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32877,Randomization record,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32878,Reference lab,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32879,Registry,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32880,Standard algorithm,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32882,Standard algorithm from EHR,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32881,Standard algorithm from claims,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32883,Survey,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32885,US Social Security Death Master File,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32884,Urgent lab,Type Concept,Type Concept,Type Concept,S +observation,observation_type_concept_id,32886,Vision claim,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32809,Case Report Form,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32810,Claim,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32811,Claim authorization,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32812,Claim discharge record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32813,Claim enrolment record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32814,Cost record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32815,Death Certificate,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32816,Dental claim,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32817,EHR,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32835,EHR Pathology report,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32818,EHR administration record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32819,EHR admission note,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32820,EHR ancillary report,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32821,EHR billing record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32822,EHR chief complaint,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32823,EHR discharge record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32824,EHR discharge summary,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32825,EHR dispensing record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32826,EHR emergency room note,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32827,EHR encounter record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32828,EHR episode record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32829,EHR inpatient note,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32830,EHR medication list,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32831,EHR note,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32832,EHR nursing report,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32833,EHR order,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32834,EHR outpatient note,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32836,EHR physical examination,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32837,EHR planned dispensing record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32838,EHR prescription,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32839,EHR prescription issue record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32840,EHR problem list,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32841,EHR radiology report,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32842,EHR referral record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32843,External CDM instance,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32844,Facility claim,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32845,Facility claim detail,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32846,Facility claim header,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32847,Geographic isolation record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32848,Government report,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32849,Health Information Exchange record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32850,Health Risk Assessment,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32851,Healthcare professional filled survey,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32852,Hospital cost,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32853,Inpatient claim,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32854,Inpatient claim detail,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32855,Inpatient claim header,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32856,Lab,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32857,Mail order record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32858,NLP,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32859,Outpatient claim,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32860,Outpatient claim detail,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32861,Outpatient claim header,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32862,Patient filled survey,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32863,Patient or payer paid record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32864,Patient reported cost,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32865,Patient self-report,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32866,Payer system record (paid premium),Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32867,Payer system record (primary payer),Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32868,Payer system record (secondary payer),Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32869,Pharmacy claim,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32870,Pre-qualification time period,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32871,Professional claim,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32872,Professional claim detail,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32873,Professional claim header,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32874,Provider charge list price,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32875,Provider financial system,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32876,Provider incurred cost record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32877,Randomization record,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32878,Reference lab,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32879,Registry,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32880,Standard algorithm,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32882,Standard algorithm from EHR,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32881,Standard algorithm from claims,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32883,Survey,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32885,US Social Security Death Master File,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32884,Urgent lab,Type Concept,Type Concept,Type Concept,S +observation_period,period_type_concept_id,32886,Vision claim,Type Concept,Type Concept,Type Concept,S payer_plan_period,plan_concept_id,268,"Broad Benefit (Medical, Drug, Dental, Vision) plan",Plan,Plan,Benefit,S payer_plan_period,plan_concept_id,263,Bronze Health Plan with 60% actuarial plan value,Plan,Plan,Metal level,S payer_plan_period,plan_concept_id,267,Catastrophic Health Plan with <60% actuarial plan value,Plan,Plan,Metal level,S @@ -1375,21 +1936,65 @@ person,race_concept_id,38003609,West Indian,Race,Race,Race,S person,race_concept_id,8527,White,Race,Race,Race,S person,race_concept_id,4228069,Abyssinians,Race,SNOMED,Social Context, person,race_concept_id,4119705,Admiralty Islanders,Race,SNOMED,Social Context, +person,race_concept_id,44811573,African - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45489725,African - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4035165,African American,Race,SNOMED,Social Context, person,race_concept_id,4211218,African race,Race,SNOMED,Social Context, +person,race_concept_id,46285898,"African: African, African Scottish or African British - Scotland ethnic category 2011 census",Race,SNOMED,Clinical Finding, +person,race_concept_id,46277440,"African: African, African Scottish or African British - Scotland ethnic category 2011 census",Race,Read,Read, +person,race_concept_id,46285899,African: any other African - Scotland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277441,African: any other African - Scotland ethnic category 2011 census,Race,Read,Read, person,race_concept_id,4184962,Afro-Caribbean,Race,SNOMED,Social Context, person,race_concept_id,4187747,Afro-Caucasian,Race,SNOMED,Social Context, person,race_concept_id,4100645,Ainu,Race,SNOMED,Social Context, person,race_concept_id,4231129,Alacaluf,Race,SNOMED,Social Context, +person,race_concept_id,44810877,Albanian - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45446260,Albanian - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4050100,Aleuts,Race,SNOMED,Social Context, person,race_concept_id,4184966,American Indian or Alaska native,Race,SNOMED,Social Context, person,race_concept_id,4211331,American Indian race,Race,SNOMED,Social Context, person,race_concept_id,4281687,Amerind,Race,SNOMED,Social Context, person,race_concept_id,4175829,Andamanese,Race,SNOMED,Social Context, +person,race_concept_id,44814113,Any other group - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45502975,Any other group - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4251760,Apache,Race,SNOMED,Social Context, +person,race_concept_id,44813997,Arab - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45493008,Arab - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4231846,Arabs,Race,SNOMED,Social Context, person,race_concept_id,4014421,Armenians,Race,SNOMED,Social Context, person,race_concept_id,4201937,Asian - ethnic group,Race,SNOMED,Social Context, +person,race_concept_id,44811713,Asian and Chinese - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45486448,Asian and Chinese - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,46285833,Asian or Asian British: Bangladeshi - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277362,Asian or Asian British: Bangladeshi - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285878,Asian or Asian British: Bangladeshi - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277422,Asian or Asian British: Bangladeshi - Northern Ireland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285834,Asian or Asian British: Chinese - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277560,Asian or Asian British: Chinese - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285879,Asian or Asian British: Chinese - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277339,Asian or Asian British: Chinese - Northern Ireland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285831,Asian or Asian British: Indian - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277438,Asian or Asian British: Indian - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285871,Asian or Asian British: Indian - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277504,Asian or Asian British: Indian - Northern Ireland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285832,Asian or Asian British: Pakistani - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277361,Asian or Asian British: Pakistani - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285877,Asian or Asian British: Pakistani - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277363,Asian or Asian British: Pakistani - Northern Ireland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285835,Asian or Asian British: any other Asian background - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277337,Asian or Asian British: any other Asian background - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285880,Asian or Asian British: any other Asian background - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277423,Asian or Asian British: any other Asian background - Northern Ireland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285896,"Asian or Asian Scottish or Asian British: Bangladeshi, Bangladeshi Scottish or Bangladeshi British - Scotland ethnic category 2011 census",Race,SNOMED,Clinical Finding, +person,race_concept_id,46277653,"Asian or Asian Scottish or Asian British: Bangladeshi, Bangladeshi Scottish or Bangladeshi British - Scotland ethnic category 2011 census",Race,Read,Read, +person,race_concept_id,46285897,Asian or Asian Scottish or Asian British: Chinese - Scotland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277373,Asian or Asian Scottish or Asian British: Chinese - Scotland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285894,"Asian or Asian Scottish or Asian British: Indian, Indian Scottish or Indian British - Scotland ethnic category 2011 census",Race,SNOMED,Clinical Finding, +person,race_concept_id,46277649,"Asian or Asian Scottish or Asian British: Indian, Indian Scottish or Indian British - Scotland ethnic category 2011 census",Race,Read,Read, +person,race_concept_id,46285893,"Asian or Asian Scottish or Asian British: Pakistani, Pakistani Scottish or Pakistani British - Scotland ethnic category 2011 census",Race,SNOMED,Clinical Finding, +person,race_concept_id,46277341,"Asian or Asian Scottish or Asian British: Pakistani, Pakistani Scottish or Pakistani British - Scotland ethnic category 2011 census",Race,Read,Read, +person,race_concept_id,46287260,Asian or Asian Scottish or Asian British: any other Asian group - Scotland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277424,Asian or Asian Scottish or Asian British: any other Asian group - Scotland ethnic category 2011 census,Race,Read,Read, person,race_concept_id,4184984,Asian or Pacific islander,Race,SNOMED,Social Context, person,race_concept_id,4211353,Asian race,Race,SNOMED,Social Context, person,race_concept_id,4298833,Atacamenos,Race,SNOMED,Social Context, @@ -1401,8 +2006,12 @@ person,race_concept_id,4014099,Aymara,Race,SNOMED,Social Context, person,race_concept_id,4195705,Aztec,Race,SNOMED,Social Context, person,race_concept_id,4263311,Badagas,Race,SNOMED,Social Context, person,race_concept_id,45771426,Bajau,Race,SNOMED,Social Context, +person,race_concept_id,44810801,Baltic States (Estonian or Latvian or Lithuanian) - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45479816,Baltic States (Estonian or Latvian or Lithuanian) - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45452880,Bangladeshi,Race,Read,Read, person,race_concept_id,4091018,Bangladeshi,Race,SNOMED,Social Context, +person,race_concept_id,44811571,Bangladeshi or British Bangladeshi - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45516392,Bangladeshi or British Bangladeshi - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4219735,Bantu,Race,SNOMED,Social Context, person,race_concept_id,4240732,Barundi,Race,SNOMED,Social Context, person,race_concept_id,4163527,Basques,Race,SNOMED,Social Context, @@ -1426,6 +2035,8 @@ person,race_concept_id,4076901,Black Arab,Race,SNOMED,Social Context, person,race_concept_id,45429648,Black Black - other,Race,Read,Read, person,race_concept_id,45462994,Black British,Race,Read,Read, person,race_concept_id,4090389,Black British,Race,SNOMED,Social Context, +person,race_concept_id,44787840,Black British - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45426353,Black British - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45496298,Black Caribbean,Race,Read,Read, person,race_concept_id,45522914,Black Caribbean,Race,Read,Read, person,race_concept_id,4087917,Black Caribbean,Race,SNOMED,Social Context, @@ -1452,6 +2063,24 @@ person,race_concept_id,45429647,Black North African,Race,Read,Read, person,race_concept_id,4078122,Black North African,Race,SNOMED,Social Context, person,race_concept_id,45429646,Black West Indian,Race,Read,Read, person,race_concept_id,4203120,Black West Indian,Race,SNOMED,Social Context, +person,race_concept_id,44811649,Black and Asian - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45499640,Black and Asian - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44814066,Black and Chinese - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45516391,Black and Chinese - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44787838,Black and White - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45512986,Black and White - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,46286811,Black or African or Caribbean or Black British: African - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277673,Black or African or Caribbean or Black British: African - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285881,Black or African or Caribbean or Black British: African - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277340,Black or African or Caribbean or Black British: African - Northern Ireland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285836,Black or African or Caribbean or Black British: Caribbean - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277674,Black or African or Caribbean or Black British: Caribbean - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285882,Black or African or Caribbean or Black British: Caribbean - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277544,Black or African or Caribbean or Black British: Caribbean - Northern Ireland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285837,Black or African or Caribbean or Black British: other Black or African or Caribbean background - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277368,Black or African or Caribbean or Black British: other Black or African or Caribbean background - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285883,Black or African or Caribbean or Black British: other Black or African or Caribbean background - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277648,Black or African or Caribbean or Black British: other Black or African or Caribbean background - Northern Ireland ethnic category 2011 census,Race,Read,Read, person,race_concept_id,4211480,"Black, not of hispanic origin",Race,SNOMED,Social Context, person,race_concept_id,45516366,"Black, other, non-mixed origin",Race,Read,Read, person,race_concept_id,4091010,"Black, other, non-mixed origin",Race,SNOMED,Social Context, @@ -1459,12 +2088,18 @@ person,race_concept_id,4277901,Blackfeet,Race,SNOMED,Social Context, person,race_concept_id,4139924,Bloods,Race,SNOMED,Social Context, person,race_concept_id,4169399,Bogobos,Race,SNOMED,Social Context, person,race_concept_id,4301306,Bororo,Race,SNOMED,Social Context, +person,race_concept_id,44811723,Bosnian - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45466403,Bosnian - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4218447,Brazilian Indians,Race,SNOMED,Social Context, person,race_concept_id,45436285,Brit. ethnic minor. spec.(NMO),Race,Read,Read, person,race_concept_id,45439570,Brit. ethnic minor. unsp (NMO),Race,Read,Read, -person,race_concept_id,4090390,British ethnic minority specified,Race,SNOMED,Social Context, -person,race_concept_id,4091019,British ethnic minority unspecified,Race,SNOMED,Social Context, +person,race_concept_id,44811720,British Asian - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45446261,British Asian - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44811501,British or mixed British - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45519615,British or mixed British - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4264197,Bruneians,Race,SNOMED,Social Context, +person,race_concept_id,44811852,Buddhist - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45442883,Buddhist - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45479793,Bulgarian,Race,Read,Read, person,race_concept_id,4167621,Bulgarian,Race,SNOMED,Social Context, person,race_concept_id,1397910,Bulgarian Roma,Race,Read,Read, @@ -1473,10 +2108,18 @@ person,race_concept_id,4221071,Buriats,Race,SNOMED,Social Context, person,race_concept_id,4309789,Bushmen,Race,SNOMED,Social Context, person,race_concept_id,4249154,Caingang,Race,SNOMED,Social Context, person,race_concept_id,37116650,Canadian,Race,SNOMED,Social Context, -person,race_concept_id,4151578,Caribbean I./W.I./Guyana,Race,SNOMED,Social Context, +person,race_concept_id,44787809,Caribbean - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45486450,Caribbean - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44811784,Caribbean Asian - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45459587,Caribbean Asian - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45479788,Caribbean I./W.I./Guyana (NMO),Race,Read,Read, -person,race_concept_id,4077359,Caribbean Island,Race,SNOMED,Social Context, person,race_concept_id,45479789,Caribbean Island (NMO),Race,Read,Read, +person,race_concept_id,46285900,"Caribbean or Black: Black, Black Scottish or Black British - Scotland ethnic category 2011 census",Race,SNOMED,Clinical Finding, +person,race_concept_id,46277654,"Caribbean or Black: Black, Black Scottish or Black British - Scotland ethnic category 2011 census",Race,Read,Read, +person,race_concept_id,46286818,"Caribbean or Black: Caribbean, Caribbean Scottish or Caribbean British - Scotland ethnic category 2011 census",Race,SNOMED,Clinical Finding, +person,race_concept_id,46277634,"Caribbean or Black: Caribbean, Caribbean Scottish or Caribbean British - Scotland ethnic category 2011 census",Race,Read,Read, +person,race_concept_id,46285901,Caribbean or Black: any other Black or Caribbean group - Scotland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277364,Caribbean or Black: any other Black or Caribbean group - Scotland ethnic category 2011 census,Race,Read,Read, person,race_concept_id,4216433,Caroline Islanders,Race,SNOMED,Social Context, person,race_concept_id,4030411,Caucasian,Race,SNOMED,Social Context, person,race_concept_id,4185154,Caucasian,Race,SNOMED,Social Context, @@ -1485,13 +2128,25 @@ person,race_concept_id,4211849,Chenchu,Race,SNOMED,Social Context, person,race_concept_id,45419859,Chinese,Race,Read,Read, person,race_concept_id,45476453,Chinese,Race,Read,Read, person,race_concept_id,4144377,Chinese,Race,SNOMED,Social Context, +person,race_concept_id,44811575,Chinese - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45463011,Chinese - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44814067,Chinese and White - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45509598,Chinese and White - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4215810,Chippewa,Race,SNOMED,Social Context, person,race_concept_id,4270899,Choco,Race,SNOMED,Social Context, +person,race_concept_id,44810868,Commonwealth of (Russian) Independent States - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45493006,Commonwealth of (Russian) Independent States - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4178142,Congolese,Race,SNOMED,Social Context, person,race_concept_id,45522915,Cook Island Maori,Race,Read,Read, person,race_concept_id,4087928,Cook Island Maori,Race,SNOMED,Social Context, +person,race_concept_id,44811648,Cornish - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45519616,Cornish - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4012612,Coushatta,Race,SNOMED,Social Context, +person,race_concept_id,44811724,Croatian - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45486447,Croatian - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4182121,Cuna,Race,SNOMED,Social Context, +person,race_concept_id,44811848,Cypriot (part not stated) - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45509595,Cypriot (part not stated) - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45473117,Czech,Race,Read,Read, person,race_concept_id,4102622,Czech,Race,SNOMED,Social Context, person,race_concept_id,1397642,Czech Roma,Race,Read,Read, @@ -1500,23 +2155,45 @@ person,race_concept_id,4031845,Danes,Race,SNOMED,Social Context, person,race_concept_id,4185580,Dieguenos,Race,SNOMED,Social Context, person,race_concept_id,4317261,Dutch,Race,SNOMED,Social Context, person,race_concept_id,4137597,Dyaks,Race,SNOMED,Social Context, -person,race_concept_id,4148888,E Afric Asian/Indo-Carib,Race,SNOMED,Social Context, person,race_concept_id,45439571,E Afric Asian/Indo-Carib (NMO),Race,Read,Read, -person,race_concept_id,4077381,East African Asian,Race,SNOMED,Social Context, person,race_concept_id,45516367,East African Asian (NMO),Race,Read,Read, +person,race_concept_id,44811718,East African Asian - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45496321,East African Asian - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4103076,Easter Islanders,Race,SNOMED,Social Context, person,race_concept_id,4000051,Egyptians,Race,SNOMED,Social Context, person,race_concept_id,4247162,Ellice Islanders,Race,SNOMED,Social Context, person,race_concept_id,4093769,English,Race,SNOMED,Social Context, +person,race_concept_id,44787837,English - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45486446,English - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4309952,Eskimo,Race,SNOMED,Social Context, person,race_concept_id,4090368,Estonians,Race,SNOMED,Social Context, +person,race_concept_id,4136468,Ethnic background,Race,SNOMED,Clinical Finding, +person,race_concept_id,44811500,Ethnic category - 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45456238,Ethnic category - 2001 census,Race,Read,Read, +person,race_concept_id,46285820,Ethnic category - 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277503,Ethnic category - 2011 census,Race,Read,Read, +person,race_concept_id,46285821,Ethnic category - 2011 census England and Wales,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277672,Ethnic category - 2011 census England and Wales,Race,Read,Read, +person,race_concept_id,46285822,Ethnic category - 2011 census Northern Ireland,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277586,Ethnic category - 2011 census Northern Ireland,Race,Read,Read, +person,race_concept_id,46285823,Ethnic category - 2011 census Scotland,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277480,Ethnic category - 2011 census Scotland,Race,Read,Read, +person,race_concept_id,44811644,Ethnic category not stated - 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45432981,Ethnic category not stated - 2001 census,Race,Read,Read, person,race_concept_id,4155301,Ethnic group,Race,SNOMED,Social Context, +person,race_concept_id,4262177,Ethnic group finding,Race,SNOMED,Clinical Finding, person,race_concept_id,759814,Ethnic group unknown,Race,SNOMED,Social Context, person,race_concept_id,4273145,Ethnic groups (1991 census),Race,SNOMED,Social Context, +person,race_concept_id,45509565,Ethnic groups (census),Race,Read,Read, +person,race_concept_id,45449502,Ethnic groups (census) NOS,Race,Read,Read, +person,race_concept_id,4274415,Ethnicity / related nationality data - finding,Race,SNOMED,Clinical Finding, +person,race_concept_id,37394011,Ethnicity not stated,Race,SNOMED,Clinical Finding, person,race_concept_id,4212990,European,Race,SNOMED,Social Context, person,race_concept_id,4002414,Ewe,Race,SNOMED,Social Context, person,race_concept_id,45479791,Fijian,Race,Read,Read, person,race_concept_id,4321400,Fijian,Race,SNOMED,Social Context, +person,race_concept_id,44811846,Filipino - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45509600,Filipino - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4296018,Filipinos,Race,SNOMED,Social Context, person,race_concept_id,4005076,Finns,Race,SNOMED,Social Context, person,race_concept_id,4027841,Flathead,Race,SNOMED,Social Context, @@ -1528,18 +2205,22 @@ person,race_concept_id,4297319,Germans,Race,SNOMED,Social Context, person,race_concept_id,4292272,Ghanaians,Race,SNOMED,Social Context, person,race_concept_id,4233496,Ghashgai,Race,SNOMED,Social Context, person,race_concept_id,4171181,Gilbertese,Race,SNOMED,Social Context, -person,race_concept_id,4076904,Greek,Race,SNOMED,Social Context, person,race_concept_id,45423089,Greek (NMO),Race,Read,Read, -person,race_concept_id,4077361,Greek Cypriot,Race,SNOMED,Social Context, +person,race_concept_id,44811653,Greek - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45452901,Greek - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45436287,Greek Cypriot (NMO),Race,Read,Read, -person,race_concept_id,4152834,Greek/Greek Cypriot,Race,SNOMED,Social Context, +person,race_concept_id,44811654,Greek Cypriot - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45466401,Greek Cypriot - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45462996,Greek/Greek Cypriot (NMO),Race,Read,Read, person,race_concept_id,4032635,Greeks,Race,SNOMED,Social Context, person,race_concept_id,4012103,Guamians,Race,SNOMED,Social Context, -person,race_concept_id,4077360,Guyana,Race,SNOMED,Social Context, person,race_concept_id,45442862,Guyana (NMO),Race,Read,Read, person,race_concept_id,4221073,Gypsies,Race,SNOMED,Social Context, +person,race_concept_id,44810783,Gypsy/Romany - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45459585,Gypsy/Romany - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4065367,Hawaiians,Race,SNOMED,Social Context, +person,race_concept_id,44787843,Hindu - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45466408,Hindu - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4188159,Hispanic,Race,SNOMED,Social Context, person,race_concept_id,4190391,"Hispanic, black",Race,SNOMED,Social Context, person,race_concept_id,4188161,"Hispanic, color unknown",Race,SNOMED,Social Context, @@ -1560,38 +2241,62 @@ person,race_concept_id,45446239,Indian,Race,Read,Read, person,race_concept_id,45483083,Indian,Race,Read,Read, person,race_concept_id,4091016,Indian,Race,SNOMED,Social Context, person,race_concept_id,4185920,Indian,Race,SNOMED,Social Context, -person,race_concept_id,4090392,Indian sub-continent,Race,SNOMED,Social Context, +person,race_concept_id,44787836,Indian or British Indian - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45502973,Indian or British Indian - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45476451,Indian sub-continent (NMO),Race,Read,Read, person,race_concept_id,4276043,Indians,Race,SNOMED,Social Context, -person,race_concept_id,4076903,Indo-Caribbean,Race,SNOMED,Social Context, person,race_concept_id,45436286,Indo-Caribbean (NMO),Race,Read,Read, person,race_concept_id,4318647,Indonesians,Race,SNOMED,Social Context, person,race_concept_id,4289159,Irani,Race,SNOMED,Social Context, -person,race_concept_id,4078125,Iranian,Race,SNOMED,Social Context, person,race_concept_id,45496301,Iranian (NMO),Race,Read,Read, +person,race_concept_id,44810983,Iranian - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45512987,Iranian - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4100470,Iraqi,Race,SNOMED,Social Context, -person,race_concept_id,4090393,Irish,Race,SNOMED,Social Context, person,race_concept_id,45419861,Irish (NMO),Race,Read,Read, +person,race_concept_id,44814057,Irish - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45512984,Irish - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,46286814,Irish Traveller - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277520,Irish Traveller - Northern Ireland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,44810769,Irish Traveller - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45466402,Irish Traveller - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45512963,Irish traveller,Race,Read,Read, person,race_concept_id,4201938,Irish traveller,Race,SNOMED,Social Context, person,race_concept_id,4221856,Irula,Race,SNOMED,Social Context, +person,race_concept_id,44811795,Israeli - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45456241,Israeli - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44811655,Italian - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45479815,Italian - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4135806,Italians,Race,SNOMED,Social Context, person,race_concept_id,4185935,Japanese,Race,SNOMED,Social Context, +person,race_concept_id,44811845,Japanese - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45456240,Japanese - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4068834,Javanese,Race,SNOMED,Social Context, +person,race_concept_id,44810892,Jewish - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45483099,Jewish - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45771425,Kadazan,Race,SNOMED,Social Context, person,race_concept_id,4048709,Kapingas,Race,SNOMED,Social Context, +person,race_concept_id,44811717,Kashmiri - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45459586,Kashmiri - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4036536,Kenyans,Race,SNOMED,Social Context, person,race_concept_id,4218957,Kikuyu,Race,SNOMED,Social Context, person,race_concept_id,4180571,Kirghiz,Race,SNOMED,Social Context, person,race_concept_id,4243164,Koreans,Race,SNOMED,Social Context, +person,race_concept_id,44811722,Kosovan - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45436304,Kosovan - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44811796,Kurdish - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45493009,Kurdish - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4298426,Kwakiutl,Race,SNOMED,Social Context, person,race_concept_id,4326740,Labradors,Race,SNOMED,Social Context, person,race_concept_id,4069284,Lacandon,Race,SNOMED,Social Context, person,race_concept_id,4282477,Lapps,Race,SNOMED,Social Context, +person,race_concept_id,44811850,Latin American - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45483100,Latin American - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4240299,Liberians,Race,SNOMED,Social Context, person,race_concept_id,4308897,Luo,Race,SNOMED,Social Context, person,race_concept_id,4071025,Madagascans,Race,SNOMED,Social Context, person,race_concept_id,4028336,Malays,Race,SNOMED,Social Context, +person,race_concept_id,44811847,Malaysian - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45502974,Malaysian - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4249883,Maori,Race,SNOMED,Social Context, person,race_concept_id,4327656,Mapuche,Race,SNOMED,Social Context, person,race_concept_id,4180729,Marathas,Race,SNOMED,Social Context, @@ -1603,13 +2308,44 @@ person,race_concept_id,4053172,Melanesians,Race,SNOMED,Social Context, person,race_concept_id,4250319,Melanuans,Race,SNOMED,Social Context, person,race_concept_id,4186453,Mexican Indians,Race,SNOMED,Social Context, person,race_concept_id,4283895,Micronesians,Race,SNOMED,Social Context, +person,race_concept_id,44811794,"Middle Eastern (excluding Israeli, Iranian and Arab) - ethnic category 2001 census",Race,SNOMED,Clinical Finding, +person,race_concept_id,45436306,"Middle Eastern (excluding Israeli, Iranian and Arab) - ethnic category 2001 census",Race,Read,Read, +person,race_concept_id,44811715,Mixed Asian - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45473135,Mixed Asian - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44811787,Mixed Black - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45489726,Mixed Black - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44811727,Mixed Irish and other White - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45423115,Mixed Irish and other White - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4196429,Mixed ethnic census group,Race,SNOMED,Social Context, +person,race_concept_id,46285829,Mixed multiple ethnic groups: White and Asian - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277584,Mixed multiple ethnic groups: White and Asian - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285864,Mixed multiple ethnic groups: White and Asian - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277370,Mixed multiple ethnic groups: White and Asian - Northern Ireland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285828,Mixed multiple ethnic groups: White and Black African - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277633,Mixed multiple ethnic groups: White and Black African - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285863,Mixed multiple ethnic groups: White and Black African - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277615,Mixed multiple ethnic groups: White and Black African - Northern Ireland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285827,Mixed multiple ethnic groups: White and Black Caribbean - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277421,Mixed multiple ethnic groups: White and Black Caribbean - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285862,Mixed multiple ethnic groups: White and Black Caribbean - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277369,Mixed multiple ethnic groups: White and Black Caribbean - Northern Ireland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285830,Mixed multiple ethnic groups: any other Mixed or multiple ethnic background - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277647,Mixed multiple ethnic groups: any other Mixed or multiple ethnic background - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46286815,Mixed multiple ethnic groups: any other Mixed or multiple ethnic background - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277561,Mixed multiple ethnic groups: any other Mixed or multiple ethnic background - Northern Ireland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285892,Mixed or multiple ethnic groups: any Mixed or multiple ethnic group - Scotland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277483,Mixed or multiple ethnic groups: any Mixed or multiple ethnic group - Scotland ethnic category 2011 census,Race,Read,Read, person,race_concept_id,4212311,Mixed racial group,Race,SNOMED,Social Context, person,race_concept_id,4087322,Mongol,Race,SNOMED,Social Context, +person,race_concept_id,44811801,Moroccan - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45466410,Moroccan - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4165388,Mozambiquans,Race,SNOMED,Social Context, person,race_concept_id,4283366,Msutu,Race,SNOMED,Social Context, +person,race_concept_id,44811851,Multi-ethnic islands: Mauritian or Seychellois or Maldivian or St Helena - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45512988,Multi-ethnic islands: Mauritian or Seychellois or Maldivian or St Helena - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45767089,Murut,Race,SNOMED,Social Context, -person,race_concept_id,4152833,N African Arab/Iranian,Race,SNOMED,Social Context, +person,race_concept_id,44810988,Muslim - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45466409,Muslim - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45419860,N African Arab/Iranian (NMO),Race,Read,Read, person,race_concept_id,4217600,Naiars,Race,SNOMED,Social Context, person,race_concept_id,4186402,National surgical quality improvement program defined race unknown,Race,SNOMED,Social Context, @@ -1627,11 +2363,16 @@ person,race_concept_id,45499628,New Zealand ethnic group NOS,Race,Read,Read, person,race_concept_id,45442863,New Zealand ethnic groups,Race,Read,Read, person,race_concept_id,4087926,New Zealand ethnic groups,Race,SNOMED,Social Context, person,race_concept_id,4337671,Nez Percé,Race,SNOMED,Social Context, +person,race_concept_id,44811788,Nigerian - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45429666,Nigerian - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4229603,Nigerians,Race,SNOMED,Social Context, person,race_concept_id,45509567,Niuean,Race,Read,Read, person,race_concept_id,4085489,Niuean,Race,SNOMED,Social Context, -person,race_concept_id,4077346,North African Arab,Race,SNOMED,Social Context, +person,race_concept_id,44811793,North African - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45452903,North African - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45449500,North African Arab (NMO),Race,Read,Read, +person,race_concept_id,44811647,Northern Irish - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45449518,Northern Irish - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4063377,Norwegians,Race,SNOMED,Social Context, person,race_concept_id,4085322,Oceanian,Race,SNOMED,Social Context, person,race_concept_id,4017926,Onge,Race,SNOMED,Social Context, @@ -1639,28 +2380,56 @@ person,race_concept_id,45767087,Orang asli,Race,SNOMED,Social Context, person,race_concept_id,4235464,Oraons,Race,SNOMED,Social Context, person,race_concept_id,4189785,Oriental,Race,SNOMED,Social Context, person,race_concept_id,4199011,Oriental Jews,Race,SNOMED,Social Context, -person,race_concept_id,4090391,Other African countries,Race,SNOMED,Social Context, +person,race_concept_id,44811576,Other - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45442882,Other - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45469812,Other African countries (NMO),Race,Read,Read, person,race_concept_id,45473116,Other Asian,Race,Read,Read, -person,race_concept_id,4087922,Other Asian,Race,SNOMED,Social Context, person,race_concept_id,45466387,Other Asian (NMO),Race,Read,Read, +person,race_concept_id,44811572,Other Asian background - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45483098,Other Asian background - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45512962,Other Asian ethnic group,Race,Read,Read, person,race_concept_id,4199940,Other Asian ethnic group,Race,SNOMED,Social Context, +person,race_concept_id,44811785,Other Asian or Asian unspecified - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45459588,Other Asian or Asian unspecified - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45496300,Other Black - Black/Asian orig,Race,Read,Read, person,race_concept_id,4087920,Other Black - Black/Asian orig,Race,SNOMED,Social Context, person,race_concept_id,45506204,Other Black - Black/White orig,Race,Read,Read, person,race_concept_id,4087919,Other Black - Black/White orig,Race,SNOMED,Social Context, -person,race_concept_id,4090516,Other European,Race,SNOMED,Social Context, +person,race_concept_id,44811574,Other Black background - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45449520,Other Black background - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44811789,Other Black or Black unspecified - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45466407,Other Black or Black unspecified - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45459564,Other European (NMO),Race,Read,Read, person,race_concept_id,45506206,Other European in New Zealand,Race,Read,Read, person,race_concept_id,4085488,Other European in New Zealand,Race,SNOMED,Social Context, +person,race_concept_id,44811569,Other Mixed background - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45509597,Other Mixed background - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44811714,Other Mixed or Mixed unspecified - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45509599,Other Mixed or Mixed unspecified - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45442864,Other New Zealand ethnic group,Race,Read,Read, person,race_concept_id,45502956,Other Pacific ethnic group,Race,Read,Read, +person,race_concept_id,44811791,Other White European or European unspecified or Mixed European - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45456239,Other White European or European unspecified or Mixed European - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44811502,Other White background - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45426351,Other White background - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44811792,Other White or White unspecified - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45442881,Other White or White unspecified - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45462997,Other black ethnic group,Race,Read,Read, person,race_concept_id,4202555,Other black ethnic group,Race,SNOMED,Social Context, person,race_concept_id,45449501,Other ethnic NEC (NMO),Race,Read,Read, person,race_concept_id,45483082,Other ethnic group,Race,Read,Read, -person,race_concept_id,4087921,Other ethnic non-mixed,Race,SNOMED,Social Context, +person,race_concept_id,46285838,Other ethnic group: Arab - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277585,Other ethnic group: Arab - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285884,Other ethnic group: Arab - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277479,Other ethnic group: Arab - Northern Ireland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285902,"Other ethnic group: Arab, Arab Scottish or Arab British - Scotland ethnic category 2011 census",Race,SNOMED,Clinical Finding, +person,race_concept_id,46277442,"Other ethnic group: Arab, Arab Scottish or Arab British - Scotland ethnic category 2011 census",Race,Read,Read, +person,race_concept_id,46285839,Other ethnic group: any other ethnic group - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277338,Other ethnic group: any other ethnic group - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46286816,Other ethnic group: any other ethnic group - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277371,Other ethnic group: any other ethnic group - Northern Ireland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285903,Other ethnic group: any other ethnic group - Scotland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277563,Other ethnic group: any other ethnic group - Scotland ethnic category 2011 census,Race,Read,Read, person,race_concept_id,45466386,Other ethnic non-mixed (NMO),Race,Read,Read, person,race_concept_id,45459565,"Other ethnic, Asian/White orig",Race,Read,Read, person,race_concept_id,4091021,"Other ethnic, Asian/White origin",Race,SNOMED,Social Context, @@ -1672,6 +2441,10 @@ person,race_concept_id,45423090,"Other ethnic, mixed white orig",Race,Read,Read, person,race_concept_id,4087924,"Other ethnic, mixed white origin",Race,SNOMED,Social Context, person,race_concept_id,45506205,"Other ethnic, other mixed orig",Race,Read,Read, person,race_concept_id,4090518,"Other ethnic, other mixed origin",Race,SNOMED,Social Context, +person,race_concept_id,44811728,Other mixed White - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45449519,Other mixed White - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44811726,Other republics which made up the former Yugoslavia - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45439586,Other republics which made up the former Yugoslavia - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45436283,Other white British ethnic group,Race,Read,Read, person,race_concept_id,4268433,Other white British ethnic group,Race,SNOMED,Social Context, person,race_concept_id,45459563,Other white ethnic group,Race,Read,Read, @@ -1680,10 +2453,14 @@ person,race_concept_id,45492990,Pakeha,Race,Read,Read, person,race_concept_id,45512961,Pakistani,Race,Read,Read, person,race_concept_id,4091017,Pakistani,Race,SNOMED,Social Context, person,race_concept_id,4216519,Pakistani,Race,SNOMED,Social Context, +person,race_concept_id,44811570,Pakistani or British Pakistani - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45486449,Pakistani or British Pakistani - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4234343,Palauans,Race,SNOMED,Social Context, person,race_concept_id,4073535,Papuans,Race,SNOMED,Social Context, person,race_concept_id,4217467,Pehuenches,Race,SNOMED,Social Context, person,race_concept_id,4102599,Poles,Race,SNOMED,Social Context, +person,race_concept_id,44810791,Polish - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45522939,Polish - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,1397643,Polish Roma,Race,Read,Read, person,race_concept_id,36713941,Polish Roma,Race,SNOMED,Social Context, person,race_concept_id,4053167,Polynesians,Race,SNOMED,Social Context, @@ -1691,12 +2468,10 @@ person,race_concept_id,45469813,Portuguese,Race,Read,Read, person,race_concept_id,4213463,Portuguese,Race,SNOMED,Social Context, person,race_concept_id,4140692,Pueblo,Race,SNOMED,Social Context, person,race_concept_id,45767086,Punjabi,Race,SNOMED,Social Context, +person,race_concept_id,44811716,Punjabi - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45452902,Punjabi - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4323551,Pygmies,Race,SNOMED,Social Context, person,race_concept_id,4194076,Quechua,Race,SNOMED,Social Context, -person,race_concept_id,45528619,RACE AFRICAN,Race,OXMIS,OXMIS, -person,race_concept_id,45529590,RACE ASIAN,Race,OXMIS,OXMIS, -person,race_concept_id,45526661,RACE WEST INDIAN,Race,OXMIS,OXMIS, -person,race_concept_id,45532670,RACE WHITE,Race,OXMIS,OXMIS, person,race_concept_id,45428285,RACE: Afro-caribbean,Race,Read,Read, person,race_concept_id,45501542,RACE: Afro-caucasian,Race,Read,Read, person,race_concept_id,45451482,RACE: Arab,Race,Read,Read, @@ -1726,29 +2501,45 @@ person,race_concept_id,4077735,Saipanese,Race,SNOMED,Social Context, person,race_concept_id,45516368,Samoan,Race,Read,Read, person,race_concept_id,4313587,Samoan,Race,SNOMED,Social Context, person,race_concept_id,42536269,Scandinavian,Race,SNOMED,Social Context, +person,race_concept_id,44811645,Scottish - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45452900,Scottish - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4170372,Seminole,Race,SNOMED,Social Context, person,race_concept_id,4244365,Senegalese,Race,SNOMED,Social Context, person,race_concept_id,4198417,Senoi,Race,SNOMED,Social Context, +person,race_concept_id,44810884,Serbian - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45479817,Serbian - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4201594,Serbs,Race,SNOMED,Social Context, person,race_concept_id,4219475,Shona,Race,SNOMED,Social Context, person,race_concept_id,4317523,Shoshone,Race,SNOMED,Social Context, person,race_concept_id,4103243,Siamese,Race,SNOMED,Social Context, +person,race_concept_id,44811853,Sikh - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45493007,Sikh - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44787839,Sinhalese - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45439587,Sinhalese - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45483084,Slovak,Race,Read,Read, person,race_concept_id,4267217,Slovak,Race,SNOMED,Social Context, person,race_concept_id,1397882,Slovak Roma,Race,Read,Read, person,race_concept_id,36713939,Slovak Roma,Race,SNOMED,Social Context, person,race_concept_id,4167520,Solomon Islanders,Race,SNOMED,Social Context, +person,race_concept_id,44811786,Somali - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45466406,Somali - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4263713,Somalis,Race,SNOMED,Social Context, person,race_concept_id,4030302,South Asian AND/OR Australian aborigine,Race,SNOMED,Social Context, person,race_concept_id,4095109,South Asian Aborigine,Race,SNOMED,Social Context, person,race_concept_id,45479792,South East Asian,Race,Read,Read, person,race_concept_id,4087930,South East Asian,Race,SNOMED,Social Context, +person,race_concept_id,44810987,South and Central American - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45429667,South and Central American - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4152781,Spaniards,Race,SNOMED,Social Context, +person,race_concept_id,44809722,Sri Lankan - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45466404,Sri Lankan - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4229453,Sudanese,Race,SNOMED,Social Context, person,race_concept_id,4216818,Swedes,Race,SNOMED,Social Context, person,race_concept_id,4297790,Swiss,Race,SNOMED,Social Context, person,race_concept_id,4241969,Syrians,Race,SNOMED,Social Context, person,race_concept_id,4270900,Taiwanese,Race,SNOMED,Social Context, +person,race_concept_id,44811719,Tamil - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45466405,Tamil - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4053816,Tamils,Race,SNOMED,Social Context, person,race_concept_id,4028346,Tanganyikans,Race,SNOMED,Social Context, person,race_concept_id,4235433,Tatars,Race,SNOMED,Social Context, @@ -1759,36 +2550,76 @@ person,race_concept_id,45449503,Tokelauan,Race,Read,Read, person,race_concept_id,4091023,Tokelauan,Race,SNOMED,Social Context, person,race_concept_id,45459566,Tongan,Race,Read,Read, person,race_concept_id,4304542,Tongan,Race,SNOMED,Social Context, +person,race_concept_id,44810776,Traveller - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45423114,Traveller - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45432962,Traveller - gypsy,Race,Read,Read, person,race_concept_id,4097690,Tristan da Cunhans,Race,SNOMED,Social Context, person,race_concept_id,4141462,Trukese,Race,SNOMED,Social Context, -person,race_concept_id,4076905,Turkish,Race,SNOMED,Social Context, person,race_concept_id,45419862,Turkish (NMO),Race,Read,Read, -person,race_concept_id,4078126,Turkish Cypriot,Race,SNOMED,Social Context, +person,race_concept_id,44788087,Turkish - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45509596,Turkish - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45479790,Turkish Cypriot (NMO),Race,Read,Read, -person,race_concept_id,4155521,Turkish/Turkish Cypriot,Race,SNOMED,Social Context, +person,race_concept_id,44814068,Turkish Cypriot - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45426352,Turkish Cypriot - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45509566,Turkish/Turkish Cypriot (NMO),Race,Read,Read, person,race_concept_id,4195322,Turks,Race,SNOMED,Social Context, person,race_concept_id,4030735,Tutsi,Race,SNOMED,Social Context, person,race_concept_id,4296606,Ugandans,Race,SNOMED,Social Context, person,race_concept_id,37116384,Ukrainian,Race,SNOMED,Social Context, +person,race_concept_id,44811652,Ulster Scots - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45502972,Ulster Scots - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4218674,Unknown racial group,Race,SNOMED,Social Context, person,race_concept_id,4148384,Utes,Race,SNOMED,Social Context, person,race_concept_id,4269914,Venezuelan Indians,Race,SNOMED,Social Context, person,race_concept_id,45489704,Vietnamese,Race,Read,Read, person,race_concept_id,4210116,Vietnamese,Race,SNOMED,Social Context, +person,race_concept_id,44811790,Vietnamese - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45446262,Vietnamese - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4033391,Welsh,Race,SNOMED,Social Context, +person,race_concept_id,44811646,Welsh - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45423113,Welsh - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,4216026,West Africans,Race,SNOMED,Social Context, -person,race_concept_id,4076902,West Indian,Race,SNOMED,Social Context, person,race_concept_id,45446240,West Indian (NMO),Race,Read,Read, person,race_concept_id,45442861,White,Race,Read,Read, +person,race_concept_id,46285861,White - Northern Ireland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277519,White - Northern Ireland ethnic category 2011 census,Race,Read,Read, person,race_concept_id,4090388,White - ethnic group,Race,SNOMED,Social Context, person,race_concept_id,45519602,White British,Race,Read,Read, person,race_concept_id,4196428,White British,Race,SNOMED,Social Context, +person,race_concept_id,44802388,White British - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45452899,White British - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45479786,White Irish,Race,Read,Read, person,race_concept_id,4201928,White Irish,Race,SNOMED,Social Context, +person,race_concept_id,44802389,White Irish - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45502971,White Irish - ethnic category 2001 census,Race,Read,Read, person,race_concept_id,45462993,White Scottish,Race,Read,Read, person,race_concept_id,4268432,White Scottish,Race,SNOMED,Social Context, +person,race_concept_id,44811505,White and Asian - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45473134,White and Asian - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44811504,White and Black African - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45512985,White and Black African - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,44811503,White and Black Caribbean - ethnic category 2001 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,45436305,White and Black Caribbean - ethnic category 2001 census,Race,Read,Read, +person,race_concept_id,46286810,White: English or Welsh or Scottish or Northern Irish or British - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277542,White: English or Welsh or Scottish or Northern Irish or British - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285825,White: Gypsy or Irish Traveller - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277543,White: Gypsy or Irish Traveller - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285888,White: Gypsy or Irish Traveller - Scotland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277481,White: Gypsy or Irish Traveller - Scotland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285824,White: Irish - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277559,White: Irish - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285887,White: Irish - Scotland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277562,White: Irish - Scotland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285890,White: Polish - Scotland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277439,White: Polish - Scotland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285885,White: Scottish - Scotland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277587,White: Scottish - Scotland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285826,White: any other White background - England and Wales ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277437,White: any other White background - England and Wales ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285891,White: any other White ethnic group - Scotland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277482,White: any other White ethnic group - Scotland ethnic category 2011 census,Race,Read,Read, +person,race_concept_id,46285886,White: other British - Scotland ethnic category 2011 census,Race,SNOMED,Clinical Finding, +person,race_concept_id,46277372,White: other British - Scotland ethnic category 2011 census,Race,Read,Read, person,race_concept_id,4092681,Xavante,Race,SNOMED,Social Context, person,race_concept_id,4214735,Xosa,Race,SNOMED,Social Context, person,race_concept_id,4295144,Yanomama,Race,SNOMED,Social Context, @@ -1796,104 +2627,162 @@ person,race_concept_id,4170060,Yapese,Race,SNOMED,Social Context, person,race_concept_id,45456222,Yemeni,Race,Read,Read, person,race_concept_id,44791722,Yemeni,Race,SNOMED,Social Context, person,race_concept_id,4296997,Zulu,Race,SNOMED,Social Context, -procedure_occurrence,procedure_type_concept_id,45756909,Carrier claim detail - 10th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756910,Carrier claim detail - 11th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756911,Carrier claim detail - 12th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756912,Carrier claim detail - 13th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756900,Carrier claim detail - 1st position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756901,Carrier claim detail - 2nd position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756902,Carrier claim detail - 3rd position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756903,Carrier claim detail - 4th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756904,Carrier claim detail - 5th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756905,Carrier claim detail - 6th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756906,Carrier claim detail - 7th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756907,Carrier claim detail - 8th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756908,Carrier claim detail - 9th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,42865906,Condition Procedure,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000275,EHR order list entry,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,42865905,Facility header,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,257,Hospitalization Cost Record,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,32468,Inferred from claim,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000249,Inpatient detail - 1st position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000248,Inpatient detail - primary position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000260,Inpatient header - 10th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000261,Inpatient header - 11th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000262,Inpatient header - 12th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000263,Inpatient header - 13th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000264,Inpatient header - 14th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000265,Inpatient header - 15th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000251,Inpatient header - 1st position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000252,Inpatient header - 2nd position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000253,Inpatient header - 3rd position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000254,Inpatient header - 4th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000255,Inpatient header - 5th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000256,Inpatient header - 6th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000257,Inpatient header - 7th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000258,Inpatient header - 8th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000259,Inpatient header - 9th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000250,Inpatient header - primary position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,32425,NLP derived,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756864,Outpatient detail - 10th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756865,Outpatient detail - 11th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756866,Outpatient detail - 12th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756867,Outpatient detail - 13th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756868,Outpatient detail - 14th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756869,Outpatient detail - 15th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756870,Outpatient detail - 16th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756871,Outpatient detail - 17th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756872,Outpatient detail - 18th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756873,Outpatient detail - 19th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000267,Outpatient detail - 1st position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756874,Outpatient detail - 20th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756875,Outpatient detail - 21th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756876,Outpatient detail - 22th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756877,Outpatient detail - 23th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756878,Outpatient detail - 24th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756879,Outpatient detail - 25th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756880,Outpatient detail - 26th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756881,Outpatient detail - 27th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756882,Outpatient detail - 28th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756883,Outpatient detail - 29th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756856,Outpatient detail - 2nd position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756884,Outpatient detail - 30th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756885,Outpatient detail - 31th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756886,Outpatient detail - 32th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756887,Outpatient detail - 33th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756888,Outpatient detail - 34th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756889,Outpatient detail - 35th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756890,Outpatient detail - 36th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756891,Outpatient detail - 37th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756892,Outpatient detail - 38th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756893,Outpatient detail - 39th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756857,Outpatient detail - 3rd position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756894,Outpatient detail - 40th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756895,Outpatient detail - 41th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756896,Outpatient detail - 42th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756897,Outpatient detail - 43th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756898,Outpatient detail - 44th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756899,Outpatient detail - 45th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756858,Outpatient detail - 4th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756859,Outpatient detail - 5th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756860,Outpatient detail - 6th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756861,Outpatient detail - 7th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756862,Outpatient detail - 8th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,45756863,Outpatient detail - 9th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000266,Outpatient detail - primary position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000269,Outpatient header - 1st position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000270,Outpatient header - 2nd position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000271,Outpatient header - 3rd position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000272,Outpatient header - 4th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000273,Outpatient header - 5th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000274,Outpatient header - 6th position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38000268,Outpatient header - primary position,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,43542354,Physician administered drug (identified as procedure),Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,44786630,Primary Procedure,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,581412,Procedure Recorded from a Survey,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38003622,Procedure recorded as diagnostic code,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,38003621,Procedure recorded as lab test,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,42898141,Referral record,Type Concept,Procedure Type,Procedure Type,S -procedure_occurrence,procedure_type_concept_id,44786631,Secondary Procedure,Type Concept,Procedure Type,Procedure Type,S -specimen,specimen_type_concept_id,581378,EHR Detail,Type Concept,Specimen Type,Specimen Type,S +procedure_occurrence,procedure_type_concept_id,32809,Case Report Form,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32810,Claim,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32811,Claim authorization,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32812,Claim discharge record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32813,Claim enrolment record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32814,Cost record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32815,Death Certificate,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32816,Dental claim,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32817,EHR,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32835,EHR Pathology report,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32818,EHR administration record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32819,EHR admission note,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32820,EHR ancillary report,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32821,EHR billing record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32822,EHR chief complaint,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32823,EHR discharge record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32824,EHR discharge summary,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32825,EHR dispensing record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32826,EHR emergency room note,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32827,EHR encounter record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32828,EHR episode record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32829,EHR inpatient note,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32830,EHR medication list,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32831,EHR note,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32832,EHR nursing report,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32833,EHR order,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32834,EHR outpatient note,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32836,EHR physical examination,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32837,EHR planned dispensing record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32838,EHR prescription,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32839,EHR prescription issue record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32840,EHR problem list,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32841,EHR radiology report,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32842,EHR referral record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32843,External CDM instance,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32844,Facility claim,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32845,Facility claim detail,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32846,Facility claim header,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32847,Geographic isolation record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32848,Government report,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32849,Health Information Exchange record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32850,Health Risk Assessment,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32851,Healthcare professional filled survey,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32852,Hospital cost,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32853,Inpatient claim,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32854,Inpatient claim detail,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32855,Inpatient claim header,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32856,Lab,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32857,Mail order record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32858,NLP,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32859,Outpatient claim,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32860,Outpatient claim detail,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32861,Outpatient claim header,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32862,Patient filled survey,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32863,Patient or payer paid record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32864,Patient reported cost,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32865,Patient self-report,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32866,Payer system record (paid premium),Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32867,Payer system record (primary payer),Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32868,Payer system record (secondary payer),Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32869,Pharmacy claim,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32870,Pre-qualification time period,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32871,Professional claim,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32872,Professional claim detail,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32873,Professional claim header,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32874,Provider charge list price,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32875,Provider financial system,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32876,Provider incurred cost record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32877,Randomization record,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32878,Reference lab,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32879,Registry,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32880,Standard algorithm,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32882,Standard algorithm from EHR,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32881,Standard algorithm from claims,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32883,Survey,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32885,US Social Security Death Master File,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32884,Urgent lab,Type Concept,Type Concept,Type Concept,S +procedure_occurrence,procedure_type_concept_id,32886,Vision claim,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32809,Case Report Form,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32810,Claim,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32811,Claim authorization,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32812,Claim discharge record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32813,Claim enrolment record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32814,Cost record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32815,Death Certificate,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32816,Dental claim,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32817,EHR,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32835,EHR Pathology report,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32818,EHR administration record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32819,EHR admission note,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32820,EHR ancillary report,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32821,EHR billing record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32822,EHR chief complaint,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32823,EHR discharge record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32824,EHR discharge summary,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32825,EHR dispensing record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32826,EHR emergency room note,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32827,EHR encounter record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32828,EHR episode record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32829,EHR inpatient note,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32830,EHR medication list,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32831,EHR note,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32832,EHR nursing report,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32833,EHR order,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32834,EHR outpatient note,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32836,EHR physical examination,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32837,EHR planned dispensing record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32838,EHR prescription,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32839,EHR prescription issue record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32840,EHR problem list,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32841,EHR radiology report,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32842,EHR referral record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32843,External CDM instance,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32844,Facility claim,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32845,Facility claim detail,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32846,Facility claim header,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32847,Geographic isolation record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32848,Government report,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32849,Health Information Exchange record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32850,Health Risk Assessment,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32851,Healthcare professional filled survey,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32852,Hospital cost,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32853,Inpatient claim,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32854,Inpatient claim detail,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32855,Inpatient claim header,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32856,Lab,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32857,Mail order record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32858,NLP,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32859,Outpatient claim,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32860,Outpatient claim detail,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32861,Outpatient claim header,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32862,Patient filled survey,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32863,Patient or payer paid record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32864,Patient reported cost,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32865,Patient self-report,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32866,Payer system record (paid premium),Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32867,Payer system record (primary payer),Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32868,Payer system record (secondary payer),Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32869,Pharmacy claim,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32870,Pre-qualification time period,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32871,Professional claim,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32872,Professional claim detail,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32873,Professional claim header,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32874,Provider charge list price,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32875,Provider financial system,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32876,Provider incurred cost record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32877,Randomization record,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32878,Reference lab,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32879,Registry,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32880,Standard algorithm,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32882,Standard algorithm from EHR,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32881,Standard algorithm from claims,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32883,Survey,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32885,US Social Security Death Master File,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32884,Urgent lab,Type Concept,Type Concept,Type Concept,S +specimen,specimen_type_concept_id,32886,Vision claim,Type Concept,Type Concept,Type Concept,S visit_occurrence,visit_concept_id,38004307,Adult Care Home,Visit,NUCC,Visit,S visit_occurrence,visit_concept_id,8882,Adult Living Care Facility,Visit,CMS Place of Service,Visit,S visit_occurrence,visit_concept_id,38004354,Air Transport Ambulance,Visit,NUCC,Visit,S @@ -2024,6 +2913,7 @@ visit_occurrence,visit_concept_id,38004519,Home Health Agency,Visit,Medicare Spe visit_occurrence,visit_concept_id,38004196,Home Infusion Agency,Visit,NUCC,Visit,S visit_occurrence,visit_concept_id,38004342,Home Infusion Therapy Pharmacy,Visit,NUCC,Visit,S visit_occurrence,visit_concept_id,581476,Home Visit,Visit,Visit,Visit,S +visit_occurrence,visit_concept_id,32759,Home isolation,Visit,Visit,Visit,S visit_occurrence,visit_concept_id,8672,Homeless Shelter,Visit,CMS Place of Service,Visit,S visit_occurrence,visit_concept_id,8546,Hospice,Visit,CMS Place of Service,Visit,S visit_occurrence,visit_concept_id,38004515,Hospital,Visit,Medicare Specialty,Visit,S @@ -2046,6 +2936,7 @@ visit_occurrence,visit_concept_id,9201,Inpatient Visit,Visit,Visit,Visit,S visit_occurrence,visit_concept_id,38004343,Institutional Pharmacy,Visit,NUCC,Visit,S visit_occurrence,visit_concept_id,32037,Intensive Care,Visit,Visit,Visit,S visit_occurrence,visit_concept_id,8951,Intermediate Mental Care Facility,Visit,CMS Place of Service,Visit,S +visit_occurrence,visit_concept_id,32760,Isolation in inpatient setting,Visit,Visit,Visit,S visit_occurrence,visit_concept_id,32036,Laboratory Visit,Visit,Visit,Visit,S visit_occurrence,visit_concept_id,38004192,Local Education Agency (LEA),Visit,NUCC,Visit,S visit_occurrence,visit_concept_id,38004277,Long Term Care Hospital,Visit,NUCC,Visit,S @@ -2095,6 +2986,7 @@ visit_occurrence,visit_concept_id,38004332,Oxygen Equipment Supplier,Visit,NUCC, visit_occurrence,visit_concept_id,38004703,Oxygen supplier,Visit,Medicare Specialty,Visit,S visit_occurrence,visit_concept_id,38004201,PACE Provider Organization,Visit,NUCC,Visit,S visit_occurrence,visit_concept_id,38004331,Parenteral and Enteral Nutrition Supplier,Visit,NUCC,Visit,S +visit_occurrence,visit_concept_id,32761,Person Under Investigation (PUI),Visit,Visit,Visit,S visit_occurrence,visit_concept_id,38004338,Pharmacy Supplier,Visit,NUCC,Visit,S visit_occurrence,visit_concept_id,581458,Pharmacy visit,Visit,Visit,Visit,S visit_occurrence,visit_concept_id,38004296,Physiological Laboratory,Visit,NUCC,Visit,S @@ -2406,6 +3298,7 @@ visit_occurrence,visit_concept_id,32346,Hospital-Swing Beds@Interim-Cont claim ( visit_occurrence,visit_concept_id,32345,Hospital-Swing Beds@Interim-first claim,Visit,UB04 Typ bill,Visit, visit_occurrence,visit_concept_id,32347,Hospital-Swing Beds@Interim-last claim (b),Visit,UB04 Typ bill,Visit, visit_occurrence,visit_concept_id,32348,Hospital-Swing Beds@Replacement of Prior Claim,Visit,UB04 Typ bill,Visit, +visit_occurrence,visit_concept_id,703425,Household quarantine to prevent exposure of community to contagion,Visit,SNOMED,Procedure, visit_occurrence,visit_concept_id,32199,Information not available,Visit,UB04 Point of Origin,UB04 Point of Origin, visit_occurrence,visit_concept_id,581382,Inpatient Intensive Care Facility,Visit,CMS Place of Service,Visit, visit_occurrence,visit_concept_id,8970,Inpatient Long-term Care,Visit,CMS Place of Service,Visit, @@ -2484,6 +3377,9 @@ visit_occurrence,visit_concept_id,38004319,"Residential Treatment Facilities, Ps visit_occurrence,visit_concept_id,38004320,"Residential Treatment Facilities, Substance Abuse Rehabilitation Facility",Visit,NUCC,Visit, visit_occurrence,visit_concept_id,44777683,Respite care,Visit,HES Specialty,Visit, visit_occurrence,visit_concept_id,32607,Return Transfer,Visit,UB04 Pt dis status,UB04 Pt dis status, +visit_occurrence,visit_concept_id,703427,Reverse isolation of household to prevent exposure of uninfected subject to contagion,Visit,SNOMED,Procedure, +visit_occurrence,visit_concept_id,703426,Reverse self-isolation of uninfected subject to prevent exposure to contagion,Visit,SNOMED,Procedure, +visit_occurrence,visit_concept_id,703428,Self quarantine to prevent exposure of community to contagion,Visit,SNOMED,Procedure, visit_occurrence,visit_concept_id,32589,Sick Baby,Visit,UB04 Point of Origin,UB04 Point of Origin, visit_occurrence,visit_concept_id,38004516,Skilled Nursing Facility,Visit,Medicare Specialty,Visit, visit_occurrence,visit_concept_id,32350,Skilled Nursing-Inpatient (Includes Medicare Part A)@Admit through Discharge Claim,Visit,UB04 Typ bill,Visit, @@ -2536,21 +3432,81 @@ visit_occurrence,visit_concept_id,32584,Transfer from critial access hospital,Vi visit_occurrence,visit_concept_id,32202,Transfer from hospice,Visit,UB04 Point of Origin,UB04 Point of Origin, visit_occurrence,visit_concept_id,32200,"Transfer within hospital, but seperate claim",Visit,UB04 Point of Origin,UB04 Point of Origin, visit_occurrence,visit_concept_id,32209,Unknown Value (but present in data),Visit,UB04 Pt dis status,UB04 Pt dis status, -visit_occurrence,visit_type_concept_id,44818519,Clinical Study visit,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,32034,Visit derived from EHR billing record,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,32035,Visit derived from EHR encounter record,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,44818518,Visit derived from EHR record,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,44818517,Visit derived from encounter on claim,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,32031,Visit derived from encounter on claim authorization,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,32033,Visit derived from encounter on dental claim,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,32021,Visit derived from encounter on medical claim,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,32023,Visit derived from encounter on medical facility claim,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,32027,Visit derived from encounter on medical facility claim deferred,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,32026,Visit derived from encounter on medical facility claim denied,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,32025,Visit derived from encounter on medical facility claim paid,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,32024,Visit derived from encounter on medical professional claim,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,32030,Visit derived from encounter on medical professional claim deferred,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,32029,Visit derived from encounter on medical professional claim denied,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,32028,Visit derived from encounter on medical professional claim paid,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,32022,Visit derived from encounter on pharmacy claim,Type Concept,Visit Type,Visit Type,S -visit_occurrence,visit_type_concept_id,32032,Visit derived from encounter on vision claim,Type Concept,Visit Type,Visit Type,S \ No newline at end of file +visit_occurrence,visit_type_concept_id,32809,Case Report Form,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32810,Claim,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32811,Claim authorization,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32812,Claim discharge record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32813,Claim enrolment record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32814,Cost record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32815,Death Certificate,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32816,Dental claim,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32817,EHR,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32835,EHR Pathology report,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32818,EHR administration record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32819,EHR admission note,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32820,EHR ancillary report,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32821,EHR billing record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32822,EHR chief complaint,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32823,EHR discharge record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32824,EHR discharge summary,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32825,EHR dispensing record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32826,EHR emergency room note,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32827,EHR encounter record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32828,EHR episode record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32829,EHR inpatient note,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32830,EHR medication list,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32831,EHR note,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32832,EHR nursing report,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32833,EHR order,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32834,EHR outpatient note,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32836,EHR physical examination,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32837,EHR planned dispensing record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32838,EHR prescription,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32839,EHR prescription issue record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32840,EHR problem list,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32841,EHR radiology report,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32842,EHR referral record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32843,External CDM instance,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32844,Facility claim,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32845,Facility claim detail,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32846,Facility claim header,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32847,Geographic isolation record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32848,Government report,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32849,Health Information Exchange record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32850,Health Risk Assessment,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32851,Healthcare professional filled survey,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32852,Hospital cost,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32853,Inpatient claim,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32854,Inpatient claim detail,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32855,Inpatient claim header,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32856,Lab,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32857,Mail order record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32858,NLP,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32859,Outpatient claim,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32860,Outpatient claim detail,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32861,Outpatient claim header,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32862,Patient filled survey,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32863,Patient or payer paid record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32864,Patient reported cost,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32865,Patient self-report,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32866,Payer system record (paid premium),Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32867,Payer system record (primary payer),Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32868,Payer system record (secondary payer),Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32869,Pharmacy claim,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32870,Pre-qualification time period,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32871,Professional claim,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32872,Professional claim detail,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32873,Professional claim header,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32874,Provider charge list price,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32875,Provider financial system,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32876,Provider incurred cost record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32877,Randomization record,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32878,Reference lab,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32879,Registry,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32880,Standard algorithm,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32882,Standard algorithm from EHR,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32881,Standard algorithm from claims,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32883,Survey,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32885,US Social Security Death Master File,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32884,Urgent lab,Type Concept,Type Concept,Type Concept,S +visit_occurrence,visit_type_concept_id,32886,Vision claim,Type Concept,Type Concept,Type Concept,S diff --git a/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/concept_id_hint_select.sql b/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/concept_id_hint_select.sql index 701d647b..a65d6007 100644 --- a/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/concept_id_hint_select.sql +++ b/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/concept_id_hint_select.sql @@ -45,8 +45,7 @@ WITH concept_hints AS ( concept_class_id, standard_concept FROM @vocab.concept - WHERE domain_id = 'Type Concept' - AND concept_class_id = 'Condition Type' + WHERE vocabulary_id = 'Type Concept' AND invalid_reason IS NULL UNION ALL SELECT 'cost' AS omop_cdm_table, @@ -58,8 +57,7 @@ WITH concept_hints AS ( concept_class_id, standard_concept FROM @vocab.concept - WHERE domain_id = 'Type Concept' - AND concept_class_id = 'Cost Type' + WHERE vocabulary_id = 'Type Concept' AND invalid_reason IS NULL UNION ALL SELECT 'death' AS omop_cdm_table, @@ -71,8 +69,7 @@ WITH concept_hints AS ( concept_class_id, standard_concept FROM @vocab.concept - WHERE domain_id = 'Type Concept' - AND concept_class_id = 'Death Type' + WHERE vocabulary_id = 'Type Concept' AND invalid_reason IS NULL UNION ALL SELECT 'device_exposure' AS omop_cdm_table, @@ -84,8 +81,7 @@ WITH concept_hints AS ( concept_class_id, standard_concept FROM @vocab.concept - WHERE domain_id = 'Type Concept' - AND concept_class_id = 'Device Type' + WHERE vocabulary_id = 'Type Concept' AND invalid_reason IS NULL UNION ALL SELECT 'drug_exposure' AS omop_cdm_table, @@ -97,8 +93,7 @@ WITH concept_hints AS ( concept_class_id, standard_concept FROM @vocab.concept - WHERE domain_id = 'Type Concept' - AND concept_class_id = 'Drug Type' + WHERE vocabulary_id = 'Type Concept' AND invalid_reason IS NULL UNION ALL SELECT 'episode' AS omop_cdm_table, @@ -110,8 +105,7 @@ WITH concept_hints AS ( concept_class_id, standard_concept FROM @vocab.concept - WHERE domain_id = 'Type Concept' - AND concept_class_id = 'Episode Type' + WHERE vocabulary_id = 'Type Concept' AND invalid_reason IS NULL UNION ALL SELECT 'measurement' AS omop_cdm_table, @@ -123,8 +117,7 @@ WITH concept_hints AS ( concept_class_id, standard_concept FROM @vocab.concept - WHERE domain_id = 'Type Concept' - AND concept_class_id = 'Meas Type' + WHERE vocabulary_id = 'Type Concept' AND invalid_reason IS NULL UNION ALL SELECT 'note' AS omop_cdm_table, @@ -136,8 +129,7 @@ WITH concept_hints AS ( concept_class_id, standard_concept FROM @vocab.concept - WHERE domain_id = 'Type Concept' - AND concept_class_id = 'Note Type' + WHERE vocabulary_id = 'Type Concept' AND invalid_reason IS NULL UNION ALL SELECT 'observation_period' AS omop_cdm_table, @@ -149,8 +141,7 @@ WITH concept_hints AS ( concept_class_id, standard_concept FROM @vocab.concept - WHERE domain_id = 'Type Concept' - AND concept_class_id = 'Obs Period Type' + WHERE vocabulary_id = 'Type Concept' AND invalid_reason IS NULL UNION ALL SELECT 'observation' AS omop_cdm_table, @@ -162,8 +153,7 @@ WITH concept_hints AS ( concept_class_id, standard_concept FROM @vocab.concept - WHERE domain_id = 'Type Concept' - AND concept_class_id = 'Observation Type' + WHERE vocabulary_id = 'Type Concept' AND invalid_reason IS NULL UNION ALL SELECT 'procedure_occurrence' AS omop_cdm_table, @@ -175,8 +165,7 @@ WITH concept_hints AS ( concept_class_id, standard_concept FROM @vocab.concept - WHERE domain_id = 'Type Concept' - AND concept_class_id = 'Procedure Type' + WHERE vocabulary_id = 'Type Concept' AND invalid_reason IS NULL UNION ALL SELECT 'specimen' AS omop_cdm_table, @@ -188,8 +177,7 @@ WITH concept_hints AS ( concept_class_id, standard_concept FROM @vocab.concept - WHERE domain_id = 'Type Concept' - AND concept_class_id = 'Specimen Type' + WHERE vocabulary_id = 'Type Concept' AND invalid_reason IS NULL UNION ALL SELECT 'visit_occurrence' AS omop_cdm_table, @@ -201,8 +189,7 @@ WITH concept_hints AS ( concept_class_id, standard_concept FROM @vocab.concept - WHERE domain_id = 'Type Concept' - AND concept_class_id = 'Visit Type' + WHERE vocabulary_id = 'Type Concept' AND invalid_reason IS NULL UNION ALL SELECT 'visit_occurrence' AS omop_cdm_table, From d759beebf29fe53da44436eaf3e7f31a5091e683 Mon Sep 17 00:00:00 2001 From: Maxim Moinat Date: Tue, 16 Feb 2021 15:19:42 +0100 Subject: [PATCH 6/9] add vocabulary version of the concept_id hints --- .../java/org/ohdsi/rabbitInAHat/dataModel/ConceptsMap.java | 2 +- .../java/org/ohdsi/rabbitInAHat/dataModel/Database.java | 6 ++++-- .../src/main/java/org/ohdsi/rabbitInAHat/DetailsPanel.java | 4 +++- .../main/java/org/ohdsi/rabbitInAHat/RabbitInAHatMain.java | 2 -- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/ConceptsMap.java b/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/ConceptsMap.java index a09184dc..2ec8b407 100644 --- a/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/ConceptsMap.java +++ b/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/ConceptsMap.java @@ -29,7 +29,7 @@ public class ConceptsMap { private Map>> conceptMap; - private String vocabularyVersion; + public String vocabularyVersion; private ConceptsMap() { this.conceptMap = new HashMap<>(); diff --git a/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/Database.java b/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/Database.java index 2a4673d7..526c7263 100644 --- a/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/Database.java +++ b/rabbit-core/src/main/java/org/ohdsi/rabbitInAHat/dataModel/Database.java @@ -55,7 +55,8 @@ public enum CDMVersion { private List
tables = new ArrayList
(); private static final long serialVersionUID = -3912166654601191039L; private String dbName = ""; - private static String CONCEPT_ID_HINTS_FILE_NAME = "CDMConceptIDHints.csv"; + private static final String CONCEPT_ID_HINTS_FILE_NAME = "CDMConceptIDHints.csv"; + public String conceptIdHintsVocabularyVersion; public List
getTables() { return tables; @@ -63,7 +64,7 @@ public List
getTables() { public Table getTableByName(String name) { for (Table table : tables) - if (table.getName().toLowerCase().equals(name.toLowerCase())) + if (table.getName().equalsIgnoreCase(name)) return table; return null; } @@ -92,6 +93,7 @@ public static Database generateModelFromCSV(InputStream stream, String dbName) { Map nameToTable = new HashMap<>(); try { ConceptsMap conceptIdHintsMap = new ConceptsMap(CONCEPT_ID_HINTS_FILE_NAME); + database.conceptIdHintsVocabularyVersion = conceptIdHintsMap.vocabularyVersion; for (CSVRecord row : CSVFormat.RFC4180.withHeader().parse(new InputStreamReader(stream))) { String tableNameColumn; diff --git a/rabbitinahat/src/main/java/org/ohdsi/rabbitInAHat/DetailsPanel.java b/rabbitinahat/src/main/java/org/ohdsi/rabbitInAHat/DetailsPanel.java index fb357cbd..d9f45bbc 100644 --- a/rabbitinahat/src/main/java/org/ohdsi/rabbitInAHat/DetailsPanel.java +++ b/rabbitinahat/src/main/java/org/ohdsi/rabbitInAHat/DetailsPanel.java @@ -418,7 +418,9 @@ public void initialise() { table.getColumnModel().getColumn(2).setCellRenderer(rightRenderer); } - String title = isTargetFieldPanel ? "Concept ID Hints" : "Value Counts"; + String title = isTargetFieldPanel ? + "Concept ID Hints " + ObjectExchange.etl.getTargetDatabase().conceptIdHintsVocabularyVersion + : "Value Counts"; fieldListPanel.setBorder(BorderFactory.createTitledBorder(title)); add(fieldListPanel, BorderLayout.CENTER); diff --git a/rabbitinahat/src/main/java/org/ohdsi/rabbitInAHat/RabbitInAHatMain.java b/rabbitinahat/src/main/java/org/ohdsi/rabbitInAHat/RabbitInAHatMain.java index 10ff392c..eb578101 100644 --- a/rabbitinahat/src/main/java/org/ohdsi/rabbitInAHat/RabbitInAHatMain.java +++ b/rabbitinahat/src/main/java/org/ohdsi/rabbitInAHat/RabbitInAHatMain.java @@ -49,11 +49,9 @@ import org.ohdsi.rabbitInAHat.dataModel.Database.CDMVersion; import org.ohdsi.rabbitInAHat.dataModel.ETL; import org.ohdsi.rabbitInAHat.dataModel.Field; -import org.ohdsi.rabbitInAHat.dataModel.MappableItem; import org.ohdsi.rabbitInAHat.dataModel.StemTableFactory; import org.ohdsi.rabbitInAHat.dataModel.Table; import org.ohdsi.utilities.Version; -import org.ohdsi.utilities.collections.Pair; /** * This is the main class for the RabbitInAHat application From caa8a4425fad7529b7cb6ae26df4ee9b9eef6850 Mon Sep 17 00:00:00 2001 From: Maxim Moinat Date: Tue, 16 Feb 2021 15:25:55 +0100 Subject: [PATCH 7/9] add condition status concept hints --- .../dataModel/CDMConceptIDHints.csv | 22 +++++++++++++++++++ .../dataModel/concept_id_hint_select.sql | 12 ++++++++++ 2 files changed, 34 insertions(+) diff --git a/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/CDMConceptIDHints.csv b/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/CDMConceptIDHints.csv index a7b6dd74..344d8cd2 100644 --- a/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/CDMConceptIDHints.csv +++ b/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/CDMConceptIDHints.csv @@ -1,5 +1,27 @@ # v5.0 21-DEC-20 omop_cdm_table,omop_cdm_field,concept_id,concept_name,domain_id,vocabulary_id,concept_class_id,standard_concept +condition_occurrence,condition_status_concept_id,32890,Admission diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32891,Cause of death,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32892,Condition to be diagnosed by procedure,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32893,Confirmed diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32894,Contributory cause of death,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32895,Death diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32896,Discharge diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32897,Immediate cause of death,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32898,Postoperative diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32899,Preliminary diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32900,Preoperative diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32901,Primary admission diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32902,Primary diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32903,Primary discharge diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32904,Primary referral diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32905,Referral diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32906,Resolved condition,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32907,Secondary admission diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32908,Secondary diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32909,Secondary discharge diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32910,Secondary referral diagnosis,Condition Status,Condition Status,Condition Status,S +condition_occurrence,condition_status_concept_id,32911,Underlying cause of death,Condition Status,Condition Status,Condition Status,S condition_occurrence,condition_type_concept_id,32809,Case Report Form,Type Concept,Type Concept,Type Concept,S condition_occurrence,condition_type_concept_id,32810,Claim,Type Concept,Type Concept,Type Concept,S condition_occurrence,condition_type_concept_id,32811,Claim authorization,Type Concept,Type Concept,Type Concept,S diff --git a/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/concept_id_hint_select.sql b/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/concept_id_hint_select.sql index a65d6007..5a44ff4f 100644 --- a/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/concept_id_hint_select.sql +++ b/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/concept_id_hint_select.sql @@ -264,6 +264,18 @@ WITH concept_hints AS ( JOIN vocab.concept ON concept_id = descendant_concept_id WHERE ancestor_concept_id = 4182347 -- World languages AND invalid_reason IS NULL + UNION ALL + SELECT 'condition_occurrence' AS omop_cdm_table, + 'condition_status_concept_id' AS omop_cdm_field, + concept_id, + concept_name, + domain_id, + vocabulary_id, + concept_class_id, + standard_concept + FROM @vocab.concept + WHERE domain_id = 'Condition Status' + AND invalid_reason IS NULL ) SELECT * FROM concept_hints From 48d82f7d21e19d72c36a682e11b79f018b172b30 Mon Sep 17 00:00:00 2001 From: Maxim Moinat Date: Fri, 19 Feb 2021 09:01:48 +0100 Subject: [PATCH 8/9] fixes #279 --- .../dataModel/StemTableDefaultMappingV5.3.1.csv | 6 ++++++ .../org/ohdsi/rabbitInAHat/dataModel/StemTableV5.3.1.csv | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/StemTableDefaultMappingV5.3.1.csv b/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/StemTableDefaultMappingV5.3.1.csv index fb5ef707..bbe7031a 100644 --- a/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/StemTableDefaultMappingV5.3.1.csv +++ b/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/StemTableDefaultMappingV5.3.1.csv @@ -1,6 +1,7 @@ SOURCE_TABLE,SOURCE_FIELD,TARGET_TABLE,TARGET_FIELD STEM_TABLE,PERSON_ID,CONDITION_OCCURRENCE,PERSON_ID STEM_TABLE,VISIT_OCCURRENCE_ID,CONDITION_OCCURRENCE,VISIT_OCCURRENCE_ID +STEM_TABLE,VISIT_DETAIL_ID,CONDITION_OCCURRENCE,VISIT_DETAIL_ID STEM_TABLE,PROVIDER_ID,CONDITION_OCCURRENCE,PROVIDER_ID STEM_TABLE,ID,CONDITION_OCCURRENCE,CONDITION_OCCURRENCE_ID STEM_TABLE,CONCEPT_ID,CONDITION_OCCURRENCE,CONDITION_CONCEPT_ID @@ -31,6 +32,7 @@ STEM_TABLE,ROUTE_CONCEPT_ID,DRUG_EXPOSURE,ROUTE_CONCEPT_ID STEM_TABLE,LOT_NUMBER,DRUG_EXPOSURE,LOT_NUMBER STEM_TABLE,PROVIDER_ID,DRUG_EXPOSURE,PROVIDER_ID STEM_TABLE,VISIT_OCCURRENCE_ID,DRUG_EXPOSURE,VISIT_OCCURRENCE_ID +STEM_TABLE,VISIT_DETAIL_ID,DRUG_EXPOSURE,VISIT_DETAIL_ID STEM_TABLE,SOURCE_VALUE,DRUG_EXPOSURE,DRUG_SOURCE_VALUE STEM_TABLE,SOURCE_CONCEPT_ID,DRUG_EXPOSURE,DRUG_SOURCE_CONCEPT_ID STEM_TABLE,ROUTE_SOURCE_VALUE,DRUG_EXPOSURE,ROUTE_SOURCE_VALUE @@ -47,6 +49,7 @@ STEM_TABLE,UNIQUE_DEVICE_ID,DEVICE_EXPOSURE,UNIQUE_DEVICE_ID STEM_TABLE,QUANTITY,DEVICE_EXPOSURE,QUANTITY STEM_TABLE,PROVIDER_ID,DEVICE_EXPOSURE,PROVIDER_ID STEM_TABLE,VISIT_OCCURRENCE_ID,DEVICE_EXPOSURE,VISIT_OCCURRENCE_ID +STEM_TABLE,VISIT_DETAIL_ID,DEVICE_EXPOSURE,VISIT_DETAIL_ID STEM_TABLE,SOURCE_VALUE,DEVICE_EXPOSURE,DEVICE_SOURCE_VALUE STEM_TABLE,SOURCE_CONCEPT_ID,DEVICE_EXPOSURE,DEVICE_SOURCE_CONCEPT_ID STEM_TABLE,PERSON_ID,MEASUREMENT,PERSON_ID @@ -63,6 +66,7 @@ STEM_TABLE,RANGE_LOW,MEASUREMENT,RANGE_LOW STEM_TABLE,RANGE_HIGH,MEASUREMENT,RANGE_HIGH STEM_TABLE,PROVIDER_ID,MEASUREMENT,PROVIDER_ID STEM_TABLE,VISIT_OCCURRENCE_ID,MEASUREMENT,VISIT_OCCURRENCE_ID +STEM_TABLE,VISIT_DETAIL_ID,MEASUREMENT,VISIT_DETAIL_ID STEM_TABLE,SOURCE_VALUE,MEASUREMENT,MEASUREMENT_SOURCE_VALUE STEM_TABLE,SOURCE_CONCEPT_ID,MEASUREMENT,MEASUREMENT_SOURCE_CONCEPT_ID STEM_TABLE,UNIT_SOURCE_VALUE,MEASUREMENT,UNIT_SOURCE_VALUE @@ -80,6 +84,7 @@ STEM_TABLE,QUALIFIER_CONCEPT_ID,OBSERVATION,QUALIFIER_CONCEPT_ID STEM_TABLE,UNIT_CONCEPT_ID,OBSERVATION,UNIT_CONCEPT_ID STEM_TABLE,PROVIDER_ID,OBSERVATION,PROVIDER_ID STEM_TABLE,VISIT_OCCURRENCE_ID,OBSERVATION,VISIT_OCCURRENCE_ID +STEM_TABLE,VISIT_DETAIL_ID,OBSERVATION,VISIT_DETAIL_ID STEM_TABLE,SOURCE_VALUE,OBSERVATION,OBSERVATION_SOURCE_VALUE STEM_TABLE,SOURCE_CONCEPT_ID,OBSERVATION,OBSERVATION_SOURCE_CONCEPT_ID STEM_TABLE,UNIT_SOURCE_VALUE,OBSERVATION,UNIT_SOURCE_VALUE @@ -94,6 +99,7 @@ STEM_TABLE,MODIFIER_CONCEPT_ID,PROCEDURE_OCCURRENCE,MODIFIER_CONCEPT_ID STEM_TABLE,QUANTITY,PROCEDURE_OCCURRENCE,QUANTITY STEM_TABLE,PROVIDER_ID,PROCEDURE_OCCURRENCE,PROVIDER_ID STEM_TABLE,VISIT_OCCURRENCE_ID,PROCEDURE_OCCURRENCE,VISIT_OCCURRENCE_ID +STEM_TABLE,VISIT_DETAIL_ID,PROCEDURE_OCCURRENCE,VISIT_DETAIL_ID STEM_TABLE,SOURCE_VALUE,PROCEDURE_OCCURRENCE,PROCEDURE_SOURCE_VALUE STEM_TABLE,SOURCE_CONCEPT_ID,PROCEDURE_OCCURRENCE,PROCEDURE_SOURCE_CONCEPT_ID STEM_TABLE,MODIFIER_SOURCE_VALUE,PROCEDURE_OCCURRENCE,MODIFIER_SOURCE_VALUE diff --git a/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/StemTableV5.3.1.csv b/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/StemTableV5.3.1.csv index 2fa1b793..1e01d67d 100644 --- a/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/StemTableV5.3.1.csv +++ b/rabbitinahat/src/main/resources/org/ohdsi/rabbitInAHat/dataModel/StemTableV5.3.1.csv @@ -2,6 +2,7 @@ TABLE_NAME,COLUMN_NAME,IS_NULLABLE,DATA_TYPE,DESCRIPTION STEM_TABLE,DOMAIN_ID,NO,CHARACTER VARYING,"A foreign key idenfifying the domain this event belongs to. The domain drives the target CDM table this event will be recorded in. If one is not set specify a default domain." STEM_TABLE,PERSON_ID,NO,INTEGER,"A foreign key identifier to the Person. The demographic details of that Person are stored in the PERSON table." STEM_TABLE,VISIT_OCCURRENCE_ID,YES,INTEGER,"A foreign key to the visit in the VISIT table." +STEM_TABLE,VISIT_DETAIL_ID,YES,INTEGER,"A foreign key to the visit detail in the VISIT_DETAIL table." STEM_TABLE,PROVIDER_ID,YES,INTEGER,"A foreign key to the Provider in the PROVIDER table who was responsible for capturing this event." STEM_TABLE,ID,NO,INTEGER,"A unique identifier for identifying the event." STEM_TABLE,CONCEPT_ID,NO,INTEGER,"A foreign key that refers to a Standard Condition Concept identifier in the Standardized Vocabularies." @@ -19,7 +20,6 @@ STEM_TABLE,LOT_NUMBER,YES,CHARACTER VARYING,"An identifier assigned to a particu STEM_TABLE,MODIFIER_CONCEPT_ID,YES,INTEGER,A foreign key to a Standard Concept identifier for a modifier (e.g. bilateral) STEM_TABLE,MODIFIER_SOURCE_VALUE,YES,CHARACTER VARYING,The source code for the modifier as it appears in the source data. STEM_TABLE,OPERATOR_CONCEPT_ID,YES,INTEGER,"A foreign key identifier to the predefined Concept in the Standardized Vocabularies reflecting the mathematical operator that is applied to the value_as_number. Operators are <, ?, =, ?, >." -STEM_TABLE,MODIFIER_SOURCE_VALUE,YES,CHARACTER VARYING,"The source code for the modifier as it appears in the source data." STEM_TABLE,QUANTITY,YES,INTEGER,"The number of individual Devices/Procedures/Drugs used for the exposure." STEM_TABLE,RANGE_HIGH,YES,FLOAT,"The upper limit of the normal range of the Measurement. The upper range is assumed to be of the same unit of measure as the Measurement value." STEM_TABLE,RANGE_LOW,YES,FLOAT,"The lower limit of the normal range of the Measurement result. The lower range is assumed to be of the same unit of measure as the Measurement value." From c2d1c3d0a27fb1593bd153edba1eb1af465917b2 Mon Sep 17 00:00:00 2001 From: Maxim Moinat Date: Fri, 19 Feb 2021 09:04:52 +0100 Subject: [PATCH 9/9] bump version --- pom.xml | 2 +- rabbit-core/pom.xml | 2 +- rabbitinahat/pom.xml | 2 +- whiterabbit/pom.xml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 337ae934..218c210f 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.ohdsi leporidae pom - 0.10.3-snapshot + 0.10.3 rabbitinahat whiterabbit diff --git a/rabbit-core/pom.xml b/rabbit-core/pom.xml index c120c111..5f8ea23a 100644 --- a/rabbit-core/pom.xml +++ b/rabbit-core/pom.xml @@ -5,7 +5,7 @@ leporidae org.ohdsi - 0.10.3-snapshot + 0.10.3 4.0.0 diff --git a/rabbitinahat/pom.xml b/rabbitinahat/pom.xml index 2251598f..cc3c7e6d 100644 --- a/rabbitinahat/pom.xml +++ b/rabbitinahat/pom.xml @@ -5,7 +5,7 @@ leporidae org.ohdsi - 0.10.3-snapshot + 0.10.3 4.0.0 diff --git a/whiterabbit/pom.xml b/whiterabbit/pom.xml index a3f15798..2335dd86 100644 --- a/whiterabbit/pom.xml +++ b/whiterabbit/pom.xml @@ -5,7 +5,7 @@ leporidae org.ohdsi - 0.10.3-snapshot + 0.10.3 4.0.0